plane.h (8632987380765dee716d460640aa58d58d52998e) plane.h (c6aeaf56f468a565f6d2f27325fc07d35cdcd3cb)
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2017 NVIDIA CORPORATION. All rights reserved.
4 */
5
6#ifndef TEGRA_PLANE_H
7#define TEGRA_PLANE_H 1
8

--- 29 unchanged lines hidden (view full) ---

38struct tegra_plane_legacy_blending_state {
39 bool alpha;
40 bool top;
41};
42
43struct tegra_plane_state {
44 struct drm_plane_state base;
45
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2017 NVIDIA CORPORATION. All rights reserved.
4 */
5
6#ifndef TEGRA_PLANE_H
7#define TEGRA_PLANE_H 1
8

--- 29 unchanged lines hidden (view full) ---

38struct tegra_plane_legacy_blending_state {
39 bool alpha;
40 bool top;
41};
42
43struct tegra_plane_state {
44 struct drm_plane_state base;
45
46 struct sg_table *sgt[3];
46 struct host1x_bo_mapping *map[3];
47 dma_addr_t iova[3];
48
49 struct tegra_bo_tiling tiling;
50 u32 format;
51 u32 swap;
52
53 bool reflect_x;
54 bool reflect_y;

--- 44 unchanged lines hidden ---
47 dma_addr_t iova[3];
48
49 struct tegra_bo_tiling tiling;
50 u32 format;
51 u32 swap;
52
53 bool reflect_x;
54 bool reflect_y;

--- 44 unchanged lines hidden ---