psx_gpu: improve fills
[pcsx_rearmed.git] / frontend / cspace.h
1 #ifdef __cplusplus
2 extern "C"
3 {
4 #endif
5
6 void bgr555_to_rgb565(void *dst, const void *src, int bytes);
7 void bgr888_to_rgb888(void *dst, const void *src, int bytes);
8 void bgr888_to_rgb565(void *dst, const void *src, int bytes);
9
10 #ifdef __cplusplus
11 }
12 #endif