Lines Matching refs:ovr
538 drmModePlane *ovr = plane->plane; in dump_planes() local
539 if (!ovr) in dump_planes()
543 ovr->plane_id, ovr->crtc_id, ovr->fb_id, in dump_planes()
544 ovr->crtc_x, ovr->crtc_y, ovr->x, ovr->y, in dump_planes()
545 ovr->gamma_size, ovr->possible_crtcs); in dump_planes()
547 if (!ovr->count_formats) in dump_planes()
551 for (j = 0; j < ovr->count_formats; j++) in dump_planes()
552 dump_fourcc(ovr->formats[j]); in dump_planes()
1102 static bool format_support(const drmModePlanePtr ovr, uint32_t fmt) in format_support() argument
1106 for (i = 0; i < ovr->count_formats; ++i) { in format_support()
1107 if (ovr->formats[i] == fmt) in format_support()
1260 drmModePlane *ovr; in set_plane() local
1278 ovr = dev->resources->planes[i].plane; in set_plane()
1279 if (!ovr) in set_plane()
1282 if (plane_id && plane_id != ovr->plane_id) in set_plane()
1285 if (!format_support(ovr, p->fourcc)) in set_plane()
1288 if ((ovr->possible_crtcs & crtc_mask) && in set_plane()
1289 (ovr->crtc_id == 0 || ovr->crtc_id == p->crtc_id)) { in set_plane()
1290 plane_id = ovr->plane_id; in set_plane()
1329 ovr->crtc_id = p->crtc_id; in set_plane()
1564 drmModePlane *ovr = plane->plane; in get_primary_plane_by_crtc() local
1565 if (!ovr) in get_primary_plane_by_crtc()
1570 if (ovr->possible_crtcs & get_crtc_mask(dev, crtc)) in get_primary_plane_by_crtc()