From 609d00b3d70d0e5e5a7b360b39b51ba51c5cbb99 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 17 May 2016 12:17:45 +0200 Subject: [PATCH] (RJPEG) Image needs to be converted from RGBA to ARGB --- libretro-common/formats/jpeg/rjpeg.c | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/libretro-common/formats/jpeg/rjpeg.c b/libretro-common/formats/jpeg/rjpeg.c index 6c63e1b089..15e87a3045 100644 --- a/libretro-common/formats/jpeg/rjpeg.c +++ b/libretro-common/formats/jpeg/rjpeg.c @@ -2428,13 +2428,26 @@ int rjpeg_process_image(rjpeg_t *rjpeg, void **buf_data, size_t size, unsigned *width, unsigned *height) { int comp; - uint8_t **buf = (uint8_t**)buf_data; + uint8_t **buf = (uint8_t**)buf_data; + unsigned size_tex = 0; if (!rjpeg) return IMAGE_PROCESS_ERROR; - rjpeg->output_image = (uint32_t*)rjpeg_load_from_memory(rjpeg->buff_data, size, width, height, &comp, 4); - *buf_data = rjpeg->output_image; + rjpeg->output_image = (uint32_t*)rjpeg_load_from_memory(rjpeg->buff_data, size, width, height, &comp, 4); + *buf_data = rjpeg->output_image; + size_tex = (*width) * (*height); + + /* Convert RGBA to ARGB */ + do + { + unsigned int texel = rjpeg->output_image[size_tex]; + unsigned int A = texel & 0xFF000000; + unsigned int B = texel & 0x00FF0000; + unsigned int G = texel & 0x0000FF00; + unsigned int R = texel & 0x000000FF; + ((unsigned int*)rjpeg->output_image)[size_tex] = A | (R << 16) | G | (B >> 16); + }while(size_tex--); return IMAGE_PROCESS_END; }