xref: /OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/rkRgaApi.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 #ifndef _RGA_API_H_
2 #define _RGA_API_H_
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 struct rkRgaCfg {
9     int width;
10     int height;
11     int fmt;
12     int fd;
13     void *addr;
14 };
15 
16 void rkRgaInit();
17 int rkRgaBlit(struct rkRgaCfg *src_cfg, struct rkRgaCfg *dst_cfg);
18 
19 #ifdef __cplusplus
20 };
21 #endif
22 #endif
23