blob: 141e46a31cda51d84cf5f65d879d081e70bcc749 [file] [log] [blame]
Adam Jacksoncb3610e2004-10-25 21:09:16 +00001/*
Adam Jacksondc8058c2008-09-19 17:16:53 -04002 * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
3 * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice including the dates of first publication and
13 * either this permission notice or a reference to
14 * http://oss.sgi.com/projects/FreeB/
15 * shall be included in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
22 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Except as contained in this notice, the name of Silicon Graphics, Inc.
26 * shall not be used in advertising or otherwise to promote the sale, use or
27 * other dealings in this Software without prior written authorization from
28 * Silicon Graphics, Inc.
29 */
Adam Jacksoncb3610e2004-10-25 21:09:16 +000030
31/**
32 * \file glxclient.h
33 * Direct rendering support added by Precision Insight, Inc.
34 *
35 * \author Kevin E. Martin <kevin@precisioninsight.com>
36 */
37
38#ifndef _GLX_client_h_
39#define _GLX_client_h_
Adam Jacksoncb3610e2004-10-25 21:09:16 +000040#include <X11/Xproto.h>
41#include <X11/Xlibint.h>
Kristian Høgsberg38c51a72010-07-28 10:20:41 -040042#include <X11/Xfuncproto.h>
Robert Bragg7a9329b2010-01-20 03:01:14 +000043#include <X11/extensions/extutil.h>
Adam Jacksoncb3610e2004-10-25 21:09:16 +000044#define GLX_GLXEXT_PROTOTYPES
45#include <GL/glx.h>
46#include <GL/glxext.h>
47#include <string.h>
48#include <stdlib.h>
49#include <stdio.h>
Adam Jacksonad919c32004-11-15 15:31:32 +000050#include <stdint.h>
Emil Velikova385d182015-03-06 16:54:59 +000051#include <pthread.h>
Adam Jacksoncb3610e2004-10-25 21:09:16 +000052#include "GL/glxproto.h"
Kristian Høgsberg65d98e22010-07-28 10:13:44 -040053#include "glxconfig.h"
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050054#include "glxhash.h"
Brian Paul0339e7d2015-03-03 09:51:19 -070055#include "util/macros.h"
Adam Jacksoncb3610e2004-10-25 21:09:16 +000056
Jeremy Huddlestonec770152008-08-08 02:37:14 -070057#include "glxextensions.h"
58
Brian Paula25e1aa2008-09-18 13:26:30 -060059
Jose Fonseca52c74432016-04-26 19:48:12 +010060#ifdef __cplusplus
61extern "C" {
62#endif
63
64
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020065#define GLX_MAJOR_VERSION 1 /* current version numbers */
66#define GLX_MINOR_VERSION 4
Adam Jacksoncb3610e2004-10-25 21:09:16 +000067
68#define __GLX_MAX_TEXTURE_UNITS 32
69
Kristian Høgsbergc356f582010-07-28 11:16:00 -040070struct glx_display;
71struct glx_context;
Adam Jacksoncb3610e2004-10-25 21:09:16 +000072
73/************************************************************************/
74
75#ifdef GLX_DIRECT_RENDERING
76
Kristian Høgsbergc356f582010-07-28 11:16:00 -040077extern void DRI_glXUseXFont(struct glx_context *ctx,
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -040078 Font font, int first, int count, int listbase);
Adam Jacksoncb3610e2004-10-25 21:09:16 +000079
Jeremy Huddleston80b280d2010-04-02 01:35:19 -070080#endif
81
82#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
83
Adam Jacksoncb3610e2004-10-25 21:09:16 +000084/**
85 * Display dependent methods. This structure is initialized during the
86 * \c driCreateDisplay call.
87 */
Kristian Høgsberg425f9ed2008-03-08 19:02:10 -050088typedef struct __GLXDRIdisplayRec __GLXDRIdisplay;
Kristian Høgsberg92d2a782008-03-08 20:34:24 -050089typedef struct __GLXDRIscreenRec __GLXDRIscreen;
Kristian Høgsberg20b92302008-03-08 21:02:23 -050090typedef struct __GLXDRIdrawableRec __GLXDRIdrawable;
Kristian Høgsberg92d2a782008-03-08 20:34:24 -050091
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020092struct __GLXDRIdisplayRec
93{
Adam Jacksoncb3610e2004-10-25 21:09:16 +000094 /**
95 * Method to destroy the private DRI display data.
96 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020097 void (*destroyDisplay) (__GLXDRIdisplay * display);
Kristian Høgsberga1ea6f62008-03-08 19:15:50 -050098
Kristian Høgsbergc356f582010-07-28 11:16:00 -040099 struct glx_screen *(*createScreen)(int screen, struct glx_display * priv);
Kristian Høgsberg92d2a782008-03-08 20:34:24 -0500100};
101
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700102struct __GLXDRIscreenRec {
Kristian Høgsberg92d2a782008-03-08 20:34:24 -0500103
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400104 void (*destroyScreen)(struct glx_screen *psc);
Kristian Høgsberg92d2a782008-03-08 20:34:24 -0500105
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400106 struct glx_context *(*createContext)(struct glx_screen *psc,
107 struct glx_config *config,
108 struct glx_context *shareList,
109 int renderType);
Kristian Høgsbergf56b5692008-08-13 11:46:25 -0400110
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400111 __GLXDRIdrawable *(*createDrawable)(struct glx_screen *psc,
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700112 XID drawable,
113 GLXDrawable glxDrawable,
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400114 struct glx_config *config);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200115
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700116 int64_t (*swapBuffers)(__GLXDRIdrawable *pdraw, int64_t target_msc,
Marek Olšák5b7e9b72012-11-13 17:06:37 +0100117 int64_t divisor, int64_t remainder, Bool flush);
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700118 void (*copySubBuffer)(__GLXDRIdrawable *pdraw,
Marek Olšák5b7e9b72012-11-13 17:06:37 +0100119 int x, int y, int width, int height, Bool flush);
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400120 int (*getDrawableMSC)(struct glx_screen *psc, __GLXDRIdrawable *pdraw,
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700121 int64_t *ust, int64_t *msc, int64_t *sbc);
122 int (*waitForMSC)(__GLXDRIdrawable *pdraw, int64_t target_msc,
123 int64_t divisor, int64_t remainder, int64_t *ust,
124 int64_t *msc, int64_t *sbc);
125 int (*waitForSBC)(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust,
126 int64_t *msc, int64_t *sbc);
Kristian Høgsberg089fc372010-07-19 16:39:53 -0400127 int (*setSwapInterval)(__GLXDRIdrawable *pdraw, int interval);
Jesse Barnesefc82e72009-11-10 13:28:01 -0800128 int (*getSwapInterval)(__GLXDRIdrawable *pdraw);
Adel Gadllaha69fabc2014-02-24 20:44:42 +0100129 int (*getBufferAge)(__GLXDRIdrawable *pdraw);
Kristian Høgsberg20b92302008-03-08 21:02:23 -0500130};
131
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200132struct __GLXDRIdrawableRec
133{
134 void (*destroyDrawable) (__GLXDRIdrawable * drawable);
Kristian Høgsberg91104252008-03-12 02:18:12 -0400135
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200136 XID xDrawable;
137 XID drawable;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400138 struct glx_screen *psc;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200139 GLenum textureTarget;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200140 GLenum textureFormat; /* EXT_texture_from_pixmap support */
Nick Bowlerf8d81c32010-07-14 12:01:49 -0400141 unsigned long eventMask;
Stéphane Marchesinbf69ce32011-06-15 15:09:12 -0700142 int refcount;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000143};
144
145/*
146** Function to create and DRI display data and initialize the display
147** dependent methods.
148*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200149extern __GLXDRIdisplay *driswCreateDisplay(Display * dpy);
150extern __GLXDRIdisplay *driCreateDisplay(Display * dpy);
151extern __GLXDRIdisplay *dri2CreateDisplay(Display * dpy);
Francisco Jerez61d26bc2010-02-08 19:27:56 +0100152extern void dri2InvalidateBuffers(Display *dpy, XID drawable);
Luca Barbieria0e51032010-09-22 07:44:59 +0200153extern unsigned dri2GetSwapEventType(Display *dpy, XID drawable);
Francisco Jerez61d26bc2010-02-08 19:27:56 +0100154
Keith Packard2d946012013-11-04 18:15:51 -0800155extern __GLXDRIdisplay *dri3_create_display(Display * dpy);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000156
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000157/*
158** Functions to obtain driver configuration information from a direct
159** rendering client application
160*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200161extern const char *glXGetScreenDriver(Display * dpy, int scrNum);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000162
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200163extern const char *glXGetDriverConfig(const char *driverName);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000164
165#endif
166
167/************************************************************************/
168
169#define __GL_CLIENT_ATTRIB_STACK_DEPTH 16
170
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200171typedef struct __GLXpixelStoreModeRec
172{
173 GLboolean swapEndian;
174 GLboolean lsbFirst;
175 GLuint rowLength;
176 GLuint imageHeight;
177 GLuint imageDepth;
178 GLuint skipRows;
179 GLuint skipPixels;
180 GLuint skipImages;
181 GLuint alignment;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000182} __GLXpixelStoreMode;
183
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000184
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200185typedef struct __GLXattributeRec
186{
187 GLuint mask;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000188
Ian Romanickfdb07632005-02-22 22:36:31 +0000189 /**
190 * Pixel storage state. Most of the pixel store mode state is kept
191 * here and used by the client code to manage the packing and
192 * unpacking of data sent to/received from the server.
193 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200194 __GLXpixelStoreMode storePack, storeUnpack;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000195
Ian Romanickfdb07632005-02-22 22:36:31 +0000196 /**
197 * Is EXT_vertex_array / GL 1.1 DrawArrays protocol specifically
198 * disabled?
199 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200200 GLboolean NoDrawArraysProtocol;
201
Ian Romanickfdb07632005-02-22 22:36:31 +0000202 /**
203 * Vertex Array storage state. The vertex array component
204 * state is stored here and is used to manage the packing of
205 * DrawArrays data sent to the server.
206 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200207 struct array_state_vector *array_state;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000208} __GLXattribute;
209
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200210typedef struct __GLXattributeMachineRec
211{
212 __GLXattribute *stack[__GL_CLIENT_ATTRIB_STACK_DEPTH];
213 __GLXattribute **stackPointer;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000214} __GLXattributeMachine;
215
Marek Olšák37d3a262016-03-03 18:43:53 +0100216typedef struct _mesa_glinterop_device_info mesa_glinterop_device_info;
217typedef struct _mesa_glinterop_export_in mesa_glinterop_export_in;
218typedef struct _mesa_glinterop_export_out mesa_glinterop_export_out;
219
Kristian Høgsberg643b2af2010-05-21 10:36:56 -0400220struct glx_context_vtable {
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400221 void (*destroy)(struct glx_context *ctx);
Kristian Høgsbergc491e582010-07-28 15:33:09 -0400222 int (*bind)(struct glx_context *context, struct glx_context *old,
223 GLXDrawable draw, GLXDrawable read);
Ian Romanick8a4b36d2011-11-28 17:47:59 -0800224 void (*unbind)(struct glx_context *context, struct glx_context *new_ctx);
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400225 void (*wait_gl)(struct glx_context *ctx);
226 void (*wait_x)(struct glx_context *ctx);
227 void (*use_x_font)(struct glx_context *ctx,
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400228 Font font, int first, int count, int listBase);
Kristian Høgsberg643b2af2010-05-21 10:36:56 -0400229 void (*bind_tex_image)(Display * dpy,
230 GLXDrawable drawable,
231 int buffer, const int *attrib_list);
232 void (*release_tex_image)(Display * dpy, GLXDrawable drawable, int buffer);
Jeremy Huddleston559e4f82011-06-15 00:27:55 -0700233 void * (*get_proc_address)(const char *symbol);
Marek Olšák37d3a262016-03-03 18:43:53 +0100234 int (*interop_query_device_info)(struct glx_context *ctx,
235 mesa_glinterop_device_info *out);
236 int (*interop_export_object)(struct glx_context *ctx,
237 const mesa_glinterop_export_in *in,
238 mesa_glinterop_export_out *out);
Kristian Høgsberg643b2af2010-05-21 10:36:56 -0400239};
240
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000241/**
242 * GLX state that needs to be kept on the client. One of these records
243 * exist for each context that has been made current by this client.
244 */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400245struct glx_context
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200246{
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000247 /**
248 * \name Drawing command buffer.
249 *
250 * Drawing commands are packed into this buffer before being sent as a
251 * single GLX protocol request. The buffer is sent when it overflows or
252 * is flushed by \c __glXFlushRenderBuffer. \c pc is the next location
253 * in the buffer to be filled. \c limit is described above in the buffer
254 * slop discussion.
255 *
256 * Commands that require large amounts of data to be transfered will
257 * also use this buffer to hold a header that describes the large
258 * command.
259 *
260 * These must be the first 6 fields since they are static initialized
261 * in the dummy context in glxext.c
262 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200263 /*@{ */
264 GLubyte *buf;
265 GLubyte *pc;
266 GLubyte *limit;
267 GLubyte *bufEnd;
268 GLint bufSize;
269 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000270
Kristian Høgsberg3ea3f5e2010-09-07 14:32:28 -0400271 const struct glx_context_vtable *vtable;
272
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000273 /**
274 * The XID of this rendering context. When the context is created a
275 * new XID is allocated. This is set to None when the context is
276 * destroyed but is still current to some thread. In this case the
277 * context will be freed on next MakeCurrent.
278 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200279 XID xid;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000280
281 /**
282 * The XID of the \c shareList context.
283 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200284 XID share_xid;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000285
286 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000287 * Screen number.
288 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200289 GLint screen;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400290 struct glx_screen *psc;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000291
292 /**
293 * \c GL_TRUE if the context was created with ImportContext, which
294 * means the server-side context was created by another X client.
295 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200296 GLboolean imported;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000297
298 /**
299 * The context tag returned by MakeCurrent when this context is made
300 * current. This tag is used to identify the context that a thread has
301 * current so that proper server context management can be done. It is
302 * used for all context specific commands (i.e., \c Render, \c RenderLarge,
303 * \c WaitX, \c WaitGL, \c UseXFont, and \c MakeCurrent (for the old
304 * context)).
305 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200306 GLXContextTag currentContextTag;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000307
308 /**
309 * \name Rendering mode
310 *
311 * The rendering mode is kept on the client as well as the server.
312 * When \c glRenderMode is called, the buffer associated with the
313 * previous rendering mode (feedback or select) is filled.
314 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200315 /*@{ */
316 GLenum renderMode;
317 GLfloat *feedbackBuf;
318 GLuint *selectBuf;
319 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000320
321 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000322 * Fill newImage with the unpacked form of \c oldImage getting it
323 * ready for transport to the server.
324 */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400325 void (*fillImage) (struct glx_context *, GLint, GLint, GLint, GLint, GLenum,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200326 GLenum, const GLvoid *, GLubyte *, GLubyte *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000327
328 /**
Ian Romanick29206ae2005-07-29 17:30:18 +0000329 * Client side attribs.
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000330 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200331 __GLXattributeMachine attributes;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000332
333 /**
334 * Client side error code. This is set when client side gl API
335 * routines need to set an error because of a bad enumerant or
336 * running out of memory, etc.
337 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200338 GLenum error;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000339
340 /**
Xiang, Haihaoae2c31e2008-03-18 15:02:57 +0800341 * Whether this context does direct rendering.
342 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200343 Bool isDirect;
Xiang, Haihaoae2c31e2008-03-18 15:02:57 +0800344
Jeremy Huddleston488d6c72011-06-05 18:02:44 -0400345#if defined(GLX_DIRECT_RENDERING) && defined(GLX_USE_APPLEGL)
346 void *driContext;
Jeremy Huddleston488d6c72011-06-05 18:02:44 -0400347#endif
348
Xiang, Haihaoae2c31e2008-03-18 15:02:57 +0800349 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000350 * \c dpy of current display for this context. Will be \c NULL if not
351 * current to any display, or if this is the "dummy context".
352 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200353 Display *currentDpy;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000354
355 /**
356 * The current drawable for this context. Will be None if this
357 * context is not current to any drawable. currentReadable is below.
358 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200359 GLXDrawable currentDrawable;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000360
361 /**
362 * \name GL Constant Strings
363 *
364 * Constant strings that describe the server implementation
365 * These pertain to GL attributes, not to be confused with
366 * GLX versioning attributes.
367 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200368 /*@{ */
369 GLubyte *vendor;
370 GLubyte *renderer;
371 GLubyte *version;
372 GLubyte *extensions;
373 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000374
375 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000376 * Maximum small render command size. This is the smaller of 64k and
377 * the size of the above buffer.
378 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200379 GLint maxSmallRenderCommandSize;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000380
381 /**
382 * Major opcode for the extension. Copied here so a lookup isn't
383 * needed.
384 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200385 GLint majorOpcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000386
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500387 /**
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400388 * Pointer to the config used to create this context.
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500389 */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400390 struct glx_config *config;
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500391
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000392 /**
393 * The current read-drawable for this context. Will be None if this
394 * context is not current to any drawable.
395 *
396 * \since Internal API version 20030606.
397 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200398 GLXDrawable currentReadable;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000399
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200400 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000401 * Pointer to client-state data that is private to libGL. This is only
402 * used for indirect rendering contexts.
403 *
404 * No internal API version change was made for this change. Client-side
405 * drivers should NEVER use this data or even care that it exists.
406 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200407 void *client_state_private;
Ian Romanickfdb07632005-02-22 22:36:31 +0000408
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000409 /**
410 * Stored value for \c glXQueryContext attribute \c GLX_RENDER_TYPE.
411 */
412 int renderType;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200413
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000414 /**
415 * \name Raw server GL version
416 *
417 * True core GL version supported by the server. This is the raw value
418 * returned by the server, and it may not reflect what is actually
419 * supported (or reported) by the client-side library.
420 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200421 /*@{ */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000422 int server_major; /**< Major version number. */
423 int server_minor; /**< Minor version number. */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200424 /*@} */
Ian Romanickfdb07632005-02-22 22:36:31 +0000425
Thomas Hellstrom96fd3df2009-04-02 11:00:41 +0200426 /**
Eric Anholt49d7e482011-02-03 17:26:02 -0800427 * Number of threads we're currently current in.
Thomas Hellstrom96fd3df2009-04-02 11:00:41 +0200428 */
Eric Anholt49d7e482011-02-03 17:26:02 -0800429 unsigned long thread_refcount;
Thomas Hellstrom96fd3df2009-04-02 11:00:41 +0200430
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200431 char gl_extension_bits[__GL_EXT_BYTES];
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000432};
433
Kristian Høgsberg31819832010-07-22 21:24:14 -0400434extern Bool
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400435glx_context_init(struct glx_context *gc,
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400436 struct glx_screen *psc, struct glx_config *fbconfig);
Kristian Høgsberg31819832010-07-22 21:24:14 -0400437
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200438#define __glXSetError(gc,code) \
439 if (!(gc)->error) { \
440 (gc)->error = code; \
441 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000442
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400443extern void __glFreeAttributeState(struct glx_context *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000444
445/************************************************************************/
446
447/**
448 * The size of the largest drawing command known to the implementation
449 * that will use the GLXRender GLX command. In this case it is
450 * \c glPolygonStipple.
451 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200452#define __GLX_MAX_SMALL_RENDER_CMD_SIZE 156
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000453
454/**
455 * To keep the implementation fast, the code uses a "limit" pointer
456 * to determine when the drawing command buffer is too full to hold
457 * another fixed size command. This constant defines the amount of
458 * space that must always be available in the drawing command buffer
459 * at all times for the implementation to work. It is important that
460 * the number be just large enough, but not so large as to reduce the
461 * efficacy of the buffer. The "+32" is just to keep the code working
462 * in case somebody counts wrong.
463 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200464#define __GLX_BUFFER_LIMIT_SIZE (__GLX_MAX_SMALL_RENDER_CMD_SIZE + 32)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000465
466/**
467 * This implementation uses a smaller threshold for switching
468 * to the RenderLarge protocol than the protcol requires so that
469 * large copies don't occur.
470 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200471#define __GLX_RENDER_CMD_SIZE_LIMIT 4096
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000472
473/**
474 * One of these records exists per screen of the display. It contains
475 * a pointer to the config data for that screen (if the screen supports GL).
476 */
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400477struct glx_screen_vtable {
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400478 struct glx_context *(*create_context)(struct glx_screen *psc,
479 struct glx_config *config,
480 struct glx_context *shareList,
481 int renderType);
Ian Romanick43409fa2011-11-30 13:06:59 -0800482
483 struct glx_context *(*create_context_attribs)(struct glx_screen *psc,
484 struct glx_config *config,
485 struct glx_context *shareList,
486 unsigned num_attrib,
487 const uint32_t *attribs,
488 unsigned *error);
Ian Romanick6c28c032013-02-15 22:35:24 -0800489 int (*query_renderer_integer)(struct glx_screen *psc,
490 int attribute,
Brian Paul75982a52013-11-08 09:00:46 -0700491 unsigned int *value);
Ian Romanick6c28c032013-02-15 22:35:24 -0800492 int (*query_renderer_string)(struct glx_screen *psc,
493 int attribute,
494 const char **value);
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400495};
496
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400497struct glx_screen
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200498{
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400499 const struct glx_screen_vtable *vtable;
500
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000501 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000502 * GLX extension string reported by the X-server.
503 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200504 const char *serverGLXexts;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000505
506 /**
507 * GLX extension string to be reported to applications. This is the
508 * set of extensions that the application can actually use.
509 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200510 char *effectiveGLXexts;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000511
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400512 struct glx_display *display;
Kristian Høgsberg03775512010-07-19 21:00:09 -0400513
Kristian Høgsberg60fce152010-09-07 12:40:37 -0400514 Display *dpy;
515 int scr;
516
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700517#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000518 /**
519 * Per screen direct rendering interface functions and data.
520 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200521 __GLXDRIscreen *driScreen;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000522#endif
523
524 /**
Kristian Høgsberg6c533ea2007-10-16 16:07:47 -0400525 * Linked list of glx visuals and fbconfigs for this screen.
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000526 */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400527 struct glx_config *visuals, *configs;
Ian Romanickc39bf5e2005-07-24 06:29:14 +0000528
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000529 /**
530 * Per-screen dynamic GLX extension tracking. The \c direct_support
531 * field only contains enough bits for 64 extensions. Should libGL
532 * ever need to track more than 64 GLX extensions, we can safely grow
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400533 * this field. The \c struct glx_screen structure is not used outside
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000534 * libGL.
535 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200536 /*@{ */
537 unsigned char direct_support[8];
538 GLboolean ext_list_first_time;
539 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000540
Kristian Høgsbergaceccda2007-05-10 15:52:22 -0400541};
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000542
543/**
544 * Per display private data. One of these records exists for each display
545 * that is using the OpenGL (GLX) extension.
546 */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400547struct glx_display
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200548{
Kristian Høgsbergab434f62010-07-22 21:11:02 -0400549 /* The extension protocol codes */
550 XExtCodes *codes;
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400551 struct glx_display *next;
Kristian Høgsbergab434f62010-07-22 21:11:02 -0400552
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000553 /**
554 * Back pointer to the display
555 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200556 Display *dpy;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000557
558 /**
559 * The \c majorOpcode is common to all connections to the same server.
560 * It is also copied into the context structure.
561 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200562 int majorOpcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000563
564 /**
565 * \name Server Version
566 *
567 * Major and minor version returned by the server during initialization.
568 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200569 /*@{ */
570 int majorVersion, minorVersion;
571 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000572
573 /**
574 * \name Storage for the servers GLX vendor and versions strings.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200575 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000576 * These are the same for all screens on this display. These fields will
577 * be filled in on demand.
578 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200579 /*@{ */
580 const char *serverGLXvendor;
581 const char *serverGLXversion;
582 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000583
584 /**
585 * Configurations of visuals for all screens on this display.
586 * Also, per screen data which now includes the server \c GLX_EXTENSION
587 * string.
588 */
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400589 struct glx_screen **screens;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000590
Jesse Barnes4df13762011-05-06 10:31:24 -0700591 __glxHashTable *glXDrawHash;
592
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700593#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberge3e81962010-07-19 21:15:50 -0400594 __glxHashTable *drawHash;
595
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000596 /**
597 * Per display direct rendering interface functions and data.
598 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200599 __GLXDRIdisplay *driswDisplay;
600 __GLXDRIdisplay *driDisplay;
601 __GLXDRIdisplay *dri2Display;
Keith Packard2d946012013-11-04 18:15:51 -0800602 __GLXDRIdisplay *dri3Display;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000603#endif
604};
605
Jesse Barnes4df13762011-05-06 10:31:24 -0700606struct glx_drawable {
607 XID xDrawable;
608 XID drawable;
609
610 uint32_t lastEventSbc;
611 int64_t eventSbcWrap;
612};
613
Kristian Høgsbergf9721152010-07-19 14:57:59 -0400614extern int
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400615glx_screen_init(struct glx_screen *psc,
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400616 int screen, struct glx_display * priv);
Henri Verbeetbfc88952011-01-29 15:00:48 -0800617extern void
618glx_screen_cleanup(struct glx_screen *psc);
Kristian Høgsbergf9721152010-07-19 14:57:59 -0400619
Kristian Høgsbergc1cbdbf2010-07-20 07:43:50 -0400620#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberg3750ebd2010-07-19 09:37:07 -0400621extern __GLXDRIdrawable *
622dri2GetGlxDrawableFromXDrawableId(Display *dpy, XID id);
Kristian Høgsbergc1cbdbf2010-07-20 07:43:50 -0400623#endif
Kristian Høgsbergaceccda2007-05-10 15:52:22 -0400624
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400625extern GLubyte *__glXFlushRenderBuffer(struct glx_context *, GLubyte *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000626
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400627extern void __glXSendLargeChunk(struct glx_context * gc, GLint requestNumber,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200628 GLint totalRequests,
629 const GLvoid * data, GLint dataLen);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000630
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400631extern void __glXSendLargeCommand(struct glx_context *, const GLvoid *, GLint,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200632 const GLvoid *, GLint);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000633
634/* Initialize the GLX extension for dpy */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400635extern struct glx_display *__glXInitialize(Display *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000636
Brian Pauldf2c9422008-07-11 15:43:52 -0600637extern void __glXPreferEGL(int state);
638
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000639/************************************************************************/
640
641extern int __glXDebug;
642
643/* This is per-thread storage in an MT environment */
Ian Romanick02986cb2005-04-18 16:59:53 +0000644
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400645extern void __glXSetCurrentContext(struct glx_context * c);
Ian Romanick02986cb2005-04-18 16:59:53 +0000646
647# if defined( GLX_USE_TLS )
648
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200649extern __thread void *__glX_tls_Context
650 __attribute__ ((tls_model("initial-exec")));
Ian Romanick02986cb2005-04-18 16:59:53 +0000651
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200652# define __glXGetCurrentContext() __glX_tls_Context
Ian Romanick02986cb2005-04-18 16:59:53 +0000653
654# else
655
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400656extern struct glx_context *__glXGetCurrentContext(void);
Ian Romanick02986cb2005-04-18 16:59:53 +0000657
658# endif /* defined( GLX_USE_TLS ) */
659
George Sapountzisdf04ffb2008-04-18 17:28:34 +0300660extern void __glXSetCurrentContextNull(void);
661
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000662
663/*
664** Global lock for all threads in this address space using the GLX
665** extension
666*/
Ian Romanick02986cb2005-04-18 16:59:53 +0000667extern pthread_mutex_t __glXmutex;
668#define __glXLock() pthread_mutex_lock(&__glXmutex)
669#define __glXUnlock() pthread_mutex_unlock(&__glXmutex)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000670
671/*
672** Setup for a command. Initialize the extension for dpy if necessary.
673*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200674extern CARD8 __glXSetupForCommand(Display * dpy);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000675
676/************************************************************************/
677
678/*
679** Data conversion and packing support.
680*/
681
Ian Romanick5f1f2292005-01-07 02:39:09 +0000682extern const GLuint __glXDefaultPixelStore[9];
683
684/* Send an image to the server using RenderLarge. */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400685extern void __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200686 GLint width, GLint height, GLint depth,
687 GLenum format, GLenum type,
688 const GLvoid * src, GLubyte * pc,
689 GLubyte * modes);
Ian Romanick5f1f2292005-01-07 02:39:09 +0000690
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000691/* Return the size, in bytes, of some pixel data */
Ian Romanick5f1f2292005-01-07 02:39:09 +0000692extern GLint __glImageSize(GLint, GLint, GLint, GLenum, GLenum, GLenum);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000693
694/* Return the number of elements per group of a specified format*/
695extern GLint __glElementsPerGroup(GLenum format, GLenum type);
696
697/* Return the number of bytes per element, based on the element type (other
698** than GL_BITMAP).
699*/
700extern GLint __glBytesPerElement(GLenum type);
701
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000702/*
703** Fill the transport buffer with the data from the users buffer,
704** applying some of the pixel store modes (unpack modes) to the data
705** first. As a side effect of this call, the "modes" field is
706** updated to contain the modes needed by the server to decode the
707** sent data.
708*/
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400709extern void __glFillImage(struct glx_context *, GLint, GLint, GLint, GLint, GLenum,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200710 GLenum, const GLvoid *, GLubyte *, GLubyte *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000711
712/* Copy map data with a stride into a packed buffer */
713extern void __glFillMap1f(GLint, GLint, GLint, const GLfloat *, GLubyte *);
714extern void __glFillMap1d(GLint, GLint, GLint, const GLdouble *, GLubyte *);
715extern void __glFillMap2f(GLint, GLint, GLint, GLint, GLint,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200716 const GLfloat *, GLfloat *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000717extern void __glFillMap2d(GLint, GLint, GLint, GLint, GLint,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200718 const GLdouble *, GLdouble *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000719
720/*
721** Empty an image out of the reply buffer into the clients memory applying
722** the pack modes to pack back into the clients requested format.
723*/
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400724extern void __glEmptyImage(struct glx_context *, GLint, GLint, GLint, GLint, GLenum,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200725 GLenum, const GLubyte *, GLvoid *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000726
727
728/*
Kristof Raloviche2060342008-08-20 15:18:38 -0600729** Allocate and Initialize Vertex Array client state, and free.
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000730*/
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400731extern void __glXInitVertexArrayState(struct glx_context *);
732extern void __glXFreeVertexArrayState(struct glx_context *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000733
734/*
735** Inform the Server of the major and minor numbers and of the client
736** libraries extension string.
737*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200738extern void __glXClientInfo(Display * dpy, int opcode);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000739
Ian Romanick6ccda722011-11-28 17:50:07 -0800740_X_HIDDEN void
741__glX_send_client_info(struct glx_display *glx_dpy);
742
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000743/************************************************************************/
744
745/*
746** Declarations that should be in Xlib
747*/
748#ifdef __GL_USE_OUR_PROTOTYPES
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200749extern void _XFlush(Display *);
750extern Status _XReply(Display *, xReply *, int, Bool);
751extern void _XRead(Display *, void *, long);
752extern void _XSend(Display *, const void *, long);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000753#endif
754
755
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400756extern void __glXInitializeVisualConfigFromTags(struct glx_config * config,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200757 int count, const INT32 * bp,
758 Bool tagged_only,
759 Bool fbconfig_style_tags);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000760
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200761extern char *__glXQueryServerString(Display * dpy, int opcode,
762 CARD32 screen, CARD32 name);
763extern char *__glXGetString(Display * dpy, int opcode,
764 CARD32 screen, CARD32 name);
RALOVICH, Kristóf54444242008-10-18 16:53:08 +0200765
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000766extern const char __glXGLClientVersion[];
767extern const char __glXGLClientExtensions[];
768
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000769/* Get the unadjusted system time */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200770extern int __glXGetUST(int64_t * ust);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000771
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500772extern GLboolean __glXGetMscRateOML(Display * dpy, GLXDrawable drawable,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200773 int32_t * numerator,
774 int32_t * denominator);
Ian Romanickfc5b57b2006-08-29 15:38:19 +0000775
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700776#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberg7a66e542010-07-21 14:09:49 -0400777extern GLboolean
Lauri Kasanenfe2079c2013-12-15 12:37:55 +0200778__glxGetMscRate(struct glx_screen *psc,
Kristian Høgsberg7a66e542010-07-21 14:09:49 -0400779 int32_t * numerator, int32_t * denominator);
Robert Bragg7a9329b2010-01-20 03:01:14 +0000780
781/* So that dri2.c:DRI2WireToEvent() can access
782 * glx_info->codes->first_event */
783XExtDisplayInfo *__glXFindDisplay (Display *dpy);
Kristian Høgsberg97ec6072010-02-15 11:12:28 -0500784
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400785extern void
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400786GarbageCollectDRIDrawables(struct glx_screen *psc);
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400787
Kristian Høgsberg97ec6072010-02-15 11:12:28 -0500788extern __GLXDRIdrawable *
Kristian Høgsbergeeaab202010-07-22 22:36:37 -0400789GetGLXDRIDrawable(Display *dpy, GLXDrawable drawable);
Jeremy Huddleston1885cf22011-06-05 18:50:55 -0400790#endif
Kristian Høgsberg97ec6072010-02-15 11:12:28 -0500791
Ian Romanick588042a2011-11-30 10:33:37 -0800792extern struct glx_screen *GetGLXScreenConfigs(Display * dpy, int scrn);
793
Jeremy Huddleston1885cf22011-06-05 18:50:55 -0400794#ifdef GLX_USE_APPLEGL
795extern struct glx_screen *
796applegl_create_screen(int screen, struct glx_display * priv);
797
798extern struct glx_context *
799applegl_create_context(struct glx_screen *psc,
800 struct glx_config *mode,
801 struct glx_context *shareList, int renderType);
802
803extern int
804applegl_create_display(struct glx_display *display);
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500805#endif
806
Tomasz Lis2eed9ff2013-07-18 14:19:38 -0700807extern Bool validate_renderType_against_config(const struct glx_config *config,
808 int renderType);
809
Jesse Barnes4df13762011-05-06 10:31:24 -0700810
811extern struct glx_drawable *GetGLXDrawable(Display *dpy, GLXDrawable drawable);
812extern int InitGLXDrawable(Display *dpy, struct glx_drawable *glxDraw,
813 XID xDrawable, GLXDrawable drawable);
814extern void DestroyGLXDrawable(Display *dpy, GLXDrawable drawable);
815
Kristian Høgsbergf485ee72010-07-29 18:44:26 -0400816extern struct glx_context dummyContext;
817
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400818extern struct glx_screen *
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400819indirect_create_screen(int screen, struct glx_display * priv);
Kristian Høgsberg68499162010-07-28 16:40:43 -0400820extern struct glx_context *
821indirect_create_context(struct glx_screen *psc,
822 struct glx_config *mode,
823 struct glx_context *shareList, int renderType);
Tomasz Lis27c8aa52013-07-17 13:49:18 +0200824extern struct glx_context *
825indirect_create_context_attribs(struct glx_screen *base,
826 struct glx_config *config_base,
827 struct glx_context *shareList,
828 unsigned num_attribs,
829 const uint32_t *attribs,
830 unsigned *error);
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400831
Jose Fonseca52c74432016-04-26 19:48:12 +0100832#ifdef __cplusplus
833}
834#endif
835
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000836#endif /* !__GLX_client_h__ */