diff options
author | twinaphex | 2014-12-31 11:43:39 +0100 |
---|---|---|
committer | twinaphex | 2014-12-31 11:43:39 +0100 |
commit | be1294d017cba3f18cf66597f0cbed207fed26bf (patch) | |
tree | 84856d7c7fb7357ed94f8748d649060b7a83274a /frontend/cspace.h | |
parent | e63a9dc66d0ce5a9d88353f880ef88a6590d06fd (diff) | |
parent | 3aba41853f8dc014ff61e05e8a2c616d89f88715 (diff) | |
download | pcsx_rearmed-be1294d017cba3f18cf66597f0cbed207fed26bf.tar.gz pcsx_rearmed-be1294d017cba3f18cf66597f0cbed207fed26bf.tar.bz2 pcsx_rearmed-be1294d017cba3f18cf66597f0cbed207fed26bf.zip |
Merge https://github.com/notaz/pcsx_rearmed
Diffstat (limited to 'frontend/cspace.h')
-rw-r--r-- | frontend/cspace.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frontend/cspace.h b/frontend/cspace.h index 1a9e339..8c92d2d 100644 --- a/frontend/cspace.h +++ b/frontend/cspace.h @@ -8,6 +8,9 @@ void bgr888_to_rgb888(void *dst, const void *src, int bytes); void bgr888_to_rgb565(void *dst, const void *src, int bytes); void rgb888_to_rgb565(void *dst, const void *src, int bytes); +void bgr555_to_rgb565_b(void *dst, const void *src, int bytes, + int brightness2k); // 0-0x0800 + void bgr_to_uyvy_init(void); void rgb565_to_uyvy(void *d, const void *s, int pixels); void bgr555_to_uyvy(void *d, const void *s, int pixels); |