dri3: Clean up struct dri3_drawable
[mesa.git] / src / glx / dri3_priv.h
1 /*
2 * Copyright © 2013 Keith Packard
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23 /* This file was derived from dri2_priv.h which carries the following
24 * copyright:
25 *
26 * Copyright © 2008 Red Hat, Inc.
27 *
28 * Permission is hereby granted, free of charge, to any person obtaining a
29 * copy of this software and associated documentation files (the "Soft-
30 * ware"), to deal in the Software without restriction, including without
31 * limitation the rights to use, copy, modify, merge, publish, distribute,
32 * and/or sell copies of the Software, and to permit persons to whom the
33 * Software is furnished to do so, provided that the above copyright
34 * notice(s) and this permission notice appear in all copies of the Soft-
35 * ware and that both the above copyright notice(s) and this permission
36 * notice appear in supporting documentation.
37 *
38 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
39 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
40 * ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY
41 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
42 * THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE-
43 * QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
44 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
45 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR-
46 * MANCE OF THIS SOFTWARE.
47 *
48 * Except as contained in this notice, the name of a copyright holder shall
49 * not be used in advertising or otherwise to promote the sale, use or
50 * other dealings in this Software without prior written authorization of
51 * the copyright holder.
52 *
53 * Authors:
54 * Kristian Høgsberg (krh@redhat.com)
55 */
56
57 #include <xcb/xcb.h>
58 #include <xcb/dri3.h>
59 #include <xcb/present.h>
60 #include <xcb/sync.h>
61
62 /* From xmlpool/options.h, user exposed so should be stable */
63 #define DRI_CONF_VBLANK_NEVER 0
64 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
65 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
66 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
67
68 enum dri3_buffer_type {
69 dri3_buffer_back = 0,
70 dri3_buffer_front = 1
71 };
72
73 struct dri3_buffer {
74 __DRIimage *image;
75 uint32_t pixmap;
76
77 /* Synchronization between the client and X server is done using an
78 * xshmfence that is mapped into an X server SyncFence. This lets the
79 * client check whether the X server is done using a buffer with a simple
80 * xshmfence call, rather than going to read X events from the wire.
81 *
82 * However, we can only wait for one xshmfence to be triggered at a time,
83 * so we need to know *which* buffer is going to be idle next. We do that
84 * by waiting for a PresentIdleNotify event. When that event arrives, the
85 * 'busy' flag gets cleared and the client knows that the fence has been
86 * triggered, and that the wait call will not block.
87 */
88
89 uint32_t sync_fence; /* XID of X SyncFence object */
90 struct xshmfence *shm_fence; /* pointer to xshmfence object */
91 GLboolean busy; /* Set on swap, cleared on IdleNotify */
92 GLboolean own_pixmap; /* We allocated the pixmap ID, free on destroy */
93 void *driverPrivate;
94
95 uint32_t size;
96 uint32_t pitch;
97 uint32_t cpp;
98 uint32_t flags;
99 uint32_t width, height;
100
101 enum dri3_buffer_type buffer_type;
102 };
103
104 struct dri3_display
105 {
106 __GLXDRIdisplay base;
107
108 const __DRIextension *loader_extensions[8];
109
110 /* DRI3 bits */
111 int dri3Major;
112 int dri3Minor;
113
114 /* Present bits */
115 int hasPresent;
116 int presentMajor;
117 int presentMinor;
118 };
119
120 struct dri3_screen {
121 struct glx_screen base;
122
123 __DRIscreen *driScreen;
124 __GLXDRIscreen vtable;
125
126 const __DRIimageExtension *image;
127 const __DRIimageDriverExtension *image_driver;
128 const __DRIcoreExtension *core;
129 const __DRI2flushExtension *f;
130 const __DRI2configQueryExtension *config;
131 const __DRItexBufferExtension *texBuffer;
132 const __DRIconfig **driver_configs;
133
134 void *driver;
135 int fd;
136
137 Bool show_fps;
138 };
139
140 struct dri3_context
141 {
142 struct glx_context base;
143 __DRIcontext *driContext;
144 };
145
146 #define DRI3_MAX_BACK 2
147 #define DRI3_BACK_ID(i) (i)
148 #define DRI3_FRONT_ID (DRI3_MAX_BACK)
149
150 static inline int
151 dri3_buf_id_next(int buf_id)
152 {
153 if (buf_id == DRI3_MAX_BACK - 1)
154 return 0;
155 return buf_id + 1;
156 }
157
158 static inline int
159 dri3_buf_id_prev(int buf_id)
160 {
161 if (buf_id == 0)
162 return DRI3_MAX_BACK - 1;
163 return buf_id - 1;
164 }
165
166 static inline int
167 dri3_pixmap_buf_id(enum dri3_buffer_type buffer_type)
168 {
169 if (buffer_type == dri3_buffer_back)
170 return DRI3_BACK_ID(0);
171 else
172 return DRI3_FRONT_ID;
173 }
174
175 #define DRI3_NUM_BUFFERS (1 + DRI3_MAX_BACK)
176
177 struct dri3_drawable {
178 __GLXDRIdrawable base;
179 __DRIdrawable *driDrawable;
180 int width, height, depth;
181 int swap_interval;
182 uint8_t have_back;
183 uint8_t have_fake_front;
184 uint8_t is_pixmap;
185
186 uint32_t present_request_serial;
187 uint32_t present_event_serial;
188
189 uint64_t sbc;
190
191 uint64_t ust, msc;
192
193 /* For WaitMSC */
194 uint32_t present_msc_request_serial;
195 uint32_t present_msc_event_serial;
196
197 struct dri3_buffer *buffers[DRI3_NUM_BUFFERS];
198 int cur_back;
199
200 uint32_t *stamp;
201
202 xcb_present_event_t eid;
203 xcb_gcontext_t gc;
204 xcb_special_event_t *special_event;
205 };
206
207 char *
208 dri3_get_driver_for_fd(int fd);