diff options
author | notaz | 2011-09-23 19:29:03 +0300 |
---|---|---|
committer | notaz | 2011-09-23 19:29:03 +0300 |
commit | a80ae4a0353fce94df700ec84222d3c56c3d813a (patch) | |
tree | c6b2e473c33365cf8b33ab859681edf72ab06b01 /frontend/cspace.h | |
parent | aaac9c7e007b51aa74d18975f94bffdfed01c7e8 (diff) | |
download | pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.gz pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.tar.bz2 pcsx_rearmed-a80ae4a0353fce94df700ec84222d3c56c3d813a.zip |
support armv5 build
Diffstat (limited to 'frontend/cspace.h')
-rw-r--r-- | frontend/cspace.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/cspace.h b/frontend/cspace.h new file mode 100644 index 0000000..644143b --- /dev/null +++ b/frontend/cspace.h @@ -0,0 +1,12 @@ +#ifdef __cplusplus +extern "C" +{ +#endif + +void bgr555_to_rgb565(void *dst, const void *src, int bytes); +void bgr888_to_rgb888(void *dst, const void *src, int bytes); +void bgr888_to_rgb565(void *dst, const void *src, int bytes); + +#ifdef __cplusplus +} +#endif |