modetest: support plane properties

Add support to display plane properties.

Signed-off-by: Rob Clark <rob@ti.com>
Reviewed-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
main
Rob Clark 2012-06-05 12:28:47 -05:00
parent 6df9e6af4b
commit 25e4cb4659
1 changed files with 14 additions and 0 deletions

View File

@ -369,6 +369,7 @@ void dump_framebuffers(void)
static void dump_planes(void)
{
drmModeObjectPropertiesPtr props;
drmModePlaneRes *plane_resources;
drmModePlane *ovr;
unsigned int i, j;
@ -403,6 +404,19 @@ static void dump_planes(void)
printf(" %4.4s", (char *)&ovr->formats[j]);
printf("\n");
printf(" props:\n");
props = drmModeObjectGetProperties(fd, ovr->plane_id,
DRM_MODE_OBJECT_PLANE);
if (props) {
for (j = 0; j < props->count_props; j++)
dump_prop(props->props[j],
props->prop_values[j]);
drmModeFreeObjectProperties(props);
} else {
printf("\tcould not get plane properties: %s\n",
strerror(errno));
}
drmModeFreePlane(ovr);
}
printf("\n");