xref: /OK3568_Linux_fs/external/xserver/glx/glxext.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun #ifdef HAVE_DIX_CONFIG_H
2*4882a593Smuzhiyun #include <dix-config.h>
3*4882a593Smuzhiyun #endif
4*4882a593Smuzhiyun 
5*4882a593Smuzhiyun #ifndef _glxext_h_
6*4882a593Smuzhiyun #define _glxext_h_
7*4882a593Smuzhiyun 
8*4882a593Smuzhiyun /*
9*4882a593Smuzhiyun  * SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
10*4882a593Smuzhiyun  * Copyright (C) 1991-2000 Silicon Graphics, Inc. All Rights Reserved.
11*4882a593Smuzhiyun  *
12*4882a593Smuzhiyun  * Permission is hereby granted, free of charge, to any person obtaining a
13*4882a593Smuzhiyun  * copy of this software and associated documentation files (the "Software"),
14*4882a593Smuzhiyun  * to deal in the Software without restriction, including without limitation
15*4882a593Smuzhiyun  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16*4882a593Smuzhiyun  * and/or sell copies of the Software, and to permit persons to whom the
17*4882a593Smuzhiyun  * Software is furnished to do so, subject to the following conditions:
18*4882a593Smuzhiyun  *
19*4882a593Smuzhiyun  * The above copyright notice including the dates of first publication and
20*4882a593Smuzhiyun  * either this permission notice or a reference to
21*4882a593Smuzhiyun  * http://oss.sgi.com/projects/FreeB/
22*4882a593Smuzhiyun  * shall be included in all copies or substantial portions of the Software.
23*4882a593Smuzhiyun  *
24*4882a593Smuzhiyun  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25*4882a593Smuzhiyun  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27*4882a593Smuzhiyun  * SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
28*4882a593Smuzhiyun  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
29*4882a593Smuzhiyun  * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30*4882a593Smuzhiyun  * SOFTWARE.
31*4882a593Smuzhiyun  *
32*4882a593Smuzhiyun  * Except as contained in this notice, the name of Silicon Graphics, Inc.
33*4882a593Smuzhiyun  * shall not be used in advertising or otherwise to promote the sale, use or
34*4882a593Smuzhiyun  * other dealings in this Software without prior written authorization from
35*4882a593Smuzhiyun  * Silicon Graphics, Inc.
36*4882a593Smuzhiyun  */
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun /* doing #include <GL/glx.h> & #include <GL/glxext.h> could cause problems
39*4882a593Smuzhiyun  * with overlapping definitions, so let's use the easy way
40*4882a593Smuzhiyun  */
41*4882a593Smuzhiyun #ifndef GLX_RGBA_FLOAT_BIT_ARB
42*4882a593Smuzhiyun #define GLX_RGBA_FLOAT_BIT_ARB             0x00000004
43*4882a593Smuzhiyun #endif
44*4882a593Smuzhiyun #ifndef GLX_RGBA_FLOAT_TYPE_ARB
45*4882a593Smuzhiyun #define GLX_RGBA_FLOAT_TYPE_ARB            0x20B9
46*4882a593Smuzhiyun #endif
47*4882a593Smuzhiyun #ifndef GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT
48*4882a593Smuzhiyun #define GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT    0x00000008
49*4882a593Smuzhiyun #endif
50*4882a593Smuzhiyun #ifndef GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT
51*4882a593Smuzhiyun #define GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT   0x20B1
52*4882a593Smuzhiyun #endif
53*4882a593Smuzhiyun 
54*4882a593Smuzhiyun extern void __glXFlushContextCache(void);
55*4882a593Smuzhiyun 
56*4882a593Smuzhiyun extern Bool __glXAddContext(__GLXcontext * cx);
57*4882a593Smuzhiyun extern void __glXErrorCallBack(GLenum code);
58*4882a593Smuzhiyun extern void __glXClearErrorOccured(void);
59*4882a593Smuzhiyun extern GLboolean __glXErrorOccured(void);
60*4882a593Smuzhiyun 
61*4882a593Smuzhiyun extern const char GLServerVersion[];
62*4882a593Smuzhiyun extern int DoGetString(__GLXclientState * cl, GLbyte * pc, GLboolean need_swap);
63*4882a593Smuzhiyun 
64*4882a593Smuzhiyun extern int
65*4882a593Smuzhiyun xorgGlxMakeCurrent(ClientPtr client, GLXContextTag tag, XID drawId, XID readId,
66*4882a593Smuzhiyun                    XID contextId, GLXContextTag newContextTag);
67*4882a593Smuzhiyun 
68*4882a593Smuzhiyun #endif                          /* _glxext_h_ */
69