android13/external/camera_engine_rkaiq/tests/rkisp_demo/demo/rkRgaApi.h

23 lines
297 B
C
Raw Normal View History

2024-06-22 08:45:49 -04:00
#ifndef _RGA_API_H_
#define _RGA_API_H_
#ifdef __cplusplus
extern "C" {
#endif
struct rkRgaCfg {
int width;
int height;
int fmt;
int fd;
void *addr;
};
void rkRgaInit();
int rkRgaBlit(struct rkRgaCfg *src_cfg, struct rkRgaCfg *dst_cfg);
#ifdef __cplusplus
};
#endif
#endif