frontend: update libpicofe, fix missed callbacks
[pcsx_rearmed.git] / frontend / cspace.h
CommitLineData
7a8d521f 1#ifndef __CSPACE_H__
2#define __CSPACE_H__
3
495eab93 4#ifdef __cplusplus
5extern "C"
6{
7#endif
8
ff847a2e 9void bgr555_to_rgb565(void *dst, const void *src, int bytes);
10void bgr888_to_rgb888(void *dst, const void *src, int bytes);
11void bgr888_to_rgb565(void *dst, const void *src, int bytes);
00a5d459 12void rgb888_to_rgb565(void *dst, const void *src, int bytes);
495eab93 13
35d3fd2e 14void bgr555_to_rgb565_b(void *dst, const void *src, int bytes,
15 int brightness2k); // 0-0x0800
16
4d99e39b 17void bgr555_to_xrgb8888(void *dst, const void *src, int bytes);
18void bgr888_to_xrgb8888(void *dst, const void *src, int bytes);
19
c9099d02 20void bgr_to_uyvy_init(void);
5b9aa749 21void rgb565_to_uyvy(void *d, const void *s, int pixels);
81023939 22void bgr555_to_uyvy(void *d, const void *s, int pixels, int x2);
23void bgr888_to_uyvy(void *d, const void *s, int pixels, int x2);
c9099d02 24
495eab93 25#ifdef __cplusplus
26}
27#endif
7a8d521f 28
29#endif /* __CSPACE_H__ */