/* * Copyright (C) 2017 NVIDIA CORPORATION. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef TEGRA_PLANE_H #define TEGRA_PLANE_H 1 #include <drm/drm_plane.h> struct tegra_bo; struct tegra_dc; struct tegra_plane { struct drm_plane base; struct tegra_dc *dc; unsigned int offset; unsigned int index; }; struct tegra_cursor { struct tegra_plane base; struct tegra_bo *bo; unsigned int width; unsigned int height; };
static inline struct tegra_plane *to_tegra_plane(struct drm_plane *plane) { return container_of(plane, struct tegra_plane, base); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thierry Reding | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Thierry Reding | 32 | 100.00% | 1 | 100.00% |
Total | 32 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Thierry Reding | 207 | 91.59% | 5 | 83.33% |
Dmitry Osipenko | 19 | 8.41% | 1 | 16.67% |
Total | 226 | 100.00% | 6 | 100.00% |