diff options
author | Dmitry Osipenko <digetx@gmail.com> | 2020-06-18 02:40:39 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2020-07-17 16:06:17 +0200 |
commit | cd740777d29d7053e0172c7e0105789428425941 (patch) | |
tree | 5876310deb7a45a2f6cf916d2703f8f3d438fd54 /drivers/gpu/drm/tegra/plane.h | |
parent | e9e476f7f7eaaf12058290f83cccbcb076596b2f (diff) | |
download | kernel_replicant_linux-cd740777d29d7053e0172c7e0105789428425941.tar.gz kernel_replicant_linux-cd740777d29d7053e0172c7e0105789428425941.tar.bz2 kernel_replicant_linux-cd740777d29d7053e0172c7e0105789428425941.zip |
drm/tegra: plane: Support horizontal reflection
Support horizontal reflection mode which will allow to support 180°
rotation mode when combined with the vertical reflection.
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/plane.h')
-rw-r--r-- | drivers/gpu/drm/tegra/plane.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tegra/plane.h b/drivers/gpu/drm/tegra/plane.h index 8047fc916d8c..c691dd79b27b 100644 --- a/drivers/gpu/drm/tegra/plane.h +++ b/drivers/gpu/drm/tegra/plane.h @@ -46,6 +46,7 @@ struct tegra_plane_state { u32 format; u32 swap; + bool reflect_x; bool reflect_y; /* used for legacy blending support only */ |