blob: 4f5c02fc34d43460b19eca4abe922004d0d090f2 [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#ifdef WIN32
51#include <stdint.h>
52#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +000053#include "GL/glxproto.h"
Brian4eb95ce2008-09-18 20:27:16 -060054#include "glapi/glapitable.h"
Kristian Høgsberg65d98e22010-07-28 10:13:44 -040055#include "glxconfig.h"
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050056#include "glxhash.h"
RALOVICH, Kristóf8363dff2009-07-23 17:58:08 +020057#if defined( PTHREADS )
Ian Romanick02986cb2005-04-18 16:59:53 +000058# include <pthread.h>
Adam Jacksoncb3610e2004-10-25 21:09:16 +000059#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +000060
Jeremy Huddlestonec770152008-08-08 02:37:14 -070061#include "glxextensions.h"
62
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -040063#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
Brian Paula25e1aa2008-09-18 13:26:30 -060064
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øgsberg020c64b2008-03-08 21:57:29 -050091typedef struct __GLXDRIcontextRec __GLXDRIcontext;
Kristian Høgsberg92d2a782008-03-08 20:34:24 -050092
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040093#include "glxextensions.h"
94
RALOVICH, Kristóf08962682009-08-12 12:41:22 +020095struct __GLXDRIdisplayRec
96{
Adam Jacksoncb3610e2004-10-25 21:09:16 +000097 /**
98 * Method to destroy the private DRI display data.
99 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200100 void (*destroyDisplay) (__GLXDRIdisplay * display);
Kristian Høgsberga1ea6f62008-03-08 19:15:50 -0500101
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400102 struct glx_screen *(*createScreen)(int screen, struct glx_display * priv);
Kristian Høgsberg92d2a782008-03-08 20:34:24 -0500103};
104
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700105struct __GLXDRIscreenRec {
Kristian Høgsberg92d2a782008-03-08 20:34:24 -0500106
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400107 void (*destroyScreen)(struct glx_screen *psc);
Kristian Høgsberg92d2a782008-03-08 20:34:24 -0500108
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400109 struct glx_context *(*createContext)(struct glx_screen *psc,
110 struct glx_config *config,
111 struct glx_context *shareList,
112 int renderType);
Kristian Høgsbergf56b5692008-08-13 11:46:25 -0400113
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400114 __GLXDRIdrawable *(*createDrawable)(struct glx_screen *psc,
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700115 XID drawable,
116 GLXDrawable glxDrawable,
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400117 struct glx_config *config);
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200118
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700119 int64_t (*swapBuffers)(__GLXDRIdrawable *pdraw, int64_t target_msc,
120 int64_t divisor, int64_t remainder);
121 void (*copySubBuffer)(__GLXDRIdrawable *pdraw,
122 int x, int y, int width, int height);
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400123 int (*getDrawableMSC)(struct glx_screen *psc, __GLXDRIdrawable *pdraw,
Jesse Barnesdaf7fe62009-09-15 23:23:09 -0700124 int64_t *ust, int64_t *msc, int64_t *sbc);
125 int (*waitForMSC)(__GLXDRIdrawable *pdraw, int64_t target_msc,
126 int64_t divisor, int64_t remainder, int64_t *ust,
127 int64_t *msc, int64_t *sbc);
128 int (*waitForSBC)(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust,
129 int64_t *msc, int64_t *sbc);
Kristian Høgsberg089fc372010-07-19 16:39:53 -0400130 int (*setSwapInterval)(__GLXDRIdrawable *pdraw, int interval);
Jesse Barnesefc82e72009-11-10 13:28:01 -0800131 int (*getSwapInterval)(__GLXDRIdrawable *pdraw);
Kristian Høgsberg20b92302008-03-08 21:02:23 -0500132};
133
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200134struct __GLXDRIcontextRec
135{
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400136 Bool(*bindContext) (struct glx_context *context, __GLXDRIdrawable *pdraw,
Kristian Høgsberg31819832010-07-22 21:24:14 -0400137 __GLXDRIdrawable *pread);
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400138 void (*unbindContext) (struct glx_context *context);
Kristian Høgsberg020c64b2008-03-08 21:57:29 -0500139};
140
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200141struct __GLXDRIdrawableRec
142{
143 void (*destroyDrawable) (__GLXDRIdrawable * drawable);
Kristian Høgsberg91104252008-03-12 02:18:12 -0400144
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200145 XID xDrawable;
146 XID drawable;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400147 struct glx_screen *psc;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200148 GLenum textureTarget;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200149 GLenum textureFormat; /* EXT_texture_from_pixmap support */
Nick Bowlerf8d81c32010-07-14 12:01:49 -0400150 unsigned long eventMask;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000151};
152
153/*
154** Function to create and DRI display data and initialize the display
155** dependent methods.
156*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200157extern __GLXDRIdisplay *driswCreateDisplay(Display * dpy);
158extern __GLXDRIdisplay *driCreateDisplay(Display * dpy);
159extern __GLXDRIdisplay *dri2CreateDisplay(Display * dpy);
Francisco Jerez61d26bc2010-02-08 19:27:56 +0100160extern void dri2InvalidateBuffers(Display *dpy, XID drawable);
161
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000162
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000163/*
164** Functions to obtain driver configuration information from a direct
165** rendering client application
166*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200167extern const char *glXGetScreenDriver(Display * dpy, int scrNum);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000168
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200169extern const char *glXGetDriverConfig(const char *driverName);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000170
171#endif
172
173/************************************************************************/
174
175#define __GL_CLIENT_ATTRIB_STACK_DEPTH 16
176
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200177typedef struct __GLXpixelStoreModeRec
178{
179 GLboolean swapEndian;
180 GLboolean lsbFirst;
181 GLuint rowLength;
182 GLuint imageHeight;
183 GLuint imageDepth;
184 GLuint skipRows;
185 GLuint skipPixels;
186 GLuint skipImages;
187 GLuint alignment;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000188} __GLXpixelStoreMode;
189
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000190
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200191typedef struct __GLXattributeRec
192{
193 GLuint mask;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000194
Ian Romanickfdb07632005-02-22 22:36:31 +0000195 /**
196 * Pixel storage state. Most of the pixel store mode state is kept
197 * here and used by the client code to manage the packing and
198 * unpacking of data sent to/received from the server.
199 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200200 __GLXpixelStoreMode storePack, storeUnpack;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000201
Ian Romanickfdb07632005-02-22 22:36:31 +0000202 /**
203 * Is EXT_vertex_array / GL 1.1 DrawArrays protocol specifically
204 * disabled?
205 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200206 GLboolean NoDrawArraysProtocol;
207
Ian Romanickfdb07632005-02-22 22:36:31 +0000208 /**
209 * Vertex Array storage state. The vertex array component
210 * state is stored here and is used to manage the packing of
211 * DrawArrays data sent to the server.
212 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200213 struct array_state_vector *array_state;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000214} __GLXattribute;
215
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200216typedef struct __GLXattributeMachineRec
217{
218 __GLXattribute *stack[__GL_CLIENT_ATTRIB_STACK_DEPTH];
219 __GLXattribute **stackPointer;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000220} __GLXattributeMachine;
221
Kristian Høgsberg643b2af2010-05-21 10:36:56 -0400222struct glx_context_vtable {
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400223 void (*destroy)(struct glx_context *ctx);
224 void (*wait_gl)(struct glx_context *ctx);
225 void (*wait_x)(struct glx_context *ctx);
226 void (*use_x_font)(struct glx_context *ctx,
Kristian Høgsberg7b7845a2010-07-22 22:24:00 -0400227 Font font, int first, int count, int listBase);
Kristian Høgsberg643b2af2010-05-21 10:36:56 -0400228 void (*bind_tex_image)(Display * dpy,
229 GLXDrawable drawable,
230 int buffer, const int *attrib_list);
231 void (*release_tex_image)(Display * dpy, GLXDrawable drawable, int buffer);
232
233};
234
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400235extern void
236glx_send_destroy_context(Display *dpy, XID xid);
237
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000238/**
239 * GLX state that needs to be kept on the client. One of these records
240 * exist for each context that has been made current by this client.
241 */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400242struct glx_context
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200243{
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000244 /**
245 * \name Drawing command buffer.
246 *
247 * Drawing commands are packed into this buffer before being sent as a
248 * single GLX protocol request. The buffer is sent when it overflows or
249 * is flushed by \c __glXFlushRenderBuffer. \c pc is the next location
250 * in the buffer to be filled. \c limit is described above in the buffer
251 * slop discussion.
252 *
253 * Commands that require large amounts of data to be transfered will
254 * also use this buffer to hold a header that describes the large
255 * command.
256 *
257 * These must be the first 6 fields since they are static initialized
258 * in the dummy context in glxext.c
259 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200260 /*@{ */
261 GLubyte *buf;
262 GLubyte *pc;
263 GLubyte *limit;
264 GLubyte *bufEnd;
265 GLint bufSize;
266 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000267
268 /**
269 * The XID of this rendering context. When the context is created a
270 * new XID is allocated. This is set to None when the context is
271 * destroyed but is still current to some thread. In this case the
272 * context will be freed on next MakeCurrent.
273 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200274 XID xid;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000275
276 /**
277 * The XID of the \c shareList context.
278 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200279 XID share_xid;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000280
281 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000282 * Screen number.
283 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200284 GLint screen;
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400285 struct glx_screen *psc;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000286
287 /**
288 * \c GL_TRUE if the context was created with ImportContext, which
289 * means the server-side context was created by another X client.
290 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200291 GLboolean imported;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000292
293 /**
294 * The context tag returned by MakeCurrent when this context is made
295 * current. This tag is used to identify the context that a thread has
296 * current so that proper server context management can be done. It is
297 * used for all context specific commands (i.e., \c Render, \c RenderLarge,
298 * \c WaitX, \c WaitGL, \c UseXFont, and \c MakeCurrent (for the old
299 * context)).
300 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200301 GLXContextTag currentContextTag;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000302
303 /**
304 * \name Rendering mode
305 *
306 * The rendering mode is kept on the client as well as the server.
307 * When \c glRenderMode is called, the buffer associated with the
308 * previous rendering mode (feedback or select) is filled.
309 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200310 /*@{ */
311 GLenum renderMode;
312 GLfloat *feedbackBuf;
313 GLuint *selectBuf;
314 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000315
316 /**
317 * This is \c GL_TRUE if the pixel unpack modes are such that an image
318 * can be unpacked from the clients memory by just copying. It may
319 * still be true that the server will have to do some work. This
320 * just promises that a straight copy will fetch the correct bytes.
321 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200322 GLboolean fastImageUnpack;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000323
324 /**
325 * Fill newImage with the unpacked form of \c oldImage getting it
326 * ready for transport to the server.
327 */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400328 void (*fillImage) (struct glx_context *, GLint, GLint, GLint, GLint, GLenum,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200329 GLenum, const GLvoid *, GLubyte *, GLubyte *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000330
331 /**
Ian Romanick29206ae2005-07-29 17:30:18 +0000332 * Client side attribs.
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000333 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200334 __GLXattributeMachine attributes;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000335
336 /**
337 * Client side error code. This is set when client side gl API
338 * routines need to set an error because of a bad enumerant or
339 * running out of memory, etc.
340 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200341 GLenum error;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000342
343 /**
Xiang, Haihaoae2c31e2008-03-18 15:02:57 +0800344 * Whether this context does direct rendering.
345 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200346 Bool isDirect;
Xiang, Haihaoae2c31e2008-03-18 15:02:57 +0800347
348 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000349 * \c dpy of current display for this context. Will be \c NULL if not
350 * current to any display, or if this is the "dummy context".
351 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200352 Display *currentDpy;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000353
354 /**
355 * The current drawable for this context. Will be None if this
356 * context is not current to any drawable. currentReadable is below.
357 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200358 GLXDrawable currentDrawable;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000359
360 /**
361 * \name GL Constant Strings
362 *
363 * Constant strings that describe the server implementation
364 * These pertain to GL attributes, not to be confused with
365 * GLX versioning attributes.
366 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200367 /*@{ */
368 GLubyte *vendor;
369 GLubyte *renderer;
370 GLubyte *version;
371 GLubyte *extensions;
372 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000373
374 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000375 * Maximum small render command size. This is the smaller of 64k and
376 * the size of the above buffer.
377 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200378 GLint maxSmallRenderCommandSize;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000379
380 /**
381 * Major opcode for the extension. Copied here so a lookup isn't
382 * needed.
383 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200384 GLint majorOpcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000385
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500386 /**
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400387 * Pointer to the config used to create this context.
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500388 */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400389 struct glx_config *config;
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500390
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000391#ifdef GLX_DIRECT_RENDERING
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700392#ifdef GLX_USE_APPLEGL
393 void *driContext;
394 Bool do_destroy;
395#else
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200396 __GLXDRIcontext *driContext;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000397#endif
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700398#endif
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000399
400 /**
401 * The current read-drawable for this context. Will be None if this
402 * context is not current to any drawable.
403 *
404 * \since Internal API version 20030606.
405 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200406 GLXDrawable currentReadable;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000407
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200408 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000409 * Pointer to client-state data that is private to libGL. This is only
410 * used for indirect rendering contexts.
411 *
412 * No internal API version change was made for this change. Client-side
413 * drivers should NEVER use this data or even care that it exists.
414 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200415 void *client_state_private;
Ian Romanickfdb07632005-02-22 22:36:31 +0000416
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000417 /**
418 * Stored value for \c glXQueryContext attribute \c GLX_RENDER_TYPE.
419 */
420 int renderType;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200421
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000422 /**
423 * \name Raw server GL version
424 *
425 * True core GL version supported by the server. This is the raw value
426 * returned by the server, and it may not reflect what is actually
427 * supported (or reported) by the client-side library.
428 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200429 /*@{ */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000430 int server_major; /**< Major version number. */
431 int server_minor; /**< Minor version number. */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200432 /*@} */
Ian Romanickfdb07632005-02-22 22:36:31 +0000433
Thomas Hellstrom96fd3df2009-04-02 11:00:41 +0200434 /**
435 * Thread ID we're currently current in. Zero if none.
436 */
437 unsigned long thread_id;
438
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200439 char gl_extension_bits[__GL_EXT_BYTES];
Kristian Høgsberg643b2af2010-05-21 10:36:56 -0400440
441 const struct glx_context_vtable *vtable;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000442};
443
Kristian Høgsberg31819832010-07-22 21:24:14 -0400444extern Bool
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400445glx_context_init(struct glx_context *gc,
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400446 struct glx_screen *psc, struct glx_config *fbconfig);
Kristian Høgsberg31819832010-07-22 21:24:14 -0400447
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200448#define __glXSetError(gc,code) \
449 if (!(gc)->error) { \
450 (gc)->error = code; \
451 }
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000452
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400453extern void __glFreeAttributeState(struct glx_context *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000454
455/************************************************************************/
456
457/**
458 * The size of the largest drawing command known to the implementation
459 * that will use the GLXRender GLX command. In this case it is
460 * \c glPolygonStipple.
461 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200462#define __GLX_MAX_SMALL_RENDER_CMD_SIZE 156
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000463
464/**
465 * To keep the implementation fast, the code uses a "limit" pointer
466 * to determine when the drawing command buffer is too full to hold
467 * another fixed size command. This constant defines the amount of
468 * space that must always be available in the drawing command buffer
469 * at all times for the implementation to work. It is important that
470 * the number be just large enough, but not so large as to reduce the
471 * efficacy of the buffer. The "+32" is just to keep the code working
472 * in case somebody counts wrong.
473 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200474#define __GLX_BUFFER_LIMIT_SIZE (__GLX_MAX_SMALL_RENDER_CMD_SIZE + 32)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000475
476/**
477 * This implementation uses a smaller threshold for switching
478 * to the RenderLarge protocol than the protcol requires so that
479 * large copies don't occur.
480 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200481#define __GLX_RENDER_CMD_SIZE_LIMIT 4096
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000482
483/**
484 * One of these records exists per screen of the display. It contains
485 * a pointer to the config data for that screen (if the screen supports GL).
486 */
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400487struct glx_screen_vtable {
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400488 struct glx_context *(*create_context)(struct glx_screen *psc,
489 struct glx_config *config,
490 struct glx_context *shareList,
491 int renderType);
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400492};
493
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400494struct glx_screen
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200495{
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400496 const struct glx_screen_vtable *vtable;
497
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000498 /**
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000499 * GLX extension string reported by the X-server.
500 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200501 const char *serverGLXexts;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000502
503 /**
504 * GLX extension string to be reported to applications. This is the
505 * set of extensions that the application can actually use.
506 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200507 char *effectiveGLXexts;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000508
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400509 struct glx_display *display;
Kristian Høgsberg03775512010-07-19 21:00:09 -0400510
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700511#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000512 /**
513 * Per screen direct rendering interface functions and data.
514 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200515 Display *dpy;
Kristian Høgsbergf9721152010-07-19 14:57:59 -0400516 int scr;
Kristian Høgsbergac3e8382007-05-15 15:17:30 -0400517
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200518 __GLXDRIscreen *driScreen;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000519#endif
520
521 /**
Kristian Høgsberg6c533ea2007-10-16 16:07:47 -0400522 * Linked list of glx visuals and fbconfigs for this screen.
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000523 */
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400524 struct glx_config *visuals, *configs;
Ian Romanickc39bf5e2005-07-24 06:29:14 +0000525
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000526 /**
527 * Per-screen dynamic GLX extension tracking. The \c direct_support
528 * field only contains enough bits for 64 extensions. Should libGL
529 * ever need to track more than 64 GLX extensions, we can safely grow
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400530 * this field. The \c struct glx_screen structure is not used outside
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000531 * libGL.
532 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200533 /*@{ */
534 unsigned char direct_support[8];
535 GLboolean ext_list_first_time;
536 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000537
Kristian Høgsbergaceccda2007-05-10 15:52:22 -0400538};
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000539
540/**
541 * Per display private data. One of these records exists for each display
542 * that is using the OpenGL (GLX) extension.
543 */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400544struct glx_display
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200545{
Kristian Høgsbergab434f62010-07-22 21:11:02 -0400546 /* The extension protocol codes */
547 XExtCodes *codes;
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400548 struct glx_display *next;
Kristian Høgsbergab434f62010-07-22 21:11:02 -0400549
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000550 /**
551 * Back pointer to the display
552 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200553 Display *dpy;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000554
555 /**
556 * The \c majorOpcode is common to all connections to the same server.
557 * It is also copied into the context structure.
558 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200559 int majorOpcode;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000560
561 /**
562 * \name Server Version
563 *
564 * Major and minor version returned by the server during initialization.
565 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200566 /*@{ */
567 int majorVersion, minorVersion;
568 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000569
570 /**
571 * \name Storage for the servers GLX vendor and versions strings.
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200572 *
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000573 * These are the same for all screens on this display. These fields will
574 * be filled in on demand.
575 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200576 /*@{ */
577 const char *serverGLXvendor;
578 const char *serverGLXversion;
579 /*@} */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000580
581 /**
582 * Configurations of visuals for all screens on this display.
583 * Also, per screen data which now includes the server \c GLX_EXTENSION
584 * string.
585 */
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400586 struct glx_screen **screens;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000587
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700588#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberge3e81962010-07-19 21:15:50 -0400589 __glxHashTable *drawHash;
590
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000591 /**
592 * Per display direct rendering interface functions and data.
593 */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200594 __GLXDRIdisplay *driswDisplay;
595 __GLXDRIdisplay *driDisplay;
596 __GLXDRIdisplay *dri2Display;
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000597#endif
598};
599
Kristian Høgsbergf9721152010-07-19 14:57:59 -0400600extern int
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400601glx_screen_init(struct glx_screen *psc,
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400602 int screen, struct glx_display * priv);
Kristian Høgsbergf9721152010-07-19 14:57:59 -0400603
Kristian Høgsbergc1cbdbf2010-07-20 07:43:50 -0400604#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberg3750ebd2010-07-19 09:37:07 -0400605extern __GLXDRIdrawable *
606dri2GetGlxDrawableFromXDrawableId(Display *dpy, XID id);
Kristian Høgsbergc1cbdbf2010-07-20 07:43:50 -0400607#endif
Kristian Høgsbergaceccda2007-05-10 15:52:22 -0400608
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400609extern GLubyte *__glXFlushRenderBuffer(struct glx_context *, GLubyte *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000610
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400611extern void __glXSendLargeChunk(struct glx_context * gc, GLint requestNumber,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200612 GLint totalRequests,
613 const GLvoid * data, GLint dataLen);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000614
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400615extern void __glXSendLargeCommand(struct glx_context *, const GLvoid *, GLint,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200616 const GLvoid *, GLint);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000617
618/* Initialize the GLX extension for dpy */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400619extern struct glx_display *__glXInitialize(Display *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000620
Brian Pauldf2c9422008-07-11 15:43:52 -0600621extern void __glXPreferEGL(int state);
622
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000623/************************************************************************/
624
625extern int __glXDebug;
626
627/* This is per-thread storage in an MT environment */
RALOVICH, Kristóf8363dff2009-07-23 17:58:08 +0200628#if defined( PTHREADS )
Ian Romanick02986cb2005-04-18 16:59:53 +0000629
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400630extern void __glXSetCurrentContext(struct glx_context * c);
Ian Romanick02986cb2005-04-18 16:59:53 +0000631
632# if defined( GLX_USE_TLS )
633
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200634extern __thread void *__glX_tls_Context
635 __attribute__ ((tls_model("initial-exec")));
Ian Romanick02986cb2005-04-18 16:59:53 +0000636
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200637# define __glXGetCurrentContext() __glX_tls_Context
Ian Romanick02986cb2005-04-18 16:59:53 +0000638
639# else
640
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400641extern struct glx_context *__glXGetCurrentContext(void);
Ian Romanick02986cb2005-04-18 16:59:53 +0000642
643# endif /* defined( GLX_USE_TLS ) */
644
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000645#else
Ian Romanick02986cb2005-04-18 16:59:53 +0000646
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400647extern struct glx_context *__glXcurrentContext;
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200648#define __glXGetCurrentContext() __glXcurrentContext
649#define __glXSetCurrentContext(gc) __glXcurrentContext = gc
Ian Romanick02986cb2005-04-18 16:59:53 +0000650
RALOVICH, Kristóf8363dff2009-07-23 17:58:08 +0200651#endif /* defined( PTHREADS ) */
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000652
George Sapountzisdf04ffb2008-04-18 17:28:34 +0300653extern void __glXSetCurrentContextNull(void);
654
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000655
656/*
657** Global lock for all threads in this address space using the GLX
658** extension
659*/
RALOVICH, Kristóf8363dff2009-07-23 17:58:08 +0200660#if defined( PTHREADS )
Ian Romanick02986cb2005-04-18 16:59:53 +0000661extern pthread_mutex_t __glXmutex;
662#define __glXLock() pthread_mutex_lock(&__glXmutex)
663#define __glXUnlock() pthread_mutex_unlock(&__glXmutex)
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000664#else
665#define __glXLock()
666#define __glXUnlock()
667#endif
668
669/*
670** Setup for a command. Initialize the extension for dpy if necessary.
671*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200672extern CARD8 __glXSetupForCommand(Display * dpy);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000673
674/************************************************************************/
675
676/*
677** Data conversion and packing support.
678*/
679
Ian Romanick5f1f2292005-01-07 02:39:09 +0000680extern const GLuint __glXDefaultPixelStore[9];
681
682/* Send an image to the server using RenderLarge. */
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400683extern void __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200684 GLint width, GLint height, GLint depth,
685 GLenum format, GLenum type,
686 const GLvoid * src, GLubyte * pc,
687 GLubyte * modes);
Ian Romanick5f1f2292005-01-07 02:39:09 +0000688
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000689/* Return the size, in bytes, of some pixel data */
Ian Romanick5f1f2292005-01-07 02:39:09 +0000690extern GLint __glImageSize(GLint, GLint, GLint, GLenum, GLenum, GLenum);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000691
692/* Return the number of elements per group of a specified format*/
693extern GLint __glElementsPerGroup(GLenum format, GLenum type);
694
695/* Return the number of bytes per element, based on the element type (other
696** than GL_BITMAP).
697*/
698extern GLint __glBytesPerElement(GLenum type);
699
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000700/*
701** Fill the transport buffer with the data from the users buffer,
702** applying some of the pixel store modes (unpack modes) to the data
703** first. As a side effect of this call, the "modes" field is
704** updated to contain the modes needed by the server to decode the
705** sent data.
706*/
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400707extern void __glFillImage(struct glx_context *, GLint, GLint, GLint, GLint, GLenum,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200708 GLenum, const GLvoid *, GLubyte *, GLubyte *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000709
710/* Copy map data with a stride into a packed buffer */
711extern void __glFillMap1f(GLint, GLint, GLint, const GLfloat *, GLubyte *);
712extern void __glFillMap1d(GLint, GLint, GLint, const GLdouble *, GLubyte *);
713extern void __glFillMap2f(GLint, GLint, GLint, GLint, GLint,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200714 const GLfloat *, GLfloat *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000715extern void __glFillMap2d(GLint, GLint, GLint, GLint, GLint,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200716 const GLdouble *, GLdouble *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000717
718/*
719** Empty an image out of the reply buffer into the clients memory applying
720** the pack modes to pack back into the clients requested format.
721*/
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400722extern void __glEmptyImage(struct glx_context *, GLint, GLint, GLint, GLint, GLenum,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200723 GLenum, const GLubyte *, GLvoid *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000724
725
726/*
Kristof Raloviche2060342008-08-20 15:18:38 -0600727** Allocate and Initialize Vertex Array client state, and free.
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000728*/
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400729extern void __glXInitVertexArrayState(struct glx_context *);
730extern void __glXFreeVertexArrayState(struct glx_context *);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000731
732/*
733** Inform the Server of the major and minor numbers and of the client
734** libraries extension string.
735*/
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200736extern void __glXClientInfo(Display * dpy, int opcode);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000737
738/************************************************************************/
739
740/*
741** Declarations that should be in Xlib
742*/
743#ifdef __GL_USE_OUR_PROTOTYPES
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200744extern void _XFlush(Display *);
745extern Status _XReply(Display *, xReply *, int, Bool);
746extern void _XRead(Display *, void *, long);
747extern void _XSend(Display *, const void *, long);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000748#endif
749
750
Kristian Høgsberg6ddf66e2010-07-28 10:07:52 -0400751extern void __glXInitializeVisualConfigFromTags(struct glx_config * config,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200752 int count, const INT32 * bp,
753 Bool tagged_only,
754 Bool fbconfig_style_tags);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000755
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200756extern char *__glXQueryServerString(Display * dpy, int opcode,
757 CARD32 screen, CARD32 name);
758extern char *__glXGetString(Display * dpy, int opcode,
759 CARD32 screen, CARD32 name);
RALOVICH, Kristóf54444242008-10-18 16:53:08 +0200760
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000761extern char *__glXstrdup(const char *str);
762
763
764extern const char __glXGLClientVersion[];
765extern const char __glXGLClientExtensions[];
766
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000767/* Get the unadjusted system time */
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200768extern int __glXGetUST(int64_t * ust);
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000769
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500770extern GLboolean __glXGetMscRateOML(Display * dpy, GLXDrawable drawable,
RALOVICH, Kristóf08962682009-08-12 12:41:22 +0200771 int32_t * numerator,
772 int32_t * denominator);
Ian Romanickfc5b57b2006-08-29 15:38:19 +0000773
Jeremy Huddleston80b280d2010-04-02 01:35:19 -0700774#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
Kristian Høgsberg7a66e542010-07-21 14:09:49 -0400775extern GLboolean
776__glxGetMscRate(__GLXDRIdrawable *glxDraw,
777 int32_t * numerator, int32_t * denominator);
Robert Bragg7a9329b2010-01-20 03:01:14 +0000778
779/* So that dri2.c:DRI2WireToEvent() can access
780 * glx_info->codes->first_event */
781XExtDisplayInfo *__glXFindDisplay (Display *dpy);
Kristian Høgsberg97ec6072010-02-15 11:12:28 -0500782
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400783extern void
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400784GarbageCollectDRIDrawables(struct glx_screen *psc);
Kristian Høgsbergc796bb02010-07-22 23:45:18 -0400785
Kristian Høgsberg97ec6072010-02-15 11:12:28 -0500786extern __GLXDRIdrawable *
Kristian Høgsbergeeaab202010-07-22 22:36:37 -0400787GetGLXDRIDrawable(Display *dpy, GLXDrawable drawable);
Kristian Høgsberg97ec6072010-02-15 11:12:28 -0500788
Kristian Høgsberg286ce272007-11-06 14:34:15 -0500789#endif
790
Kristian Høgsberg66fc35c2010-07-28 10:28:43 -0400791extern struct glx_screen *
Kristian Høgsbergc356f582010-07-28 11:16:00 -0400792indirect_create_screen(int screen, struct glx_display * priv);
Kristian Høgsberg6ec39db2010-07-23 16:15:31 -0400793
Adam Jacksoncb3610e2004-10-25 21:09:16 +0000794#endif /* !__GLX_client_h__ */