7173145: Improve in-memory representation of splashscreens
Reviewed-by: bae, mschoene
--- a/jdk/src/share/native/sun/awt/splashscreen/splashscreen_jpeg.c Tue Sep 25 11:48:00 2012 -0700
+++ b/jdk/src/share/native/sun/awt/splashscreen/splashscreen_jpeg.c Fri Oct 12 15:51:44 2012 +0400
@@ -133,6 +133,10 @@
ImageFormat srcFormat;
jpeg_read_header(cinfo, TRUE);
+
+ // SplashScreen jpeg converter expects data in RGB format only
+ cinfo->out_color_space = JCS_RGB;
+
jpeg_start_decompress(cinfo);
SplashCleanup(splash);