aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exynos/exynos_fimg2d_test.c')
-rw-r--r--tests/exynos/exynos_fimg2d_test.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/exynos/exynos_fimg2d_test.c b/tests/exynos/exynos_fimg2d_test.c
index 1ec7340d..59de4ba4 100644
--- a/tests/exynos/exynos_fimg2d_test.c
+++ b/tests/exynos/exynos_fimg2d_test.c
@@ -112,37 +112,6 @@ static void connector_find_mode(int fd, struct connector *c,
112 c->crtc = c->encoder->crtc_id; 112 c->crtc = c->encoder->crtc_id;
113} 113}
114 114
115static int connector_find_plane(int fd, unsigned int *plane_id)
116{
117 drmModePlaneRes *plane_resources;
118 drmModePlane *ovr;
119 int i;
120
121 plane_resources = drmModeGetPlaneResources(fd);
122 if (!plane_resources) {
123 fprintf(stderr, "drmModeGetPlaneResources failed: %s\n",
124 strerror(errno));
125 return -1;
126 }
127
128 for (i = 0; i < plane_resources->count_planes; i++) {
129 plane_id[i] = 0;
130
131 ovr = drmModeGetPlane(fd, plane_resources->planes[i]);
132 if (!ovr) {
133 fprintf(stderr, "drmModeGetPlane failed: %s\n",
134 strerror(errno));
135 continue;
136 }
137
138 if (ovr->possible_crtcs & (1 << 0))
139 plane_id[i] = ovr->plane_id;
140 drmModeFreePlane(ovr);
141 }
142
143 return 0;
144}
145
146static int drm_set_crtc(struct exynos_device *dev, struct connector *c, 115static int drm_set_crtc(struct exynos_device *dev, struct connector *c,
147 unsigned int fb_id) 116 unsigned int fb_id)
148{ 117{