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