Home
last modified time | relevance | path

Searched refs:sp_plane (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/drmDsp/
H A Dmodeset.h10 struct sp_plane* get_sp_plane(struct sp_dev* dev, struct sp_crtc* crtc);
11 void put_sp_plane(struct sp_plane* plane);
13 int set_sp_plane(struct sp_dev* dev, struct sp_plane* plane,
17 int set_sp_plane_pset(struct sp_dev* dev, struct sp_plane* plane,
H A Ddev.h10 struct sp_plane { struct
51 struct sp_plane* planes; argument
54 int is_supported_format(struct sp_plane* plane, uint32_t format);
H A Dmodeset.c129 struct sp_plane* get_sp_plane(struct sp_dev* dev, struct sp_crtc* crtc) { in get_sp_plane()
133 struct sp_plane* p = &dev->planes[i]; in get_sp_plane()
147 void put_sp_plane(struct sp_plane* plane) { in put_sp_plane()
167 int set_sp_plane(struct sp_dev* dev, struct sp_plane* plane, in set_sp_plane()
191 int set_sp_plane_pset(struct sp_dev* dev, struct sp_plane* plane, in set_sp_plane_pset()
H A Ddev.c35 int is_supported_format(struct sp_plane* plane, uint32_t format) { in is_supported_format()
45 static int get_supported_format(struct sp_plane* plane, uint32_t* format) { in get_supported_format()
151 dev->planes = (struct sp_plane*)calloc(dev->num_planes, sizeof(struct sp_plane)); in create_sp_dev()
154 struct sp_plane* plane = &dev->planes[i]; in create_sp_dev()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/
H A DdrmDsp.c27 struct sp_plane** plane;
29 struct sp_plane* test_plane;
52 pDrmDsp->plane = (struct sp_plane**)calloc(pDrmDsp->dev->num_planes, sizeof(struct sp_plane*)); in initDrmDsp()