Lines Matching refs:ovr
426 drmModePlane *ovr = plane->plane; in dump_planes() local
427 if (!ovr) in dump_planes()
431 ovr->plane_id, ovr->crtc_id, ovr->fb_id, in dump_planes()
432 ovr->crtc_x, ovr->crtc_y, ovr->x, ovr->y, in dump_planes()
433 ovr->gamma_size, ovr->possible_crtcs); in dump_planes()
435 if (!ovr->count_formats) in dump_planes()
439 for (j = 0; j < ovr->count_formats; j++) in dump_planes()
440 printf(" %4.4s", (char *)&ovr->formats[j]); in dump_planes()
940 static bool format_support(const drmModePlanePtr ovr, uint32_t fmt) in format_support() argument
944 for (i = 0; i < ovr->count_formats; ++i) { in format_support()
945 if (ovr->formats[i] == fmt) in format_support()
954 drmModePlane *ovr; in set_plane() local
981 ovr = dev->resources->planes[i].plane; in set_plane()
982 if (!ovr || !format_support(ovr, p->fourcc)) in set_plane()
985 if ((ovr->possible_crtcs & (1 << pipe)) && !ovr->crtc_id) in set_plane()
986 plane_id = ovr->plane_id; in set_plane()
1032 ovr->crtc_id = crtc->crtc->crtc_id; in set_plane()