Merge branch 'origin'
[platform/upstream/libdrm.git] / tests / updatedraw.c
1 /*
2  * Copyright © 2007 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  *
23  * Authors:
24  *    Eric Anholt <eric@anholt.net>
25  *
26  */
27
28 #include "drmtest.h"
29
30 static void
31 set_draw_cliprects_empty(int fd, int drawable)
32 {
33         int ret;
34         struct drm_update_draw update;
35
36         update.handle = drawable;
37         update.type = DRM_DRAWABLE_CLIPRECTS;
38         update.num = 0;
39         update.data = 0;
40
41         ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
42         assert(ret == 0);
43 }
44
45 static void
46 set_draw_cliprects_empty_fail(int fd, int drawable)
47 {
48         int ret;
49         struct drm_update_draw update;
50
51         update.handle = drawable;
52         update.type = DRM_DRAWABLE_CLIPRECTS;
53         update.num = 0;
54         update.data = 0;
55
56         ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
57         assert(ret == -1 && errno == EINVAL);
58 }
59
60 static void
61 set_draw_cliprects_2(int fd, int drawable)
62 {
63         int ret;
64         struct drm_update_draw update;
65         drm_clip_rect_t rects[2];
66
67         rects[0].x1 = 0;
68         rects[0].y1 = 0;
69         rects[0].x2 = 10;
70         rects[0].y2 = 10;
71
72         rects[1].x1 = 10;
73         rects[1].y1 = 10;
74         rects[1].x2 = 20;
75         rects[1].y2 = 20;
76
77         update.handle = drawable;
78         update.type = DRM_DRAWABLE_CLIPRECTS;
79         update.num = 2;
80         update.data = (unsigned long long)(uintptr_t)&rects;
81
82         ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
83         assert(ret == 0);
84 }
85
86 /**
87  * Tests drawable management: adding, removing, and updating the cliprects of
88  * drawables.
89  */
90 int main(int argc, char **argv)
91 {
92         drm_draw_t drawarg;
93         int fd, ret, drawable;
94
95         fd = drm_open_any_master();
96
97         /* Create a drawable.
98          * IOCTL_ADD_DRAW is RDWR, though it should really just be RD
99          */
100         drawarg.handle = 0;
101         ret = ioctl(fd, DRM_IOCTL_ADD_DRAW, &drawarg);
102         assert(ret == 0);
103         drawable = drawarg.handle;
104
105         /* Do a series of cliprect updates */
106         set_draw_cliprects_empty(fd, drawable);
107         set_draw_cliprects_2(fd, drawable);
108         set_draw_cliprects_empty(fd, drawable);
109
110         /* Remove our drawable */
111         drawarg.handle = drawable;
112         ret = ioctl(fd, DRM_IOCTL_RM_DRAW, &drawarg);
113         assert(ret == 0);
114         drawable = drawarg.handle;
115
116         /* Check that removing an unknown drawable returns error */
117         drawarg.handle = 0x7fffffff;
118         ret = ioctl(fd, DRM_IOCTL_RM_DRAW, &drawarg);
119         assert(ret == -1 && errno == EINVAL);
120         drawable = drawarg.handle;
121
122         /* Attempt to set cliprects on a nonexistent drawable */
123         set_draw_cliprects_empty_fail(fd, drawable);
124
125         close(fd);
126         return 0;
127 }