glxclient.h revision 3750ebd540510324ef5ada769537ae05309adadb
1cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
2dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
3dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
4dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson *
5dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * Permission is hereby granted, free of charge, to any person obtaining a
6dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * copy of this software and associated documentation files (the "Software"),
7dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * to deal in the Software without restriction, including without limitation
8dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * and/or sell copies of the Software, and to permit persons to whom the
10dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * Software is furnished to do so, subject to the following conditions:
11dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson *
12dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * The above copyright notice including the dates of first publication and
13dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * either this permission notice or a reference to
14dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * http://oss.sgi.com/projects/FreeB/
15dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * shall be included in all copies or substantial portions of the Software.
16dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson *
17dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
22dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * SOFTWARE.
24dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson *
25dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * Except as contained in this notice, the name of Silicon Graphics, Inc.
26dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * shall not be used in advertising or otherwise to promote the sale, use or
27dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * other dealings in this Software without prior written authorization from
28dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson * Silicon Graphics, Inc.
29dc8058c3370588bfcad49fadace1691da47d58cdAdam Jackson */
30cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
31cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
32cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * \file glxclient.h
33cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * Direct rendering support added by Precision Insight, Inc.
34cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson *
35cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * \author Kevin E. Martin <kevin@precisioninsight.com>
36cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
37cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
38cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#ifndef _GLX_client_h_
39cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#define _GLX_client_h_
40cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include <X11/Xproto.h>
41cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include <X11/Xlibint.h>
427a9329ba99fe1242c07fbf4fd04e7a4dbeba2e72Robert Bragg#include <X11/extensions/extutil.h>
43cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#define GLX_GLXEXT_PROTOTYPES
44cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include <GL/glx.h>
45cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include <GL/glxext.h>
46cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include <string.h>
47cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include <stdlib.h>
48cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include <stdio.h>
49ad919c30df71bc191be6f107385638b456da6a0fAdam Jackson#ifdef WIN32
50ad919c30df71bc191be6f107385638b456da6a0fAdam Jackson#include <stdint.h>
51ad919c30df71bc191be6f107385638b456da6a0fAdam Jackson#endif
52cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include "GL/glxint.h"
53cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include "GL/glxproto.h"
54cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#include "GL/internal/glcore.h"
554eb95ce807222bc31019b69156fab44aac72cfe7Brian#include "glapi/glapitable.h"
564a22ae8d446855d839cc199df8eb1b057045cb88Kristian Høgsberg#include "glxhash.h"
578363dff251fc38b044447bcb173d960b03073974RALOVICH, Kristóf#if defined( PTHREADS )
5802986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick# include <pthread.h>
59cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif
60cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
61ec770150edff9a5955f52e538adc4bac94c92cadJeremy Huddleston#include "glxextensions.h"
62ec770150edff9a5955f52e538adc4bac94c92cadJeremy Huddleston
63a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul
64a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul/* If we build the library with gcc's -fvisibility=hidden flag, we'll
65a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul * use the PUBLIC macro to mark functions that are to be exported.
66a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul *
670896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf * We also need to define a USED attribute, so the optimizer doesn't
68a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul * inline a static function that we later use in an alias. - ajax
69a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul */
70016fc30839f0fb67bb37d4a7353a7e38749deab5Ian Romanick#if defined(__GNUC__)
71a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul#  define PUBLIC __attribute__((visibility("default")))
72a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul#  define USED __attribute__((used))
73a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul#else
74a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul#  define PUBLIC
75a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul#  define USED
76a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul#endif
77a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul
78a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul
79a25e1aa0aab6bd278eefa7c0748b491c9c6ae62cBrian Paul
800896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define GLX_MAJOR_VERSION 1       /* current version numbers */
810896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define GLX_MINOR_VERSION 4
82cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
83cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#define __GLX_MAX_TEXTURE_UNITS 32
84cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
85aceccda56b08338e217991e54607f1c9f18fc3e6Kristian Høgsbergtypedef struct __GLXscreenConfigsRec __GLXscreenConfigs;
86cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksontypedef struct __GLXcontextRec __GLXcontext;
87aceccda56b08338e217991e54607f1c9f18fc3e6Kristian Høgsbergtypedef struct __GLXdrawableRec __GLXdrawable;
88cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksontypedef struct __GLXdisplayPrivateRec __GLXdisplayPrivate;
89cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksontypedef struct _glapi_table __GLapi;
90cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
91cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/************************************************************************/
92cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
93cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#ifdef GLX_DIRECT_RENDERING
94cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
950896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define containerOf(ptr, type, member)              \
96aceccda56b08338e217991e54607f1c9f18fc3e6Kristian Høgsberg    (type *)( (char *)ptr - offsetof(type,member) )
97aceccda56b08338e217991e54607f1c9f18fc3e6Kristian Høgsberg
9880b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddlestonextern void DRI_glXUseXFont(Font font, int first, int count, int listbase);
9980b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston
10080b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#endif
101cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
10280b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
103cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
10480b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#include <GL/internal/dri_interface.h>
105cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
106cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
107cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * Display dependent methods.  This structure is initialized during the
108cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * \c driCreateDisplay call.
109cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
110425f9ed44e576aef27f7ab98968043f7f180d0fdKristian Høgsbergtypedef struct __GLXDRIdisplayRec __GLXDRIdisplay;
11192d2a78f8d2d56cfadb4cb5323adec32fe73e353Kristian Høgsbergtypedef struct __GLXDRIscreenRec __GLXDRIscreen;
11220b9230ce1b96ca246850a8088caeffc3f391a0cKristian Høgsbergtypedef struct __GLXDRIdrawableRec __GLXDRIdrawable;
113020c64b2cf2973b5cb41e233d2bfbd85f1b699f7Kristian Høgsbergtypedef struct __GLXDRIcontextRec __GLXDRIcontext;
11492d2a78f8d2d56cfadb4cb5323adec32fe73e353Kristian Høgsberg
115e82dd8c6e1fa2fff5b960de26961080ba5e9651dKristian Høgsberg#include "glxextensions.h"
116e82dd8c6e1fa2fff5b960de26961080ba5e9651dKristian Høgsberg
1170896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófstruct __GLXDRIdisplayRec
1180896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
119cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
120cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Method to destroy the private DRI display data.
121cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
1220896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   void (*destroyDisplay) (__GLXDRIdisplay * display);
123a1ea6f6198d80f716936a308cfab235f18a014e1Kristian Høgsberg
1240896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXDRIscreen *(*createScreen) (__GLXscreenConfigs * psc, int screen,
1250896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                    __GLXdisplayPrivate * priv);
12692d2a78f8d2d56cfadb4cb5323adec32fe73e353Kristian Høgsberg};
12792d2a78f8d2d56cfadb4cb5323adec32fe73e353Kristian Høgsberg
128daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnesstruct __GLXDRIscreenRec {
129daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes
130daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   void (*destroyScreen)(__GLXscreenConfigs *psc);
131daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes
132daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   __GLXDRIcontext *(*createContext)(__GLXscreenConfigs *psc,
133daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes				     const __GLcontextModes *mode,
134daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes				     GLXContext gc,
135daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes				     GLXContext shareList, int renderType);
136daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes
137daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   __GLXDRIdrawable *(*createDrawable)(__GLXscreenConfigs *psc,
138daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes				       XID drawable,
139daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes				       GLXDrawable glxDrawable,
140daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes				       const __GLcontextModes *modes);
141daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes
142daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   int64_t (*swapBuffers)(__GLXDRIdrawable *pdraw, int64_t target_msc,
143daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes			  int64_t divisor, int64_t remainder);
144daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   void (*copySubBuffer)(__GLXDRIdrawable *pdraw,
145daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes			 int x, int y, int width, int height);
146daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   void (*waitX)(__GLXDRIdrawable *pdraw);
147daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   void (*waitGL)(__GLXDRIdrawable *pdraw);
148daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   int (*getDrawableMSC)(__GLXscreenConfigs *psc, __GLXDRIdrawable *pdraw,
149daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes			 int64_t *ust, int64_t *msc, int64_t *sbc);
150daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   int (*waitForMSC)(__GLXDRIdrawable *pdraw, int64_t target_msc,
151daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes		     int64_t divisor, int64_t remainder, int64_t *ust,
152daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes		     int64_t *msc, int64_t *sbc);
153daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes   int (*waitForSBC)(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust,
154daf7fe69f7bd0caa955d30b43fc35b7ce0069b6bJesse Barnes		     int64_t *msc, int64_t *sbc);
155efc82e7c703f9160cfdbe6d97e166ca6f5e75d86Jesse Barnes   void (*setSwapInterval)(__GLXDRIdrawable *pdraw, int interval);
156efc82e7c703f9160cfdbe6d97e166ca6f5e75d86Jesse Barnes   int (*getSwapInterval)(__GLXDRIdrawable *pdraw);
15720b9230ce1b96ca246850a8088caeffc3f391a0cKristian Høgsberg};
15820b9230ce1b96ca246850a8088caeffc3f391a0cKristian Høgsberg
1590896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófstruct __GLXDRIcontextRec
1600896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
1610896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   void (*destroyContext) (__GLXDRIcontext * context,
1620896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                           __GLXscreenConfigs * psc, Display * dpy);
1630896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf     Bool(*bindContext) (__GLXDRIcontext * context, __GLXDRIdrawable * pdraw,
1640896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                         __GLXDRIdrawable * pread);
1650896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf
1660896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   void (*unbindContext) (__GLXDRIcontext * context);
167020c64b2cf2973b5cb41e233d2bfbd85f1b699f7Kristian Høgsberg};
168020c64b2cf2973b5cb41e233d2bfbd85f1b699f7Kristian Høgsberg
1690896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófstruct __GLXDRIdrawableRec
1700896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
1710896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   void (*destroyDrawable) (__GLXDRIdrawable * drawable);
1729110425c72e45f618131b559eba883fd6c5536b4Kristian Høgsberg
1730896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   XID xDrawable;
1740896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   XID drawable;
1750896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXscreenConfigs *psc;
1760896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLenum textureTarget;
1770896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __DRIdrawable *driDrawable;
1780896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLenum textureFormat;        /* EXT_texture_from_pixmap support */
179f8d81c31cee30821da3aab331a57f484f6a07a5dNick Bowler   unsigned long eventMask;
180cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson};
181cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
182cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
183cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Function to create and DRI display data and initialize the display
184cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** dependent methods.
185cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
1860896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern __GLXDRIdisplay *driswCreateDisplay(Display * dpy);
1870896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern __GLXDRIdisplay *driCreateDisplay(Display * dpy);
1880896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern __GLXDRIdisplay *dri2CreateDisplay(Display * dpy);
18961d26bc82e7c4100acfb551cbb0ba9d84bbc4ba5Francisco Jerezextern void dri2InvalidateBuffers(Display *dpy, XID drawable);
19061d26bc82e7c4100acfb551cbb0ba9d84bbc4ba5Francisco Jerez
191cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
192cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
193cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Functions to obtain driver configuration information from a direct
194cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** rendering client application
195cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
1960896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern const char *glXGetScreenDriver(Display * dpy, int scrNum);
197cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
1980896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern const char *glXGetDriverConfig(const char *driverName);
199cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
200cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif
201cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
202cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/************************************************************************/
203cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
204cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#define __GL_CLIENT_ATTRIB_STACK_DEPTH 16
205cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
2060896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóftypedef struct __GLXpixelStoreModeRec
2070896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
2080896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLboolean swapEndian;
2090896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLboolean lsbFirst;
2100896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint rowLength;
2110896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint imageHeight;
2120896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint imageDepth;
2130896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint skipRows;
2140896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint skipPixels;
2150896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint skipImages;
2160896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint alignment;
217cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson} __GLXpixelStoreMode;
218cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
219cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
2200896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóftypedef struct __GLXattributeRec
2210896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
2220896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint mask;
223cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
224cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
225fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * Pixel storage state.  Most of the pixel store mode state is kept
226fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * here and used by the client code to manage the packing and
227fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * unpacking of data sent to/received from the server.
228cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
2290896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXpixelStoreMode storePack, storeUnpack;
230cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
231cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
232fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * Is EXT_vertex_array / GL 1.1 DrawArrays protocol specifically
233fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * disabled?
234cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
2350896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLboolean NoDrawArraysProtocol;
2360896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf
237cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
238fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * Vertex Array storage state.  The vertex array component
239fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * state is stored here and is used to manage the packing of
240fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick     * DrawArrays data sent to the server.
241cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
2420896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   struct array_state_vector *array_state;
243cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson} __GLXattribute;
244cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
2450896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóftypedef struct __GLXattributeMachineRec
2460896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
2470896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXattribute *stack[__GL_CLIENT_ATTRIB_STACK_DEPTH];
2480896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXattribute **stackPointer;
249cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson} __GLXattributeMachine;
250cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
251643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsbergstruct glx_context_vtable {
252643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg   void (*bind_tex_image)(Display * dpy,
253643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg			  GLXDrawable drawable,
254643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg			  int buffer, const int *attrib_list);
255643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg   void (*release_tex_image)(Display * dpy, GLXDrawable drawable, int buffer);
256643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg
257643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg};
258643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg
259cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
260cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * GLX state that needs to be kept on the client.  One of these records
261cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * exist for each context that has been made current by this client.
262cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
2630896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófstruct __GLXcontextRec
2640896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
265cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
266cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \name Drawing command buffer.
267cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     *
268cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Drawing commands are packed into this buffer before being sent as a
269cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * single GLX protocol request.  The buffer is sent when it overflows or
270cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * is flushed by \c __glXFlushRenderBuffer.  \c pc is the next location
271cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * in the buffer to be filled.  \c limit is described above in the buffer
272cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * slop discussion.
273cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     *
274cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Commands that require large amounts of data to be transfered will
275cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * also use this buffer to hold a header that describes the large
276cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * command.
277cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     *
278cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * These must be the first 6 fields since they are static initialized
279cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * in the dummy context in glxext.c
280cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
2810896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@{ */
2820896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *buf;
2830896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *pc;
2840896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *limit;
2850896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *bufEnd;
2860896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLint bufSize;
2870896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@} */
288cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
289cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
290cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * The XID of this rendering context.  When the context is created a
291cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * new XID is allocated.  This is set to None when the context is
292cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * destroyed but is still current to some thread. In this case the
293cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * context will be freed on next MakeCurrent.
294cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
2950896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   XID xid;
296cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
297cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
298cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * The XID of the \c shareList context.
299cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3000896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   XID share_xid;
301cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
302cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
303cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Screen number.
304cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3050896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLint screen;
3060896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXscreenConfigs *psc;
307cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
308cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
309cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \c GL_TRUE if the context was created with ImportContext, which
310cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * means the server-side context was created by another X client.
311cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3120896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLboolean imported;
313cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
314cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
315cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * The context tag returned by MakeCurrent when this context is made
316cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * current. This tag is used to identify the context that a thread has
317cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * current so that proper server context management can be done.  It is
318cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * used for all context specific commands (i.e., \c Render, \c RenderLarge,
319cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \c WaitX, \c WaitGL, \c UseXFont, and \c MakeCurrent (for the old
320cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * context)).
321cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3220896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLXContextTag currentContextTag;
323cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
324cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
325cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \name Rendering mode
326cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     *
327cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * The rendering mode is kept on the client as well as the server.
328cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * When \c glRenderMode is called, the buffer associated with the
329cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * previous rendering mode (feedback or select) is filled.
330cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3310896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@{ */
3320896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLenum renderMode;
3330896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLfloat *feedbackBuf;
3340896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLuint *selectBuf;
3350896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@} */
336cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
337cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
338cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * This is \c GL_TRUE if the pixel unpack modes are such that an image
339cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * can be unpacked from the clients memory by just copying.  It may
340cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * still be true that the server will have to do some work.  This
341cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * just promises that a straight copy will fetch the correct bytes.
342cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3430896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLboolean fastImageUnpack;
344cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
345cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
346cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Fill newImage with the unpacked form of \c oldImage getting it
347cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * ready for transport to the server.
348cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3490896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   void (*fillImage) (__GLXcontext *, GLint, GLint, GLint, GLint, GLenum,
3500896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                      GLenum, const GLvoid *, GLubyte *, GLubyte *);
351cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
352cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
35329206ae569c4c784ec6884084b4bd8631f66b866Ian Romanick     * Client side attribs.
354cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3550896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXattributeMachine attributes;
356cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
357cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
358cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Client side error code.  This is set when client side gl API
359cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * routines need to set an error because of a bad enumerant or
360cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * running out of memory, etc.
361cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3620896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLenum error;
363cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
364cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
365ae2c31ed669abab66a8c4b68d8d746e94b9ebf28Xiang, Haihao     * Whether this context does direct rendering.
366ae2c31ed669abab66a8c4b68d8d746e94b9ebf28Xiang, Haihao     */
3670896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   Bool isDirect;
368ae2c31ed669abab66a8c4b68d8d746e94b9ebf28Xiang, Haihao
369ae2c31ed669abab66a8c4b68d8d746e94b9ebf28Xiang, Haihao    /**
370cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \c dpy of current display for this context.  Will be \c NULL if not
371cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * current to any display, or if this is the "dummy context".
372cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3730896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   Display *currentDpy;
374cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
375cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
376cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * The current drawable for this context.  Will be None if this
377cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * context is not current to any drawable.  currentReadable is below.
378cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3790896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLXDrawable currentDrawable;
380cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
381cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
382cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \name GL Constant Strings
383cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     *
384cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Constant strings that describe the server implementation
385cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * These pertain to GL attributes, not to be confused with
386cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * GLX versioning attributes.
387cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3880896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@{ */
3890896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *vendor;
3900896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *renderer;
3910896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *version;
3920896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLubyte *extensions;
3930896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@} */
394cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
395cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
396cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Record the dpy this context was created on for later freeing
397cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
3980896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   Display *createDpy;
399cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
400cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
401cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Maximum small render command size.  This is the smaller of 64k and
402cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * the size of the above buffer.
403cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
4040896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLint maxSmallRenderCommandSize;
405cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
406cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
407cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Major opcode for the extension.  Copied here so a lookup isn't
408cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * needed.
409cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
4100896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLint majorOpcode;
411cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
412cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
413286ce2719395485ffafb38097fa2551b066acd96Kristian Høgsberg     * Pointer to the mode used to create this context.
414cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
4150896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __GLcontextModes *mode;
4164a22ae8d446855d839cc199df8eb1b057045cb88Kristian Høgsberg
417286ce2719395485ffafb38097fa2551b066acd96Kristian Høgsberg#ifdef GLX_DIRECT_RENDERING
41880b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#ifdef GLX_USE_APPLEGL
41980b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston   void *driContext;
42080b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston   Bool do_destroy;
42180b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#else
4220896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXDRIcontext *driContext;
4230896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __DRIcontext *__driContext;
424cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif
42580b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#endif
426cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
427cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
428cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * The current read-drawable for this context.  Will be None if this
429cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * context is not current to any drawable.
430cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     *
431cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \since Internal API version 20030606.
432cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
4330896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLXDrawable currentReadable;
434cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
4350896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /**
436cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * Pointer to client-state data that is private to libGL.  This is only
437cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * used for indirect rendering contexts.
438cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    *
439cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * No internal API version change was made for this change.  Client-side
440cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * drivers should NEVER use this data or even care that it exists.
441cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    */
4420896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   void *client_state_private;
443fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick
444cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson   /**
445cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * Stored value for \c glXQueryContext attribute \c GLX_RENDER_TYPE.
446cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    */
447cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson   int renderType;
4480896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf
449cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson   /**
450cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * \name Raw server GL version
451cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    *
452cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * True core GL version supported by the server.  This is the raw value
453cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * returned by the server, and it may not reflect what is actually
454cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    * supported (or reported) by the client-side library.
455cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    */
4560896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@{ */
457cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson   int server_major;        /**< Major version number. */
458cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson   int server_minor;        /**< Minor version number. */
4590896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@} */
460fdb07636f2e6324c5250cd5ee97778b7f5933beaIan Romanick
46196fd3df59a161957876bfd7a49992e5a2130370cThomas Hellstrom   /**
46296fd3df59a161957876bfd7a49992e5a2130370cThomas Hellstrom    * Thread ID we're currently current in. Zero if none.
46396fd3df59a161957876bfd7a49992e5a2130370cThomas Hellstrom    */
46496fd3df59a161957876bfd7a49992e5a2130370cThomas Hellstrom   unsigned long thread_id;
46596fd3df59a161957876bfd7a49992e5a2130370cThomas Hellstrom
4660896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   char gl_extension_bits[__GL_EXT_BYTES];
467643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg
468643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg   const struct glx_context_vtable *vtable;
469cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson};
470cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
4710896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define __glXSetError(gc,code)  \
4720896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   if (!(gc)->error) {          \
4730896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf      (gc)->error = code;       \
4740896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   }
475cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
476cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern void __glFreeAttributeState(__GLXcontext *);
477cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
478cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/************************************************************************/
479cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
480cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
481cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * The size of the largest drawing command known to the implementation
482cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * that will use the GLXRender GLX command.  In this case it is
483cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * \c glPolygonStipple.
484cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
4850896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define __GLX_MAX_SMALL_RENDER_CMD_SIZE 156
486cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
487cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
488cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * To keep the implementation fast, the code uses a "limit" pointer
489cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * to determine when the drawing command buffer is too full to hold
490cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * another fixed size command.  This constant defines the amount of
491cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * space that must always be available in the drawing command buffer
492cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * at all times for the implementation to work.  It is important that
493cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * the number be just large enough, but not so large as to reduce the
494cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * efficacy of the buffer.  The "+32" is just to keep the code working
495cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * in case somebody counts wrong.
496cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
4970896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define __GLX_BUFFER_LIMIT_SIZE (__GLX_MAX_SMALL_RENDER_CMD_SIZE + 32)
498cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
499cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
500cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * This implementation uses a smaller threshold for switching
501cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * to the RenderLarge protocol than the protcol requires so that
502cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * large copies don't occur.
503cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
5040896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define __GLX_RENDER_CMD_SIZE_LIMIT 4096
505cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
506cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
507cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * One of these records exists per screen of the display.  It contains
508cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * a pointer to the config data for that screen (if the screen supports GL).
509cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
5100896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófstruct __GLXscreenConfigsRec
5110896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
512cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
513cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * GLX extension string reported by the X-server.
514cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
5150896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const char *serverGLXexts;
516cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
517cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
518cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * GLX extension string to be reported to applications.  This is the
519cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * set of extensions that the application can actually use.
520cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
5210896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   char *effectiveGLXexts;
522cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
523643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg   /**
524643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg    * Context vtable to use for direct contexts on this screen
525643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg    */
526643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg   const struct glx_context_vtable *direct_context_vtable;
527643b2af0203764cb9f0a5b9e082937ab3f243523Kristian Høgsberg
52880b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
529cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
530cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Per screen direct rendering interface functions and data.
531cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
5320896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __DRIscreen *__driScreen;
5330896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIcoreExtension *core;
5340896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIlegacyExtension *legacy;
5350896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIswrastExtension *swrast;
5360896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIdri2Extension *dri2;
5370896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __glxHashTable *drawHash;
5380896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   Display *dpy;
5390896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   int scr, fd;
5400896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   void *driver;
541ac3e838fa748c8c8a6ffc04d1ab13da71f75f103Kristian Høgsberg
5420896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXDRIscreen *driScreen;
54353dc86363665b9b22f042c5d950b7de0ed02b4c8Kristian Høgsberg
5440896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIconfig **driver_configs;
545ce0ad53281f236424a72ae021f293a3a5ca69217RALOVICH, Kristóf
546ac3e838fa748c8c8a6ffc04d1ab13da71f75f103Kristian Høgsberg#ifdef __DRI_COPY_SUB_BUFFER
5470896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIcopySubBufferExtension *driCopySubBuffer;
548ac3e838fa748c8c8a6ffc04d1ab13da71f75f103Kristian Høgsberg#endif
549ac3e838fa748c8c8a6ffc04d1ab13da71f75f103Kristian Høgsberg
550efaf90b03e8b69e04909bce071f8ef6b65cc0e9dKristian Høgsberg#ifdef __DRI_SWAP_CONTROL
5510896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIswapControlExtension *swapControl;
552efaf90b03e8b69e04909bce071f8ef6b65cc0e9dKristian Høgsberg#endif
553efaf90b03e8b69e04909bce071f8ef6b65cc0e9dKristian Høgsberg
55478a6aa57a0155d72280dd91c05513c847bf76f3bKristian Høgsberg#ifdef __DRI_ALLOCATE
5550896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIallocateExtension *allocate;
55678a6aa57a0155d72280dd91c05513c847bf76f3bKristian Høgsberg#endif
55778a6aa57a0155d72280dd91c05513c847bf76f3bKristian Høgsberg
558a7a0a2beb54dcb78d7e0ab64cf2f5a6ede8191a4Kristian Høgsberg#ifdef __DRI_FRAME_TRACKING
5590896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRIframeTrackingExtension *frameTracking;
560a7a0a2beb54dcb78d7e0ab64cf2f5a6ede8191a4Kristian Høgsberg#endif
561a7a0a2beb54dcb78d7e0ab64cf2f5a6ede8191a4Kristian Høgsberg
562106a6f29bbdc71982afd629bdf89369cefd1459eKristian Høgsberg#ifdef __DRI_MEDIA_STREAM_COUNTER
5630896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRImediaStreamCounterExtension *msc;
564e82dd8c6e1fa2fff5b960de26961080ba5e9651dKristian Høgsberg#endif
565e82dd8c6e1fa2fff5b960de26961080ba5e9651dKristian Høgsberg
566e82dd8c6e1fa2fff5b960de26961080ba5e9651dKristian Høgsberg#ifdef __DRI_TEX_BUFFER
5670896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRItexBufferExtension *texBuffer;
568106a6f29bbdc71982afd629bdf89369cefd1459eKristian Høgsberg#endif
569106a6f29bbdc71982afd629bdf89369cefd1459eKristian Høgsberg
57065562453fba69e862d5e3b381d18db9c40d9353cAlan Hourihane#ifdef __DRI2_FLUSH
5710896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const __DRI2flushExtension *f;
57265562453fba69e862d5e3b381d18db9c40d9353cAlan Hourihane#endif
57365562453fba69e862d5e3b381d18db9c40d9353cAlan Hourihane
574234286c0f8b7d30ed49223c648d4c73c1a517ab3Jesse Barnes#ifdef __DRI2_CONFIG_QUERY
575234286c0f8b7d30ed49223c648d4c73c1a517ab3Jesse Barnes   const __DRI2configQueryExtension *config;
576234286c0f8b7d30ed49223c648d4c73c1a517ab3Jesse Barnes#endif
577234286c0f8b7d30ed49223c648d4c73c1a517ab3Jesse Barnes
578cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif
579cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
580cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
5816c533ea2d1953152f7d95d6c984e0d287edb46c2Kristian Høgsberg     * Linked list of glx visuals and  fbconfigs for this screen.
582cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
5830896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLcontextModes *visuals, *configs;
584c39bf5e273a4995a279ae2af59fc29e06ab47e29Ian Romanick
585cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
586cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Per-screen dynamic GLX extension tracking.  The \c direct_support
587cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * field only contains enough bits for 64 extensions.  Should libGL
588cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * ever need to track more than 64 GLX extensions, we can safely grow
589cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * this field.  The \c __GLXscreenConfigs structure is not used outside
590cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * libGL.
591cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
5920896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@{ */
5930896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   unsigned char direct_support[8];
5940896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   GLboolean ext_list_first_time;
5950896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@} */
596cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
597aceccda56b08338e217991e54607f1c9f18fc3e6Kristian Høgsberg};
598cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
599cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/**
600cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * Per display private data.  One of these records exists for each display
601cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson * that is using the OpenGL (GLX) extension.
602cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson */
6030896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófstruct __GLXdisplayPrivateRec
6040896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf{
605cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
606cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Back pointer to the display
607cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
6080896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   Display *dpy;
609cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
610cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
611cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * The \c majorOpcode is common to all connections to the same server.
612cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * It is also copied into the context structure.
613cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
6140896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   int majorOpcode;
615cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
616cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
617cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \name Server Version
618cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     *
619cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Major and minor version returned by the server during initialization.
620cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
6210896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@{ */
6220896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   int majorVersion, minorVersion;
6230896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@} */
624cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
625cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
626cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * \name Storage for the servers GLX vendor and versions strings.
6270896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf     *
628cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * These are the same for all screens on this display. These fields will
629cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * be filled in on demand.
630cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
6310896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@{ */
6320896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const char *serverGLXvendor;
6330896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   const char *serverGLXversion;
6340896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   /*@} */
635cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
636cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
637cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Configurations of visuals for all screens on this display.
638cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Also, per screen data which now includes the server \c GLX_EXTENSION
639cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * string.
640cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
6410896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXscreenConfigs *screenConfigs;
642cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
64380b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
644cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson    /**
645cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     * Per display direct rendering interface functions and data.
646cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson     */
6470896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXDRIdisplay *driswDisplay;
6480896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXDRIdisplay *driDisplay;
6490896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __GLXDRIdisplay *dri2Display;
650cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif
651cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson};
652cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
6533750ebd540510324ef5ada769537ae05309adadbKristian Høgsbergextern __GLXDRIdrawable *
6543750ebd540510324ef5ada769537ae05309adadbKristian Høgsbergdri2GetGlxDrawableFromXDrawableId(Display *dpy, XID id);
655aceccda56b08338e217991e54607f1c9f18fc3e6Kristian Høgsberg
6560896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern GLubyte *__glXFlushRenderBuffer(__GLXcontext *, GLubyte *);
657cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
6580896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glXSendLargeChunk(__GLXcontext * gc, GLint requestNumber,
6590896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                GLint totalRequests,
6600896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                const GLvoid * data, GLint dataLen);
661cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
662cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern void __glXSendLargeCommand(__GLXcontext *, const GLvoid *, GLint,
6630896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                  const GLvoid *, GLint);
664cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
665cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/* Initialize the GLX extension for dpy */
6660896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern __GLXdisplayPrivate *__glXInitialize(Display *);
667cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
668df2c9424d3b625d6e97528c74051257bc5630a67Brian Paulextern void __glXPreferEGL(int state);
669df2c9424d3b625d6e97528c74051257bc5630a67Brian Paul
670cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/************************************************************************/
671cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
672cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern int __glXDebug;
673cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
674cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/* This is per-thread storage in an MT environment */
6758363dff251fc38b044447bcb173d960b03073974RALOVICH, Kristóf#if defined( PTHREADS )
67602986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
6770896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glXSetCurrentContext(__GLXcontext * c);
67802986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
67902986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick# if defined( GLX_USE_TLS )
68002986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
6810896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern __thread void *__glX_tls_Context
6820896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf   __attribute__ ((tls_model("initial-exec")));
68302986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
6840896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#  define __glXGetCurrentContext() __glX_tls_Context
68502986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
68602986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick# else
68702986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
68802986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanickextern __GLXcontext *__glXGetCurrentContext(void);
68902986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
69002986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick# endif /* defined( GLX_USE_TLS ) */
69102986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
692cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#else
69302986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
694cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern __GLXcontext *__glXcurrentContext;
6950896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define __glXGetCurrentContext() __glXcurrentContext
6960896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf#define __glXSetCurrentContext(gc) __glXcurrentContext = gc
69702986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick
6988363dff251fc38b044447bcb173d960b03073974RALOVICH, Kristóf#endif /* defined( PTHREADS ) */
699cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
700df04ffbf025994abd59e26c8439e77bb340ef20bGeorge Sapountzisextern void __glXSetCurrentContextNull(void);
701df04ffbf025994abd59e26c8439e77bb340ef20bGeorge Sapountzis
7020896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glXFreeContext(__GLXcontext *);
703df04ffbf025994abd59e26c8439e77bb340ef20bGeorge Sapountzis
704cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
705cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
706cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Global lock for all threads in this address space using the GLX
707cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** extension
708cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
7098363dff251fc38b044447bcb173d960b03073974RALOVICH, Kristóf#if defined( PTHREADS )
71002986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanickextern pthread_mutex_t __glXmutex;
71102986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick#define __glXLock()    pthread_mutex_lock(&__glXmutex)
71202986cb2cc1b1d47b26a653e9ae0fa508365f616Ian Romanick#define __glXUnlock()  pthread_mutex_unlock(&__glXmutex)
713cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#else
714cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#define __glXLock()
715cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#define __glXUnlock()
716cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif
717cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
718cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
719cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Setup for a command.  Initialize the extension for dpy if necessary.
720cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
7210896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern CARD8 __glXSetupForCommand(Display * dpy);
722cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
723cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/************************************************************************/
724cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
725cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
726cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Data conversion and packing support.
727cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
728cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
7295f1f229f8da255ca9b390da1757ad781978cf619Ian Romanickextern const GLuint __glXDefaultPixelStore[9];
7305f1f229f8da255ca9b390da1757ad781978cf619Ian Romanick
7315f1f229f8da255ca9b390da1757ad781978cf619Ian Romanick/* Send an image to the server using RenderLarge. */
7320896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glXSendLargeImage(__GLXcontext * gc, GLint compsize, GLint dim,
7330896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                GLint width, GLint height, GLint depth,
7340896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                GLenum format, GLenum type,
7350896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                const GLvoid * src, GLubyte * pc,
7360896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                GLubyte * modes);
7375f1f229f8da255ca9b390da1757ad781978cf619Ian Romanick
738cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/* Return the size, in bytes, of some pixel data */
7395f1f229f8da255ca9b390da1757ad781978cf619Ian Romanickextern GLint __glImageSize(GLint, GLint, GLint, GLenum, GLenum, GLenum);
740cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
741cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/* Return the number of elements per group of a specified format*/
742cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern GLint __glElementsPerGroup(GLenum format, GLenum type);
743cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
744cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/* Return the number of bytes per element, based on the element type (other
745cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** than GL_BITMAP).
746cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
747cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern GLint __glBytesPerElement(GLenum type);
748cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
749cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
750cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Fill the transport buffer with the data from the users buffer,
751cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** applying some of the pixel store modes (unpack modes) to the data
752cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** first.  As a side effect of this call, the "modes" field is
753cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** updated to contain the modes needed by the server to decode the
754cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** sent data.
755cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
7560896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glFillImage(__GLXcontext *, GLint, GLint, GLint, GLint, GLenum,
7570896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                          GLenum, const GLvoid *, GLubyte *, GLubyte *);
758cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
759cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/* Copy map data with a stride into a packed buffer */
760cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern void __glFillMap1f(GLint, GLint, GLint, const GLfloat *, GLubyte *);
761cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern void __glFillMap1d(GLint, GLint, GLint, const GLdouble *, GLubyte *);
762cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern void __glFillMap2f(GLint, GLint, GLint, GLint, GLint,
7630896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                          const GLfloat *, GLfloat *);
764cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern void __glFillMap2d(GLint, GLint, GLint, GLint, GLint,
7650896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                          const GLdouble *, GLdouble *);
766cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
767cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
768cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Empty an image out of the reply buffer into the clients memory applying
769cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** the pack modes to pack back into the clients requested format.
770cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
7710896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glEmptyImage(__GLXcontext *, GLint, GLint, GLint, GLint, GLenum,
7720896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                           GLenum, const GLubyte *, GLvoid *);
773cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
774cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
775cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
776e2060348630b59a446bac7f734fdde40033093abKristof Ralovich** Allocate and Initialize Vertex Array client state, and free.
777cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
778e2060348630b59a446bac7f734fdde40033093abKristof Ralovichextern void __glXInitVertexArrayState(__GLXcontext *);
779e2060348630b59a446bac7f734fdde40033093abKristof Ralovichextern void __glXFreeVertexArrayState(__GLXcontext *);
780cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
781cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
782cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Inform the Server of the major and minor numbers and of the client
783cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** libraries extension string.
784cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
7850896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glXClientInfo(Display * dpy, int opcode);
786cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
787cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/************************************************************************/
788cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
789cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/*
790cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson** Declarations that should be in Xlib
791cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson*/
792cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#ifdef __GL_USE_OUR_PROTOTYPES
7930896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void _XFlush(Display *);
7940896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern Status _XReply(Display *, xReply *, int, Bool);
7950896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void _XRead(Display *, void *, long);
7960896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void _XSend(Display *, const void *, long);
797cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif
798cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
799cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
8000896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern void __glXInitializeVisualConfigFromTags(__GLcontextModes * config,
8010896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                                int count, const INT32 * bp,
8020896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                                Bool tagged_only,
8030896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                                Bool fbconfig_style_tags);
804cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
8050896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern char *__glXQueryServerString(Display * dpy, int opcode,
8060896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                    CARD32 screen, CARD32 name);
8070896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern char *__glXGetString(Display * dpy, int opcode,
8080896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                            CARD32 screen, CARD32 name);
8095444424562781a0a40559db40dfe9b97286dc9daRALOVICH, Kristóf
810cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern char *__glXstrdup(const char *str);
811cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
812cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
813cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern const char __glXGLClientVersion[];
814cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jacksonextern const char __glXGLClientExtensions[];
815cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
816cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson/* Get the unadjusted system time */
8170896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristófextern int __glXGetUST(int64_t * ust);
818cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson
819286ce2719395485ffafb38097fa2551b066acd96Kristian Høgsbergextern GLboolean __glXGetMscRateOML(Display * dpy, GLXDrawable drawable,
8200896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                    int32_t * numerator,
8210896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                                    int32_t * denominator);
822fc5b57b71375ef6c117482be036b442c2cb8ab23Ian Romanick
82380b280db883edc9550484dba03bd5c124b6a9bf9Jeremy Huddleston#if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
824286ce2719395485ffafb38097fa2551b066acd96Kristian HøgsbergGLboolean
8250896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf__driGetMscRateOML(__DRIdrawable * draw,
8260896268b97674d009d609476acfa1eed5dfea350RALOVICH, Kristóf                   int32_t * numerator, int32_t * denominator, void *private);
8277a9329ba99fe1242c07fbf4fd04e7a4dbeba2e72Robert Bragg
8287a9329ba99fe1242c07fbf4fd04e7a4dbeba2e72Robert Bragg/* So that dri2.c:DRI2WireToEvent() can access
8297a9329ba99fe1242c07fbf4fd04e7a4dbeba2e72Robert Bragg * glx_info->codes->first_event */
8307a9329ba99fe1242c07fbf4fd04e7a4dbeba2e72Robert BraggXExtDisplayInfo *__glXFindDisplay (Display *dpy);
83197ec6076f596a3820a9b7c4b7eae18bd98c6676bKristian Høgsberg
83297ec6076f596a3820a9b7c4b7eae18bd98c6676bKristian Høgsbergextern __GLXDRIdrawable *
83397ec6076f596a3820a9b7c4b7eae18bd98c6676bKristian HøgsbergGetGLXDRIDrawable(Display *dpy, GLXDrawable drawable, int *const scrn_num);
83497ec6076f596a3820a9b7c4b7eae18bd98c6676bKristian Høgsberg
835286ce2719395485ffafb38097fa2551b066acd96Kristian Høgsberg#endif
836286ce2719395485ffafb38097fa2551b066acd96Kristian Høgsberg
837cb3610e37c4c0a40520441b8515d044dabcc8854Adam Jackson#endif /* !__GLX_client_h__ */
838