changeset 14982:49dd10a86b23

Fixes rgb32to16 conversion for I think all platforms since the int8 cast should never have worked. Tested on PowerPC and fixes the black GUI to show the content. patch by Rene Rebe <rene at exactcode dot de>
author diego
date Tue, 22 Mar 2005 10:11:42 +0000
parents 293d3dee2eae
children 623a415a8343
files postproc/rgb2rgb_template.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/postproc/rgb2rgb_template.c	Tue Mar 22 07:45:00 2005 +0000
+++ b/postproc/rgb2rgb_template.c	Tue Mar 22 10:11:42 2005 +0000
@@ -403,10 +403,8 @@
 #endif
 	while(s < end)
 	{
-		// FIXME on bigendian
-		const int src= *s; s += 4;
-		*d++ = ((src&0xFF)>>3) + ((src&0xFC00)>>5) + ((src&0xF80000)>>8);
-//		*d++ = ((src>>3)&0x1F) + ((src>>5)&0x7E0) + ((src>>8)&0xF800);
+		register int rgb = *(uint32_t*)s; s += 4;
+		*d++ = ((rgb&0xFF)>>3) + ((rgb&0xFC00)>>5) + ((rgb&0xF80000)>>8);
 	}
 }