diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2010-07-16 15:09:17 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-07-21 11:19:45 +1000 |
commit | 92897b5c669f5e819ff2596fe6228ca2e4904981 (patch) | |
tree | 7bd7f559624915873635d1255f473ff972860194 /include/drm | |
parent | 9440106b460ddfb7c0ff98beb6a6741f1f67b92b (diff) | |
download | linux-3.10-92897b5c669f5e819ff2596fe6228ca2e4904981.tar.gz linux-3.10-92897b5c669f5e819ff2596fe6228ca2e4904981.tar.bz2 linux-3.10-92897b5c669f5e819ff2596fe6228ca2e4904981.zip |
drm: add "auto" dithering method
There's no convenient/reliable way for drivers to both obey the dithering
mode property, and to be able to attempt to provide a good default in all
cases.
This commit adds an "auto" method to the property which drivers can default
to if they wish, whilst still allowing the user to override the choice as
they do now.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drm_mode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h index c5ba1636613..0fc7397c8f1 100644 --- a/include/drm/drm_mode.h +++ b/include/drm/drm_mode.h @@ -74,6 +74,7 @@ /* Dithering mode options */ #define DRM_MODE_DITHERING_OFF 0 #define DRM_MODE_DITHERING_ON 1 +#define DRM_MODE_DITHERING_AUTO 2 /* Dirty info options */ #define DRM_MODE_DIRTY_OFF 0 |