diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2013-09-26 17:56:01 +0100 |
---|---|---|
committer | Damien Lespiau <damien.lespiau@intel.com> | 2013-09-30 18:04:22 +0100 |
commit | a7d1937cd777e23bb6f234156e6164aafe151fbe (patch) | |
tree | 7a3b0209754dbf192a9cdddb00155d396e7d1a7b /lib/drmtest.c | |
parent | 578c1cefc9c0b80927b69584ef730acd3a1eb2f0 (diff) |
testdisplay: Use DRM_MODE_FLAG_3D_MASK
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'lib/drmtest.c')
-rw-r--r-- | lib/drmtest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c index 5ff9b5f5..e714e0c0 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -1784,7 +1784,7 @@ type_name_fn(connector_type) void kmstest_dump_mode(drmModeModeInfo *mode) { - bool stereo_3d = mode->flags & DRMTEST_MODE_FLAG_3D_MASK; + bool stereo_3d = mode->flags & DRM_MODE_FLAG_3D_MASK; char flags_str[32]; #define PRINT_S(name) "%s" |