From 69419b5f00c824fed05f411dbd9a34b37ead1bc2 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Wed, 15 Apr 2020 10:18:17 +0200 Subject: Resources: Remove small splash screen image variant After the previous commit by Harley Acheson, scaling can be handled at runtime so we don't need to have two splash screen image variants anymore. Also removes the `splash_scale.sh` script used to create the down-scaled variant. Always nice to get rid of some binary files from the repository :) --- source/blender/windowmanager/intern/wm_splash_screen.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/windowmanager') diff --git a/source/blender/windowmanager/intern/wm_splash_screen.c b/source/blender/windowmanager/intern/wm_splash_screen.c index 1f8a60250be..4cf6291c2e4 100644 --- a/source/blender/windowmanager/intern/wm_splash_screen.c +++ b/source/blender/windowmanager/intern/wm_splash_screen.c @@ -181,8 +181,8 @@ static void wm_block_splash_add_labels(uiBlock *block, int x, int y) static ImBuf *wm_block_splash_image(void) { #ifndef WITH_HEADLESS - extern char datatoc_splash_2x_png[]; - extern int datatoc_splash_2x_png_size; + extern char datatoc_splash_png[]; + extern int datatoc_splash_png_size; ImBuf *ibuf = NULL; @@ -197,8 +197,8 @@ static ImBuf *wm_block_splash_image(void) } if (ibuf == NULL) { - const uchar *splash_data = (const uchar *)datatoc_splash_2x_png; - size_t splash_data_size = datatoc_splash_2x_png_size; + const uchar *splash_data = (const uchar *)datatoc_splash_png; + size_t splash_data_size = datatoc_splash_png_size; ibuf = IMB_ibImageFromMemory(splash_data, splash_data_size, IB_rect, NULL, ""); } -- cgit v1.2.3