1 | #ifndef _GLX_server_h_
|
---|
2 | #define _GLX_server_h_
|
---|
3 |
|
---|
4 | /*
|
---|
5 | * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
|
---|
6 | * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
|
---|
7 | *
|
---|
8 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
9 | * copy of this software and associated documentation files (the "Software"),
|
---|
10 | * to deal in the Software without restriction, including without limitation
|
---|
11 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
12 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
13 | * Software is furnished to do so, subject to the following conditions:
|
---|
14 | *
|
---|
15 | * The above copyright notice including the dates of first publication and
|
---|
16 | * either this permission notice or a reference to
|
---|
17 | * http://oss.sgi.com/projects/FreeB/
|
---|
18 | * shall be included in all copies or substantial portions of the Software.
|
---|
19 | *
|
---|
20 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
---|
21 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
22 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
23 | * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
---|
24 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
---|
25 | * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
---|
26 | * SOFTWARE.
|
---|
27 | *
|
---|
28 | * Except as contained in this notice, the name of Silicon Graphics, Inc.
|
---|
29 | * shall not be used in advertising or otherwise to promote the sale, use or
|
---|
30 | * other dealings in this Software without prior written authorization from
|
---|
31 | * Silicon Graphics, Inc.
|
---|
32 | */
|
---|
33 |
|
---|
34 | #include "dmx.h"
|
---|
35 |
|
---|
36 | #include <misc.h>
|
---|
37 | #include <dixstruct.h>
|
---|
38 | #include <pixmapstr.h>
|
---|
39 | #include <gcstruct.h>
|
---|
40 | #include <extnsionst.h>
|
---|
41 | #include <resource.h>
|
---|
42 | #include <scrnintstr.h>
|
---|
43 |
|
---|
44 |
|
---|
45 | #define GL_GLEXT_PROTOTYPES /* we want prototypes */
|
---|
46 | #include <GL/gl.h>
|
---|
47 | #include <GL/glxproto.h>
|
---|
48 | #include <GL/glxint.h>
|
---|
49 |
|
---|
50 | #include "glxscreens.h"
|
---|
51 | #include "glxdrawable.h"
|
---|
52 | #include "glxcontext.h"
|
---|
53 | #include "glxerror.h"
|
---|
54 |
|
---|
55 |
|
---|
56 | #define GLX_SERVER_MAJOR_VERSION 1
|
---|
57 | #define GLX_SERVER_MINOR_VERSION 3
|
---|
58 |
|
---|
59 | #ifndef True
|
---|
60 | #define True 1
|
---|
61 | #endif
|
---|
62 | #ifndef False
|
---|
63 | #define False 0
|
---|
64 | #endif
|
---|
65 |
|
---|
66 | /*
|
---|
67 | ** GLX resources.
|
---|
68 | typedef XID GLXContextID;
|
---|
69 | typedef XID GLXPixmap;
|
---|
70 | typedef XID GLXDrawable;
|
---|
71 | typedef XID GLXWindow;
|
---|
72 | typedef XID GLXPbuffer;
|
---|
73 |
|
---|
74 | typedef struct __GLXcontextRec *GLXContext;
|
---|
75 | */
|
---|
76 | typedef struct __GLXclientStateRec __GLXclientState;
|
---|
77 |
|
---|
78 | extern __GLXscreenInfo *__glXActiveScreens;
|
---|
79 | extern GLint __glXNumActiveScreens;
|
---|
80 |
|
---|
81 | /************************************************************************/
|
---|
82 |
|
---|
83 | /*
|
---|
84 | ** The last context used (from the server's persective) is cached.
|
---|
85 | */
|
---|
86 | extern __GLXcontext *__glXLastContext;
|
---|
87 | extern __GLXcontext *__glXForceCurrent(__GLXclientState*, GLXContextTag, int*);
|
---|
88 |
|
---|
89 | /************************************************************************/
|
---|
90 |
|
---|
91 | typedef struct {
|
---|
92 | int elem_size; /* element size in bytes */
|
---|
93 | int nelems; /* number of elements to swap */
|
---|
94 | void (*swapfunc)(GLbyte *pc);
|
---|
95 | } __GLXRenderSwapInfo;
|
---|
96 |
|
---|
97 | /*
|
---|
98 | ** State kept per client.
|
---|
99 | */
|
---|
100 | struct __GLXclientStateRec {
|
---|
101 | /*
|
---|
102 | ** Whether this structure is currently being used to support a client.
|
---|
103 | */
|
---|
104 | Bool inUse;
|
---|
105 |
|
---|
106 | /*
|
---|
107 | ** Buffer for returned data.
|
---|
108 | */
|
---|
109 | GLbyte *returnBuf;
|
---|
110 | GLint returnBufSize;
|
---|
111 |
|
---|
112 | /*
|
---|
113 | ** Keep a list of all the contexts that are current for this client's
|
---|
114 | ** threads.
|
---|
115 | */
|
---|
116 | __GLXcontext **currentContexts;
|
---|
117 | DrawablePtr *currentDrawables;
|
---|
118 | GLint numCurrentContexts;
|
---|
119 |
|
---|
120 | /* Back pointer to X client record */
|
---|
121 | ClientPtr client;
|
---|
122 |
|
---|
123 | int GLClientmajorVersion;
|
---|
124 | int GLClientminorVersion;
|
---|
125 | char *GLClientextensions;
|
---|
126 |
|
---|
127 | GLXContextTag *be_currentCTag;
|
---|
128 | Display **be_displays;
|
---|
129 |
|
---|
130 | /*
|
---|
131 | ** Keep track of large rendering commands, which span multiple requests.
|
---|
132 | */
|
---|
133 | GLint largeCmdBytesSoFar; /* bytes received so far */
|
---|
134 | GLint largeCmdBytesTotal; /* total bytes expected */
|
---|
135 | GLint largeCmdRequestsSoFar; /* requests received so far */
|
---|
136 | GLint largeCmdRequestsTotal; /* total requests expected */
|
---|
137 | void (*largeCmdRequestsSwapProc)(GLbyte *);
|
---|
138 | __GLXRenderSwapInfo *largeCmdRequestsSwap_info;
|
---|
139 | GLbyte *largeCmdBuf;
|
---|
140 | GLint largeCmdBufSize;
|
---|
141 | GLint largeCmdMaxReqDataSize;
|
---|
142 |
|
---|
143 | };
|
---|
144 |
|
---|
145 | extern __GLXclientState *__glXClients[];
|
---|
146 |
|
---|
147 | /************************************************************************/
|
---|
148 |
|
---|
149 | /*
|
---|
150 | ** Dispatch tables.
|
---|
151 | */
|
---|
152 | typedef void (*__GLXdispatchRenderProcPtr)(GLbyte *);
|
---|
153 | typedef int (*__GLXdispatchSingleProcPtr)(__GLXclientState *, GLbyte *);
|
---|
154 | typedef int (*__GLXdispatchVendorPrivProcPtr)(__GLXclientState *, GLbyte *);
|
---|
155 | extern __GLXdispatchSingleProcPtr __glXSingleTable[];
|
---|
156 | extern __GLXdispatchVendorPrivProcPtr __glXVendorPrivTable_EXT[];
|
---|
157 | extern __GLXdispatchSingleProcPtr __glXSwapSingleTable[];
|
---|
158 | extern __GLXdispatchVendorPrivProcPtr __glXSwapVendorPrivTable_EXT[];
|
---|
159 | extern __GLXdispatchRenderProcPtr __glXSwapRenderTable[];
|
---|
160 |
|
---|
161 | extern __GLXRenderSwapInfo __glXSwapRenderTable_EXT[];
|
---|
162 |
|
---|
163 | /*
|
---|
164 | * Dispatch for GLX commands.
|
---|
165 | */
|
---|
166 | typedef int (*__GLXprocPtr)(__GLXclientState *, char *pc);
|
---|
167 | extern __GLXprocPtr __glXProcTable[];
|
---|
168 |
|
---|
169 | /*
|
---|
170 | * Tables for computing the size of each rendering command.
|
---|
171 | */
|
---|
172 | typedef struct {
|
---|
173 | int bytes;
|
---|
174 | int (*varsize)(GLbyte *pc, Bool swap);
|
---|
175 | } __GLXrenderSizeData;
|
---|
176 | extern __GLXrenderSizeData __glXRenderSizeTable[];
|
---|
177 | extern __GLXrenderSizeData __glXRenderSizeTable_EXT[];
|
---|
178 |
|
---|
179 | /************************************************************************/
|
---|
180 |
|
---|
181 | /*
|
---|
182 | ** X resources.
|
---|
183 | */
|
---|
184 | extern RESTYPE __glXContextRes;
|
---|
185 | extern RESTYPE __glXClientRes;
|
---|
186 | extern RESTYPE __glXPixmapRes;
|
---|
187 | extern RESTYPE __glXDrawableRes;
|
---|
188 | extern RESTYPE __glXWindowRes;
|
---|
189 | extern RESTYPE __glXPbufferRes;
|
---|
190 |
|
---|
191 | /************************************************************************/
|
---|
192 |
|
---|
193 | /*
|
---|
194 | ** Prototypes.
|
---|
195 | */
|
---|
196 |
|
---|
197 |
|
---|
198 | extern char *__glXcombine_strings(const char *, const char *);
|
---|
199 |
|
---|
200 | extern void __glXDisp_DrawArrays(GLbyte*);
|
---|
201 | extern void __glXDispSwap_DrawArrays(GLbyte*);
|
---|
202 |
|
---|
203 |
|
---|
204 | /*
|
---|
205 | ** Routines for sending swapped replies.
|
---|
206 | */
|
---|
207 |
|
---|
208 | extern void __glXSwapMakeCurrentReply(ClientPtr client,
|
---|
209 | xGLXMakeCurrentReadSGIReply *reply);
|
---|
210 |
|
---|
211 | extern void __glXSwapIsDirectReply(ClientPtr client,
|
---|
212 | xGLXIsDirectReply *reply);
|
---|
213 | extern void __glXSwapQueryVersionReply(ClientPtr client,
|
---|
214 | xGLXQueryVersionReply *reply);
|
---|
215 | extern void __glXSwapQueryContextInfoEXTReply(ClientPtr client,
|
---|
216 | xGLXQueryContextInfoEXTReply *reply,
|
---|
217 | int *buf);
|
---|
218 | extern void glxSwapQueryExtensionsStringReply(ClientPtr client,
|
---|
219 | xGLXQueryExtensionsStringReply *reply, char *buf);
|
---|
220 | extern void glxSwapQueryServerStringReply(ClientPtr client,
|
---|
221 | xGLXQueryServerStringReply *reply, char *buf);
|
---|
222 | extern void __glXSwapQueryContextReply(ClientPtr client,
|
---|
223 | xGLXQueryContextReply *reply, int *buf);
|
---|
224 | extern void __glXSwapGetDrawableAttributesReply(ClientPtr client,
|
---|
225 | xGLXGetDrawableAttributesReply *reply, int *buf);
|
---|
226 | extern void __glXSwapQueryMaxSwapBarriersSGIXReply(ClientPtr client,
|
---|
227 | xGLXQueryMaxSwapBarriersSGIXReply *reply);
|
---|
228 |
|
---|
229 | /*
|
---|
230 | * Routines for computing the size of variably-sized rendering commands.
|
---|
231 | */
|
---|
232 |
|
---|
233 | extern int __glXTypeSize(GLenum enm);
|
---|
234 | extern int __glXImageSize(GLenum format, GLenum type, GLsizei w, GLsizei h,
|
---|
235 | GLint rowLength, GLint skipRows, GLint alignment);
|
---|
236 | extern int __glXImage3DSize(GLenum format, GLenum type,
|
---|
237 | GLsizei w, GLsizei h, GLsizei d,
|
---|
238 | GLint imageHeight, GLint rowLength,
|
---|
239 | GLint skipImages, GLint skipRows,
|
---|
240 | GLint alignment);
|
---|
241 |
|
---|
242 | extern int __glXCallListsReqSize(GLbyte *pc, Bool swap);
|
---|
243 | extern int __glXBitmapReqSize(GLbyte *pc, Bool swap);
|
---|
244 | extern int __glXFogfvReqSize(GLbyte *pc, Bool swap);
|
---|
245 | extern int __glXFogivReqSize(GLbyte *pc, Bool swap);
|
---|
246 | extern int __glXLightfvReqSize(GLbyte *pc, Bool swap);
|
---|
247 | extern int __glXLightivReqSize(GLbyte *pc, Bool swap);
|
---|
248 | extern int __glXLightModelfvReqSize(GLbyte *pc, Bool swap);
|
---|
249 | extern int __glXLightModelivReqSize(GLbyte *pc, Bool swap);
|
---|
250 | extern int __glXMaterialfvReqSize(GLbyte *pc, Bool swap);
|
---|
251 | extern int __glXMaterialivReqSize(GLbyte *pc, Bool swap);
|
---|
252 | extern int __glXTexParameterfvReqSize(GLbyte *pc, Bool swap);
|
---|
253 | extern int __glXTexParameterivReqSize(GLbyte *pc, Bool swap);
|
---|
254 | extern int __glXTexImage1DReqSize(GLbyte *pc, Bool swap);
|
---|
255 | extern int __glXTexImage2DReqSize(GLbyte *pc, Bool swap);
|
---|
256 | extern int __glXTexEnvfvReqSize(GLbyte *pc, Bool swap);
|
---|
257 | extern int __glXTexEnvivReqSize(GLbyte *pc, Bool swap);
|
---|
258 | extern int __glXTexGendvReqSize(GLbyte *pc, Bool swap);
|
---|
259 | extern int __glXTexGenfvReqSize(GLbyte *pc, Bool swap);
|
---|
260 | extern int __glXTexGenivReqSize(GLbyte *pc, Bool swap);
|
---|
261 | extern int __glXMap1dReqSize(GLbyte *pc, Bool swap);
|
---|
262 | extern int __glXMap1fReqSize(GLbyte *pc, Bool swap);
|
---|
263 | extern int __glXMap2dReqSize(GLbyte *pc, Bool swap);
|
---|
264 | extern int __glXMap2fReqSize(GLbyte *pc, Bool swap);
|
---|
265 | extern int __glXPixelMapfvReqSize(GLbyte *pc, Bool swap);
|
---|
266 | extern int __glXPixelMapuivReqSize(GLbyte *pc, Bool swap);
|
---|
267 | extern int __glXPixelMapusvReqSize(GLbyte *pc, Bool swap);
|
---|
268 | extern int __glXDrawPixelsReqSize(GLbyte *pc, Bool swap);
|
---|
269 | extern int __glXDrawArraysSize(GLbyte *pc, Bool swap);
|
---|
270 | extern int __glXPrioritizeTexturesReqSize(GLbyte *pc, Bool swap);
|
---|
271 | extern int __glXTexSubImage1DReqSize(GLbyte *pc, Bool swap);
|
---|
272 | extern int __glXTexSubImage2DReqSize(GLbyte *pc, Bool swap);
|
---|
273 | extern int __glXTexImage3DReqSize(GLbyte *pc, Bool swap );
|
---|
274 | extern int __glXTexSubImage3DReqSize(GLbyte *pc, Bool swap);
|
---|
275 | extern int __glXConvolutionFilter1DReqSize(GLbyte *pc, Bool swap);
|
---|
276 | extern int __glXConvolutionFilter2DReqSize(GLbyte *pc, Bool swap);
|
---|
277 | extern int __glXConvolutionParameterivReqSize(GLbyte *pc, Bool swap);
|
---|
278 | extern int __glXConvolutionParameterfvReqSize(GLbyte *pc, Bool swap);
|
---|
279 | extern int __glXSeparableFilter2DReqSize(GLbyte *pc, Bool swap);
|
---|
280 | extern int __glXColorTableReqSize(GLbyte *pc, Bool swap);
|
---|
281 | extern int __glXColorSubTableReqSize(GLbyte *pc, Bool swap);
|
---|
282 | extern int __glXColorTableParameterfvReqSize(GLbyte *pc, Bool swap);
|
---|
283 | extern int __glXColorTableParameterivReqSize(GLbyte *pc, Bool swap);
|
---|
284 |
|
---|
285 | /*
|
---|
286 | * Routines for computing the size of returned data.
|
---|
287 | */
|
---|
288 | extern int __glXConvolutionParameterivSize(GLenum pname);
|
---|
289 | extern int __glXConvolutionParameterfvSize(GLenum pname);
|
---|
290 | extern int __glXColorTableParameterfvSize(GLenum pname);
|
---|
291 | extern int __glXColorTableParameterivSize(GLenum pname);
|
---|
292 |
|
---|
293 | extern void __glXFreeGLXWindow(__glXWindow *pGlxWindow);
|
---|
294 | extern void __glXFreeGLXPbuffer(__glXPbuffer *pGlxPbuffer);
|
---|
295 |
|
---|
296 | extern int __glXVersionMajor;
|
---|
297 | extern int __glXVersionMinor;
|
---|
298 |
|
---|
299 | #define __GLX_IS_VERSION_SUPPORTED(major,minor) \
|
---|
300 | ( (__glXVersionMajor > (major)) || \
|
---|
301 | ((__glXVersionMajor == (major)) && (__glXVersionMinor >= (minor))) )
|
---|
302 |
|
---|
303 | #endif /* !__GLX_server_h__ */
|
---|