diff options
author | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2012-05-15 18:38:29 -0300 |
---|---|---|
committer | Rob Clark <rob@ti.com> | 2012-06-08 09:27:21 -0500 |
commit | 86dece4cf2f7180b854fbd318fa1a57793f0deac (patch) | |
tree | ea8d60183c3f8217f7cb1ea3933368d09b39cf6f | |
parent | 8c75703df0fdf65b3851f8eb5822705638decff3 (diff) |
modetest: print CRTC properties
Reviewed-by: Eugeni Dodonov <eugeni.dodonov@intel.com>
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
-rw-r--r-- | tests/modetest/modetest.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c index 8012ecc0..ce57e65d 100644 --- a/tests/modetest/modetest.c +++ b/tests/modetest/modetest.c @@ -295,7 +295,9 @@ void dump_connectors(void) void dump_crtcs(void) { drmModeCrtc *crtc; + drmModeObjectPropertiesPtr props; int i; + uint32_t j; printf("CRTCs:\n"); printf("id\tfb\tpos\tsize\n"); @@ -314,6 +316,19 @@ void dump_crtcs(void) crtc->width, crtc->height); dump_mode(&crtc->mode); + printf(" props:\n"); + props = drmModeObjectGetProperties(fd, crtc->crtc_id, + DRM_MODE_OBJECT_CRTC); + 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 crtc properties: %s\n", + strerror(errno)); + } + drmModeFreeCrtc(crtc); } printf("\n"); |