diff options
author | Adam Cheney <acheney@nvidia.com> | 2012-03-15 14:50:00 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@nvidia.com> | 2013-09-14 01:23:01 -0700 |
commit | 9236e94eab04109dcb1f682aa2a8e48cb7dccee1 (patch) | |
tree | e884983fb531c5d0d366ef7a09bf37c670dc0abf /include/video | |
parent | 0a36f2d7f147a074a1c2ade8395a414b687a5c90 (diff) |
video: tegra: add cursor mode flipping
This change adds a flag to flip windows in cursor mode. Cursor mode
will cause flips to be skipped over if there are newer flip requests
waiting in the workqueue.
Add CURSOR_MODE to caps bitfield.
bug 942762
Change-Id: Ib52a0a5565f961cdd9650e4204cd65b86f96fee1
Signed-off-by: Adam Cheney <acheney@nvidia.com>
Reviewed-on: http://git-master/r/90418
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Robert Morell <rmorell@nvidia.com>
Rebase-Id: R179068b5bad6d40e1599b8b3597fb1659a61f8f9
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/tegra_dc_ext.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/video/tegra_dc_ext.h b/include/video/tegra_dc_ext.h index 8c51c70858ed..f46074b1e559 100644 --- a/include/video/tegra_dc_ext.h +++ b/include/video/tegra_dc_ext.h @@ -58,6 +58,7 @@ #define TEGRA_DC_EXT_FLIP_FLAG_INVERT_H (1 << 0) #define TEGRA_DC_EXT_FLIP_FLAG_INVERT_V (1 << 1) #define TEGRA_DC_EXT_FLIP_FLAG_TILED (1 << 2) +#define TEGRA_DC_EXT_FLIP_FLAG_CURSOR (1 << 3) struct tegra_dc_ext_flip_windowattr { __s32 index; |