Searched refs:drm_add_plane_property (Results 1 – 1 of 1) sorted by relevance
/lvgl-latest/src/drivers/display/drm/ |
D | lv_linux_drm.c | 84 static int drm_add_plane_property(drm_dev_t * drm_dev, const char * name, uint64_t value); 305 static int drm_add_plane_property(drm_dev_t * drm_dev, const char * name, uint64_t value) in drm_add_plane_property() function 382 drm_add_plane_property(drm_dev, "FB_ID", buf->fb_handle); in drm_dmabuf_set_plane() 383 drm_add_plane_property(drm_dev, "CRTC_ID", drm_dev->crtc_id); in drm_dmabuf_set_plane() 384 drm_add_plane_property(drm_dev, "SRC_X", 0); in drm_dmabuf_set_plane() 385 drm_add_plane_property(drm_dev, "SRC_Y", 0); in drm_dmabuf_set_plane() 386 drm_add_plane_property(drm_dev, "SRC_W", drm_dev->width << 16); in drm_dmabuf_set_plane() 387 drm_add_plane_property(drm_dev, "SRC_H", drm_dev->height << 16); in drm_dmabuf_set_plane() 388 drm_add_plane_property(drm_dev, "CRTC_X", 0); in drm_dmabuf_set_plane() 389 drm_add_plane_property(drm_dev, "CRTC_Y", 0); in drm_dmabuf_set_plane() [all …]
|