]> git.cworth.org Git - fips/blob - fips-dispatch-gl.h
Add explicit link to libpthread, to work around debugging issues
[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 #define GL_FALSE 0
39 #define GL_TRUE  1
40
41 #define GL_BYTE                                 0x1400
42 #define GL_UNSIGNED_BYTE                        0x1401
43 #define GL_SHORT                                0x1402
44 #define GL_UNSIGNED_SHORT                       0x1403
45 #define GL_INT                                  0x1404
46 #define GL_UNSIGNED_INT                         0x1405
47 #define GL_FLOAT                                0x1406
48 #define GL_2_BYTES                              0x1407
49 #define GL_3_BYTES                              0x1408
50 #define GL_4_BYTES                              0x1409
51 #define GL_DOUBLE                               0x140A
52 #define GL_EXTENSIONS                           0x1F03
53 #define GL_NUM_EXTENSIONS                       0x821D
54
55 typedef unsigned int GLenum;
56 typedef unsigned int GLbitfield;
57 typedef unsigned int GLuint;
58 typedef int GLint;
59 typedef int GLsizei;
60 typedef unsigned char GLboolean;
61 typedef signed char GLbyte;
62 typedef short GLshort;
63 typedef unsigned char GLubyte;
64 typedef unsigned short GLushort;
65 typedef unsigned long GLulong;
66 typedef float GLfloat;
67 typedef float GLclampf;
68 typedef double GLdouble;
69 typedef double GLclampd;
70 typedef void GLvoid;
71 typedef int64_t GLint64EXT;
72 typedef uint64_t GLuint64EXT;
73 typedef GLint64EXT  GLint64;
74 typedef GLuint64EXT GLuint64;
75 typedef char GLchar;
76 typedef ptrdiff_t GLintptr;
77 typedef ptrdiff_t GLsizeiptr;
78 typedef ptrdiff_t GLintptrARB;
79 typedef ptrdiff_t GLsizeiptrARB;
80 typedef char GLcharARB;
81 typedef unsigned int GLhandleARB;
82
83 typedef void (*PFNGLGETINTEGERVPROC) (GLenum pname, GLint *params);
84 typedef const GLubyte* (*PFNGLGETSTRINGPROC)(GLenum name);
85 typedef const GLubyte* (*PFNGLGETSTRINGIPROC)(GLenum name, GLuint index);
86 typedef void (*PFNGLGENQUERIESPROC)(GLsizei, GLuint *);
87 typedef void (*PFNGLDELETEQUERIESPROC)(GLsizei, const GLuint *);
88 typedef void (*PFNGLBEGINQUERYPROC)(GLenum, GLuint);
89 typedef void (*PFNGLENDQUERYPROC)(GLenum);
90 typedef void (*PFNGLGETQUERYOBJECTUIVPROC)(GLuint, GLenum, GLuint *);
91
92 typedef void (*PFNGLGETPERFMONITORGROUPSAMDPROC)(GLint *, GLsizei, GLuint *);
93 typedef void (*PFNGLGETPERFMONITORCOUNTERSAMDPROC)(GLuint, GLint *, GLint *,
94                                                    GLsizei, GLuint *);
95 typedef void (*PFNGLGETPERFMONITORGROUPSTRINGAMDPROC)(GLuint, GLsizei,
96                                                       GLsizei *, GLchar *);
97 typedef void (*PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC)(GLuint, GLuint,
98                                               GLsizei, GLsizei *, GLchar *);
99 typedef void (*PFNGLGETPERFMONITORCOUNTERINFOAMDPROC)(GLuint, GLuint,
100                                                       GLenum, GLvoid *);
101 typedef void (*PFNGLGENPERFMONITORSAMDPROC)(GLsizei, GLuint *);
102 typedef void (*PFNGLDELETEPERFMONITORSAMDPROC)(GLsizei, GLuint *);
103 typedef void (*PFNGLSELECTPERFMONITORCOUNTERSAMDPROC)(GLuint, GLboolean,
104                                                       GLuint, GLint, GLuint *);
105 typedef void (*PFNGLBEGINPERFMONITORAMDPROC)(GLuint);
106 typedef void (*PFNGLENDPERFMONITORAMDPROC)(GLuint);
107 typedef void (*PFNGLGETPERFMONITORCOUNTERDATAAMDPROC)(GLuint, GLenum,
108                                                       GLsizei, GLuint *, GLint *);
109
110 extern PFNGLGETINTEGERVPROC fips_dispatch_glGetIntegerv;
111 #define glGetIntegerv fips_dispatch_glGetIntegerv
112
113 extern PFNGLGETSTRINGPROC fips_dispatch_glGetString;
114 #define glGetString fips_dispatch_glGetString
115
116 extern PFNGLGETSTRINGIPROC fips_dispatch_glGetStringi;
117 #define glGetStringi fips_dispatch_glGetStringi
118
119 #define GL_QUERY_RESULT 0x8866
120 #define GL_QUERY_RESULT_AVAILABLE 0x8867
121 #define GL_TIME_ELAPSED 0x88BF
122
123 extern PFNGLGENQUERIESPROC fips_dispatch_glGenQueries;
124 #define glGenQueries fips_dispatch_glGenQueries
125
126 extern PFNGLDELETEQUERIESPROC fips_dispatch_glDeleteQueries;
127 #define glDeleteQueries fips_dispatch_glDeleteQueries
128
129 extern PFNGLBEGINQUERYPROC fips_dispatch_glBeginQuery;
130 #define glBeginQuery fips_dispatch_glBeginQuery
131
132 extern PFNGLENDQUERYPROC fips_dispatch_glEndQuery;
133 #define glEndQuery fips_dispatch_glEndQuery
134
135 extern PFNGLGETQUERYOBJECTUIVPROC fips_dispatch_glGetQueryObjectuiv;
136 #define glGetQueryObjectuiv fips_dispatch_glGetQueryObjectuiv
137
138 #define GL_COUNTER_TYPE_AMD               0x8BC0
139 #define GL_COUNTER_RANGE_AMD              0x8BC1
140 #define GL_UNSIGNED_INT64_AMD             0x8BC2
141 #define GL_PERCENTAGE_AMD                 0x8BC3
142 #define GL_PERFMON_RESULT_AVAILABLE_AMD   0x8BC4
143 #define GL_PERFMON_RESULT_SIZE_AMD        0x8BC5
144 #define GL_PERFMON_RESULT_AMD             0x8BC6
145
146 extern PFNGLGETPERFMONITORGROUPSAMDPROC fips_dispatch_glGetPerfMonitorGroupsAMD;
147 #define glGetPerfMonitorGroupsAMD fips_dispatch_glGetPerfMonitorGroupsAMD
148
149 extern PFNGLGETPERFMONITORCOUNTERSAMDPROC fips_dispatch_glGetPerfMonitorCountersAMD;
150 #define glGetPerfMonitorCountersAMD fips_dispatch_glGetPerfMonitorCountersAMD
151
152 extern PFNGLGETPERFMONITORGROUPSTRINGAMDPROC fips_dispatch_glGetPerfMonitorGroupStringAMD;
153 #define glGetPerfMonitorGroupStringAMD fips_dispatch_glGetPerfMonitorGroupStringAMD
154
155 extern PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC fips_dispatch_glGetPerfMonitorCounterStringAMD;
156 #define glGetPerfMonitorCounterStringAMD fips_dispatch_glGetPerfMonitorCounterStringAMD
157
158 extern PFNGLGETPERFMONITORCOUNTERINFOAMDPROC fips_dispatch_glGetPerfMonitorCounterInfoAMD;
159 #define glGetPerfMonitorCounterInfoAMD fips_dispatch_glGetPerfMonitorCounterInfoAMD
160
161 extern PFNGLGENPERFMONITORSAMDPROC fips_dispatch_glGenPerfMonitorsAMD;
162 #define glGenPerfMonitorsAMD fips_dispatch_glGenPerfMonitorsAMD
163
164 extern PFNGLDELETEPERFMONITORSAMDPROC fips_dispatch_glDeletePerfMonitorsAMD;
165 #define glDeletePerfMonitorsAMD fips_dispatch_glDeletePerfMonitorsAMD
166
167 extern PFNGLSELECTPERFMONITORCOUNTERSAMDPROC fips_dispatch_glSelectPerfMonitorCountersAMD;
168 #define glSelectPerfMonitorCountersAMD fips_dispatch_glSelectPerfMonitorCountersAMD
169
170 extern PFNGLBEGINPERFMONITORAMDPROC fips_dispatch_glBeginPerfMonitorAMD;
171 #define glBeginPerfMonitorAMD fips_dispatch_glBeginPerfMonitorAMD
172
173 extern PFNGLENDPERFMONITORAMDPROC fips_dispatch_glEndPerfMonitorAMD;
174 #define glEndPerfMonitorAMD fips_dispatch_glEndPerfMonitorAMD
175
176 extern PFNGLGETPERFMONITORCOUNTERDATAAMDPROC fips_dispatch_glGetPerfMonitorCounterDataAMD;
177 #define glGetPerfMonitorCounterDataAMD fips_dispatch_glGetPerfMonitorCounterDataAMD
178
179 #endif /* FIPS_DISPATCH_GL_H */