]> git.cworth.org Git - fips/blob - fips-dispatch-gl.h
glwrap: Don't hardcode "libGL.so.1" for looking up real OpenGL symbols
[fips] / fips-dispatch-gl.h
1 /* Copyright © 2012, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 /* This header file provides an interface to (the fips-dispatch subset
23  * of) OpenGL through dynamic dispatch as an alternative to including
24  * <GL/gl.h>.
25  *
26  * No file in fips should include both <GL/gl.h> and
27  * "fips-dispatch-gl.h" (whether directly or indirectly).
28  */
29
30 #ifndef FIPS_DISPATCH_GL_H
31 #define FIPS_DISPATCH_GL_H
32
33 #include "fips-dispatch.h"
34
35 #include <stdint.h>
36 #include <stddef.h>
37
38 typedef unsigned int GLenum;
39 typedef unsigned int GLbitfield;
40 typedef unsigned int GLuint;
41 typedef int GLint;
42 typedef int GLsizei;
43 typedef unsigned char GLboolean;
44 typedef signed char GLbyte;
45 typedef short GLshort;
46 typedef unsigned char GLubyte;
47 typedef unsigned short GLushort;
48 typedef unsigned long GLulong;
49 typedef float GLfloat;
50 typedef float GLclampf;
51 typedef double GLdouble;
52 typedef double GLclampd;
53 typedef void GLvoid;
54 typedef int64_t GLint64EXT;
55 typedef uint64_t GLuint64EXT;
56 typedef GLint64EXT  GLint64;
57 typedef GLuint64EXT GLuint64;
58 typedef char GLchar;
59 typedef ptrdiff_t GLintptr;
60 typedef ptrdiff_t GLsizeiptr;
61 typedef ptrdiff_t GLintptrARB;
62 typedef ptrdiff_t GLsizeiptrARB;
63 typedef char GLcharARB;
64 typedef unsigned int GLhandleARB;
65
66 typedef void (*PFNGLGENQUERIESPROC)(GLsizei, GLuint *);
67 typedef void (*PFNGLDELETEQUERIESPROC)(GLsizei, const GLuint *);
68 typedef void (*PFNGLBEGINQUERYPROC)(GLenum, GLuint);
69 typedef void (*PFNGLENDQUERYPROC)(GLenum);
70 typedef void (*PFNGLGETQUERYOBJECTUIVPROC)(GLuint, GLenum, GLuint *);
71
72 #define GL_QUERY_RESULT 0x8866
73 #define GL_QUERY_RESULT_AVAILABLE 0x8867
74 #define GL_TIME_ELAPSED 0x88BF
75
76 extern PFNGLGENQUERIESPROC fips_dispatch_glGenQueries;
77 #define glGenQueries fips_dispatch_glGenQueries
78
79 extern PFNGLDELETEQUERIESPROC fips_dispatch_glDeleteQueries;
80 #define glDeleteQueries fips_dispatch_glDeleteQueries
81
82 extern PFNGLBEGINQUERYPROC fips_dispatch_glBeginQuery;
83 #define glBeginQuery fips_dispatch_glBeginQuery
84
85 extern PFNGLENDQUERYPROC fips_dispatch_glEndQuery;
86 #define glEndQuery fips_dispatch_glEndQuery
87
88 extern PFNGLGETQUERYOBJECTUIVPROC fips_dispatch_glGetQueryObjectuiv;
89 #define glGetQueryObjectuiv fips_dispatch_glGetQueryObjectuiv
90
91 #endif /* FIPS_DISPATCH_GL_H */