1// Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB)
2// Copyright (C) 2016 The Qt Company Ltd.
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
4/**************************************************************************
5** This file was generated by glgen version 0.1
6** Command line was: glgen
7**
8** glgen is Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB)
9**
10** This is an auto-generated file.
11** Do not edit! All changes made to it will be lost.
12**
13****************************************************************************/
14
15#ifndef QOPENGLVERSIONFUNCTIONS_1_4_H
16#define QOPENGLVERSIONFUNCTIONS_1_4_H
17
18#include <QtOpenGL/qtopenglglobal.h>
19
20#if !defined(QT_NO_OPENGL) && !QT_CONFIG(opengles2)
21
22#include <QtOpenGL/QOpenGLVersionProfile>
23#include <QtOpenGL/QOpenGLVersionFunctions>
24#include <QtGui/qopenglcontext.h>
25
26QT_BEGIN_NAMESPACE
27
28class Q_OPENGL_EXPORT QOpenGLFunctions_1_4 : public QAbstractOpenGLFunctions
29{
30public:
31 QOpenGLFunctions_1_4();
32 ~QOpenGLFunctions_1_4();
33
34 bool initializeOpenGLFunctions() override;
35
36 // OpenGL 1.0 core functions
37 void glViewport(GLint x, GLint y, GLsizei width, GLsizei height);
38 void glDepthRange(GLdouble nearVal, GLdouble farVal);
39 GLboolean glIsEnabled(GLenum cap);
40 void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params);
41 void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params);
42 void glGetTexParameteriv(GLenum target, GLenum pname, GLint *params);
43 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params);
44 void glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
45 const GLubyte * glGetString(GLenum name);
46 void glGetIntegerv(GLenum pname, GLint *params);
47 void glGetFloatv(GLenum pname, GLfloat *params);
48 GLenum glGetError();
49 void glGetDoublev(GLenum pname, GLdouble *params);
50 void glGetBooleanv(GLenum pname, GLboolean *params);
51 void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
52 void glReadBuffer(GLenum mode);
53 void glPixelStorei(GLenum pname, GLint param);
54 void glPixelStoref(GLenum pname, GLfloat param);
55 void glDepthFunc(GLenum func);
56 void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass);
57 void glStencilFunc(GLenum func, GLint ref, GLuint mask);
58 void glLogicOp(GLenum opcode);
59 void glBlendFunc(GLenum sfactor, GLenum dfactor);
60 void glFlush();
61 void glFinish();
62 void glEnable(GLenum cap);
63 void glDisable(GLenum cap);
64 void glDepthMask(GLboolean flag);
65 void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
66 void glStencilMask(GLuint mask);
67 void glClearDepth(GLdouble depth);
68 void glClearStencil(GLint s);
69 void glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
70 void glClear(GLbitfield mask);
71 void glDrawBuffer(GLenum mode);
72 void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
73 void glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
74 void glTexParameteriv(GLenum target, GLenum pname, const GLint *params);
75 void glTexParameteri(GLenum target, GLenum pname, GLint param);
76 void glTexParameterfv(GLenum target, GLenum pname, const GLfloat *params);
77 void glTexParameterf(GLenum target, GLenum pname, GLfloat param);
78 void glScissor(GLint x, GLint y, GLsizei width, GLsizei height);
79 void glPolygonMode(GLenum face, GLenum mode);
80 void glPointSize(GLfloat size);
81 void glLineWidth(GLfloat width);
82 void glHint(GLenum target, GLenum mode);
83 void glFrontFace(GLenum mode);
84 void glCullFace(GLenum mode);
85
86 // OpenGL 1.1 core functions
87 void glIndexubv(const GLubyte *c);
88 void glIndexub(GLubyte c);
89 GLboolean glIsTexture(GLuint texture);
90 void glGenTextures(GLsizei n, GLuint *textures);
91 void glDeleteTextures(GLsizei n, const GLuint *textures);
92 void glBindTexture(GLenum target, GLuint texture);
93 void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
94 void glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
95 void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
96 void glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
97 void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
98 void glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
99 void glPolygonOffset(GLfloat factor, GLfloat units);
100 void glGetPointerv(GLenum pname, GLvoid* *params);
101 void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
102 void glDrawArrays(GLenum mode, GLint first, GLsizei count);
103
104 // OpenGL 1.2 core functions
105 void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
106 void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
107 void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
108 void glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
109 void glBlendEquation(GLenum mode);
110 void glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
111
112 // OpenGL 1.3 core functions
113 void glGetCompressedTexImage(GLenum target, GLint level, GLvoid *img);
114 void glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
115 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
116 void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data);
117 void glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
118 void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
119 void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
120 void glSampleCoverage(GLfloat value, GLboolean invert);
121 void glActiveTexture(GLenum texture);
122
123 // OpenGL 1.4 core functions
124 void glPointParameteriv(GLenum pname, const GLint *params);
125 void glPointParameteri(GLenum pname, GLint param);
126 void glPointParameterfv(GLenum pname, const GLfloat *params);
127 void glPointParameterf(GLenum pname, GLfloat param);
128 void glMultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei drawcount);
129 void glMultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount);
130 void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
131
132 // OpenGL 1.0 deprecated functions
133 void glTranslatef(GLfloat x, GLfloat y, GLfloat z);
134 void glTranslated(GLdouble x, GLdouble y, GLdouble z);
135 void glScalef(GLfloat x, GLfloat y, GLfloat z);
136 void glScaled(GLdouble x, GLdouble y, GLdouble z);
137 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
138 void glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
139 void glPushMatrix();
140 void glPopMatrix();
141 void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
142 void glMultMatrixd(const GLdouble *m);
143 void glMultMatrixf(const GLfloat *m);
144 void glMatrixMode(GLenum mode);
145 void glLoadMatrixd(const GLdouble *m);
146 void glLoadMatrixf(const GLfloat *m);
147 void glLoadIdentity();
148 void glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
149 GLboolean glIsList(GLuint list);
150 void glGetTexGeniv(GLenum coord, GLenum pname, GLint *params);
151 void glGetTexGenfv(GLenum coord, GLenum pname, GLfloat *params);
152 void glGetTexGendv(GLenum coord, GLenum pname, GLdouble *params);
153 void glGetTexEnviv(GLenum target, GLenum pname, GLint *params);
154 void glGetTexEnvfv(GLenum target, GLenum pname, GLfloat *params);
155 void glGetPolygonStipple(GLubyte *mask);
156 void glGetPixelMapusv(GLenum map, GLushort *values);
157 void glGetPixelMapuiv(GLenum map, GLuint *values);
158 void glGetPixelMapfv(GLenum map, GLfloat *values);
159 void glGetMaterialiv(GLenum face, GLenum pname, GLint *params);
160 void glGetMaterialfv(GLenum face, GLenum pname, GLfloat *params);
161 void glGetMapiv(GLenum target, GLenum query, GLint *v);
162 void glGetMapfv(GLenum target, GLenum query, GLfloat *v);
163 void glGetMapdv(GLenum target, GLenum query, GLdouble *v);
164 void glGetLightiv(GLenum light, GLenum pname, GLint *params);
165 void glGetLightfv(GLenum light, GLenum pname, GLfloat *params);
166 void glGetClipPlane(GLenum plane, GLdouble *equation);
167 void glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
168 void glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type);
169 void glPixelMapusv(GLenum map, GLint mapsize, const GLushort *values);
170 void glPixelMapuiv(GLenum map, GLint mapsize, const GLuint *values);
171 void glPixelMapfv(GLenum map, GLint mapsize, const GLfloat *values);
172 void glPixelTransferi(GLenum pname, GLint param);
173 void glPixelTransferf(GLenum pname, GLfloat param);
174 void glPixelZoom(GLfloat xfactor, GLfloat yfactor);
175 void glAlphaFunc(GLenum func, GLfloat ref);
176 void glEvalPoint2(GLint i, GLint j);
177 void glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2);
178 void glEvalPoint1(GLint i);
179 void glEvalMesh1(GLenum mode, GLint i1, GLint i2);
180 void glEvalCoord2fv(const GLfloat *u);
181 void glEvalCoord2f(GLfloat u, GLfloat v);
182 void glEvalCoord2dv(const GLdouble *u);
183 void glEvalCoord2d(GLdouble u, GLdouble v);
184 void glEvalCoord1fv(const GLfloat *u);
185 void glEvalCoord1f(GLfloat u);
186 void glEvalCoord1dv(const GLdouble *u);
187 void glEvalCoord1d(GLdouble u);
188 void glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2);
189 void glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2);
190 void glMapGrid1f(GLint un, GLfloat u1, GLfloat u2);
191 void glMapGrid1d(GLint un, GLdouble u1, GLdouble u2);
192 void glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points);
193 void glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points);
194 void glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points);
195 void glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points);
196 void glPushAttrib(GLbitfield mask);
197 void glPopAttrib();
198 void glAccum(GLenum op, GLfloat value);
199 void glIndexMask(GLuint mask);
200 void glClearIndex(GLfloat c);
201 void glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
202 void glPushName(GLuint name);
203 void glPopName();
204 void glPassThrough(GLfloat token);
205 void glLoadName(GLuint name);
206 void glInitNames();
207 GLint glRenderMode(GLenum mode);
208 void glSelectBuffer(GLsizei size, GLuint *buffer);
209 void glFeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer);
210 void glTexGeniv(GLenum coord, GLenum pname, const GLint *params);
211 void glTexGeni(GLenum coord, GLenum pname, GLint param);
212 void glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params);
213 void glTexGenf(GLenum coord, GLenum pname, GLfloat param);
214 void glTexGendv(GLenum coord, GLenum pname, const GLdouble *params);
215 void glTexGend(GLenum coord, GLenum pname, GLdouble param);
216 void glTexEnviv(GLenum target, GLenum pname, const GLint *params);
217 void glTexEnvi(GLenum target, GLenum pname, GLint param);
218 void glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params);
219 void glTexEnvf(GLenum target, GLenum pname, GLfloat param);
220 void glShadeModel(GLenum mode);
221 void glPolygonStipple(const GLubyte *mask);
222 void glMaterialiv(GLenum face, GLenum pname, const GLint *params);
223 void glMateriali(GLenum face, GLenum pname, GLint param);
224 void glMaterialfv(GLenum face, GLenum pname, const GLfloat *params);
225 void glMaterialf(GLenum face, GLenum pname, GLfloat param);
226 void glLineStipple(GLint factor, GLushort pattern);
227 void glLightModeliv(GLenum pname, const GLint *params);
228 void glLightModeli(GLenum pname, GLint param);
229 void glLightModelfv(GLenum pname, const GLfloat *params);
230 void glLightModelf(GLenum pname, GLfloat param);
231 void glLightiv(GLenum light, GLenum pname, const GLint *params);
232 void glLighti(GLenum light, GLenum pname, GLint param);
233 void glLightfv(GLenum light, GLenum pname, const GLfloat *params);
234 void glLightf(GLenum light, GLenum pname, GLfloat param);
235 void glFogiv(GLenum pname, const GLint *params);
236 void glFogi(GLenum pname, GLint param);
237 void glFogfv(GLenum pname, const GLfloat *params);
238 void glFogf(GLenum pname, GLfloat param);
239 void glColorMaterial(GLenum face, GLenum mode);
240 void glClipPlane(GLenum plane, const GLdouble *equation);
241 void glVertex4sv(const GLshort *v);
242 void glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w);
243 void glVertex4iv(const GLint *v);
244 void glVertex4i(GLint x, GLint y, GLint z, GLint w);
245 void glVertex4fv(const GLfloat *v);
246 void glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
247 void glVertex4dv(const GLdouble *v);
248 void glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
249 void glVertex3sv(const GLshort *v);
250 void glVertex3s(GLshort x, GLshort y, GLshort z);
251 void glVertex3iv(const GLint *v);
252 void glVertex3i(GLint x, GLint y, GLint z);
253 void glVertex3fv(const GLfloat *v);
254 void glVertex3f(GLfloat x, GLfloat y, GLfloat z);
255 void glVertex3dv(const GLdouble *v);
256 void glVertex3d(GLdouble x, GLdouble y, GLdouble z);
257 void glVertex2sv(const GLshort *v);
258 void glVertex2s(GLshort x, GLshort y);
259 void glVertex2iv(const GLint *v);
260 void glVertex2i(GLint x, GLint y);
261 void glVertex2fv(const GLfloat *v);
262 void glVertex2f(GLfloat x, GLfloat y);
263 void glVertex2dv(const GLdouble *v);
264 void glVertex2d(GLdouble x, GLdouble y);
265 void glTexCoord4sv(const GLshort *v);
266 void glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q);
267 void glTexCoord4iv(const GLint *v);
268 void glTexCoord4i(GLint s, GLint t, GLint r, GLint q);
269 void glTexCoord4fv(const GLfloat *v);
270 void glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q);
271 void glTexCoord4dv(const GLdouble *v);
272 void glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q);
273 void glTexCoord3sv(const GLshort *v);
274 void glTexCoord3s(GLshort s, GLshort t, GLshort r);
275 void glTexCoord3iv(const GLint *v);
276 void glTexCoord3i(GLint s, GLint t, GLint r);
277 void glTexCoord3fv(const GLfloat *v);
278 void glTexCoord3f(GLfloat s, GLfloat t, GLfloat r);
279 void glTexCoord3dv(const GLdouble *v);
280 void glTexCoord3d(GLdouble s, GLdouble t, GLdouble r);
281 void glTexCoord2sv(const GLshort *v);
282 void glTexCoord2s(GLshort s, GLshort t);
283 void glTexCoord2iv(const GLint *v);
284 void glTexCoord2i(GLint s, GLint t);
285 void glTexCoord2fv(const GLfloat *v);
286 void glTexCoord2f(GLfloat s, GLfloat t);
287 void glTexCoord2dv(const GLdouble *v);
288 void glTexCoord2d(GLdouble s, GLdouble t);
289 void glTexCoord1sv(const GLshort *v);
290 void glTexCoord1s(GLshort s);
291 void glTexCoord1iv(const GLint *v);
292 void glTexCoord1i(GLint s);
293 void glTexCoord1fv(const GLfloat *v);
294 void glTexCoord1f(GLfloat s);
295 void glTexCoord1dv(const GLdouble *v);
296 void glTexCoord1d(GLdouble s);
297 void glRectsv(const GLshort *v1, const GLshort *v2);
298 void glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2);
299 void glRectiv(const GLint *v1, const GLint *v2);
300 void glRecti(GLint x1, GLint y1, GLint x2, GLint y2);
301 void glRectfv(const GLfloat *v1, const GLfloat *v2);
302 void glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
303 void glRectdv(const GLdouble *v1, const GLdouble *v2);
304 void glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2);
305 void glRasterPos4sv(const GLshort *v);
306 void glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w);
307 void glRasterPos4iv(const GLint *v);
308 void glRasterPos4i(GLint x, GLint y, GLint z, GLint w);
309 void glRasterPos4fv(const GLfloat *v);
310 void glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
311 void glRasterPos4dv(const GLdouble *v);
312 void glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
313 void glRasterPos3sv(const GLshort *v);
314 void glRasterPos3s(GLshort x, GLshort y, GLshort z);
315 void glRasterPos3iv(const GLint *v);
316 void glRasterPos3i(GLint x, GLint y, GLint z);
317 void glRasterPos3fv(const GLfloat *v);
318 void glRasterPos3f(GLfloat x, GLfloat y, GLfloat z);
319 void glRasterPos3dv(const GLdouble *v);
320 void glRasterPos3d(GLdouble x, GLdouble y, GLdouble z);
321 void glRasterPos2sv(const GLshort *v);
322 void glRasterPos2s(GLshort x, GLshort y);
323 void glRasterPos2iv(const GLint *v);
324 void glRasterPos2i(GLint x, GLint y);
325 void glRasterPos2fv(const GLfloat *v);
326 void glRasterPos2f(GLfloat x, GLfloat y);
327 void glRasterPos2dv(const GLdouble *v);
328 void glRasterPos2d(GLdouble x, GLdouble y);
329 void glNormal3sv(const GLshort *v);
330 void glNormal3s(GLshort nx, GLshort ny, GLshort nz);
331 void glNormal3iv(const GLint *v);
332 void glNormal3i(GLint nx, GLint ny, GLint nz);
333 void glNormal3fv(const GLfloat *v);
334 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz);
335 void glNormal3dv(const GLdouble *v);
336 void glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz);
337 void glNormal3bv(const GLbyte *v);
338 void glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz);
339 void glIndexsv(const GLshort *c);
340 void glIndexs(GLshort c);
341 void glIndexiv(const GLint *c);
342 void glIndexi(GLint c);
343 void glIndexfv(const GLfloat *c);
344 void glIndexf(GLfloat c);
345 void glIndexdv(const GLdouble *c);
346 void glIndexd(GLdouble c);
347 void glEnd();
348 void glEdgeFlagv(const GLboolean *flag);
349 void glEdgeFlag(GLboolean flag);
350 void glColor4usv(const GLushort *v);
351 void glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha);
352 void glColor4uiv(const GLuint *v);
353 void glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha);
354 void glColor4ubv(const GLubyte *v);
355 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
356 void glColor4sv(const GLshort *v);
357 void glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha);
358 void glColor4iv(const GLint *v);
359 void glColor4i(GLint red, GLint green, GLint blue, GLint alpha);
360 void glColor4fv(const GLfloat *v);
361 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
362 void glColor4dv(const GLdouble *v);
363 void glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha);
364 void glColor4bv(const GLbyte *v);
365 void glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha);
366 void glColor3usv(const GLushort *v);
367 void glColor3us(GLushort red, GLushort green, GLushort blue);
368 void glColor3uiv(const GLuint *v);
369 void glColor3ui(GLuint red, GLuint green, GLuint blue);
370 void glColor3ubv(const GLubyte *v);
371 void glColor3ub(GLubyte red, GLubyte green, GLubyte blue);
372 void glColor3sv(const GLshort *v);
373 void glColor3s(GLshort red, GLshort green, GLshort blue);
374 void glColor3iv(const GLint *v);
375 void glColor3i(GLint red, GLint green, GLint blue);
376 void glColor3fv(const GLfloat *v);
377 void glColor3f(GLfloat red, GLfloat green, GLfloat blue);
378 void glColor3dv(const GLdouble *v);
379 void glColor3d(GLdouble red, GLdouble green, GLdouble blue);
380 void glColor3bv(const GLbyte *v);
381 void glColor3b(GLbyte red, GLbyte green, GLbyte blue);
382 void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
383 void glBegin(GLenum mode);
384 void glListBase(GLuint base);
385 GLuint glGenLists(GLsizei range);
386 void glDeleteLists(GLuint list, GLsizei range);
387 void glCallLists(GLsizei n, GLenum type, const GLvoid *lists);
388 void glCallList(GLuint list);
389 void glEndList();
390 void glNewList(GLuint list, GLenum mode);
391
392 // OpenGL 1.1 deprecated functions
393 void glPushClientAttrib(GLbitfield mask);
394 void glPopClientAttrib();
395 void glPrioritizeTextures(GLsizei n, const GLuint *textures, const GLfloat *priorities);
396 GLboolean glAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences);
397 void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
398 void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
399 void glNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer);
400 void glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
401 void glIndexPointer(GLenum type, GLsizei stride, const GLvoid *pointer);
402 void glEnableClientState(GLenum array);
403 void glEdgeFlagPointer(GLsizei stride, const GLvoid *pointer);
404 void glDisableClientState(GLenum array);
405 void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
406 void glArrayElement(GLint i);
407
408 // OpenGL 1.2 deprecated functions
409 void glResetMinmax(GLenum target);
410 void glResetHistogram(GLenum target);
411 void glMinmax(GLenum target, GLenum internalformat, GLboolean sink);
412 void glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
413 void glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint *params);
414 void glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat *params);
415 void glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
416 void glGetHistogramParameteriv(GLenum target, GLenum pname, GLint *params);
417 void glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat *params);
418 void glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
419 void glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
420 void glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
421 void glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params);
422 void glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params);
423 void glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid *image);
424 void glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
425 void glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
426 void glConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params);
427 void glConvolutionParameteri(GLenum target, GLenum pname, GLint params);
428 void glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat *params);
429 void glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params);
430 void glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
431 void glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
432 void glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
433 void glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
434 void glGetColorTableParameteriv(GLenum target, GLenum pname, GLint *params);
435 void glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat *params);
436 void glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid *table);
437 void glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
438 void glColorTableParameteriv(GLenum target, GLenum pname, const GLint *params);
439 void glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params);
440 void glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
441
442 // OpenGL 1.3 deprecated functions
443 void glMultTransposeMatrixd(const GLdouble *m);
444 void glMultTransposeMatrixf(const GLfloat *m);
445 void glLoadTransposeMatrixd(const GLdouble *m);
446 void glLoadTransposeMatrixf(const GLfloat *m);
447 void glMultiTexCoord4sv(GLenum target, const GLshort *v);
448 void glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
449 void glMultiTexCoord4iv(GLenum target, const GLint *v);
450 void glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q);
451 void glMultiTexCoord4fv(GLenum target, const GLfloat *v);
452 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
453 void glMultiTexCoord4dv(GLenum target, const GLdouble *v);
454 void glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
455 void glMultiTexCoord3sv(GLenum target, const GLshort *v);
456 void glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r);
457 void glMultiTexCoord3iv(GLenum target, const GLint *v);
458 void glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r);
459 void glMultiTexCoord3fv(GLenum target, const GLfloat *v);
460 void glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r);
461 void glMultiTexCoord3dv(GLenum target, const GLdouble *v);
462 void glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r);
463 void glMultiTexCoord2sv(GLenum target, const GLshort *v);
464 void glMultiTexCoord2s(GLenum target, GLshort s, GLshort t);
465 void glMultiTexCoord2iv(GLenum target, const GLint *v);
466 void glMultiTexCoord2i(GLenum target, GLint s, GLint t);
467 void glMultiTexCoord2fv(GLenum target, const GLfloat *v);
468 void glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t);
469 void glMultiTexCoord2dv(GLenum target, const GLdouble *v);
470 void glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t);
471 void glMultiTexCoord1sv(GLenum target, const GLshort *v);
472 void glMultiTexCoord1s(GLenum target, GLshort s);
473 void glMultiTexCoord1iv(GLenum target, const GLint *v);
474 void glMultiTexCoord1i(GLenum target, GLint s);
475 void glMultiTexCoord1fv(GLenum target, const GLfloat *v);
476 void glMultiTexCoord1f(GLenum target, GLfloat s);
477 void glMultiTexCoord1dv(GLenum target, const GLdouble *v);
478 void glMultiTexCoord1d(GLenum target, GLdouble s);
479 void glClientActiveTexture(GLenum texture);
480
481 // OpenGL 1.4 deprecated functions
482 void glWindowPos3sv(const GLshort *v);
483 void glWindowPos3s(GLshort x, GLshort y, GLshort z);
484 void glWindowPos3iv(const GLint *v);
485 void glWindowPos3i(GLint x, GLint y, GLint z);
486 void glWindowPos3fv(const GLfloat *v);
487 void glWindowPos3f(GLfloat x, GLfloat y, GLfloat z);
488 void glWindowPos3dv(const GLdouble *v);
489 void glWindowPos3d(GLdouble x, GLdouble y, GLdouble z);
490 void glWindowPos2sv(const GLshort *v);
491 void glWindowPos2s(GLshort x, GLshort y);
492 void glWindowPos2iv(const GLint *v);
493 void glWindowPos2i(GLint x, GLint y);
494 void glWindowPos2fv(const GLfloat *v);
495 void glWindowPos2f(GLfloat x, GLfloat y);
496 void glWindowPos2dv(const GLdouble *v);
497 void glWindowPos2d(GLdouble x, GLdouble y);
498 void glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
499 void glSecondaryColor3usv(const GLushort *v);
500 void glSecondaryColor3us(GLushort red, GLushort green, GLushort blue);
501 void glSecondaryColor3uiv(const GLuint *v);
502 void glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue);
503 void glSecondaryColor3ubv(const GLubyte *v);
504 void glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue);
505 void glSecondaryColor3sv(const GLshort *v);
506 void glSecondaryColor3s(GLshort red, GLshort green, GLshort blue);
507 void glSecondaryColor3iv(const GLint *v);
508 void glSecondaryColor3i(GLint red, GLint green, GLint blue);
509 void glSecondaryColor3fv(const GLfloat *v);
510 void glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue);
511 void glSecondaryColor3dv(const GLdouble *v);
512 void glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue);
513 void glSecondaryColor3bv(const GLbyte *v);
514 void glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue);
515 void glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid *pointer);
516 void glFogCoorddv(const GLdouble *coord);
517 void glFogCoordd(GLdouble coord);
518 void glFogCoordfv(const GLfloat *coord);
519 void glFogCoordf(GLfloat coord);
520
521private:
522 friend class QOpenGLVersionFunctionsFactory;
523
524 static bool isContextCompatible(QOpenGLContext *context);
525 static QOpenGLVersionProfile versionProfile();
526
527 QOpenGLFunctions_1_0_CoreBackend* d_1_0_Core;
528 QOpenGLFunctions_1_1_CoreBackend* d_1_1_Core;
529 QOpenGLFunctions_1_2_CoreBackend* d_1_2_Core;
530 QOpenGLFunctions_1_3_CoreBackend* d_1_3_Core;
531 QOpenGLFunctions_1_4_CoreBackend* d_1_4_Core;
532 QOpenGLFunctions_1_0_DeprecatedBackend* d_1_0_Deprecated;
533 QOpenGLFunctions_1_1_DeprecatedBackend* d_1_1_Deprecated;
534 QOpenGLFunctions_1_2_DeprecatedBackend* d_1_2_Deprecated;
535 QOpenGLFunctions_1_3_DeprecatedBackend* d_1_3_Deprecated;
536 QOpenGLFunctions_1_4_DeprecatedBackend* d_1_4_Deprecated;
537};
538
539// OpenGL 1.0 core functions
540inline void QOpenGLFunctions_1_4::glViewport(GLint x, GLint y, GLsizei width, GLsizei height)
541{
542 d_1_0_Core->f.Viewport(x, y, width, height);
543}
544
545inline void QOpenGLFunctions_1_4::glDepthRange(GLdouble nearVal, GLdouble farVal)
546{
547 d_1_0_Core->f.DepthRange(nearVal, farVal);
548}
549
550inline GLboolean QOpenGLFunctions_1_4::glIsEnabled(GLenum cap)
551{
552 return d_1_0_Core->f.IsEnabled(cap);
553}
554
555inline void QOpenGLFunctions_1_4::glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params)
556{
557 d_1_0_Core->f.GetTexLevelParameteriv(target, level, pname, params);
558}
559
560inline void QOpenGLFunctions_1_4::glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params)
561{
562 d_1_0_Core->f.GetTexLevelParameterfv(target, level, pname, params);
563}
564
565inline void QOpenGLFunctions_1_4::glGetTexParameteriv(GLenum target, GLenum pname, GLint *params)
566{
567 d_1_0_Core->f.GetTexParameteriv(target, pname, params);
568}
569
570inline void QOpenGLFunctions_1_4::glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params)
571{
572 d_1_0_Core->f.GetTexParameterfv(target, pname, params);
573}
574
575inline void QOpenGLFunctions_1_4::glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels)
576{
577 d_1_0_Core->f.GetTexImage(target, level, format, type, pixels);
578}
579
580inline const GLubyte * QOpenGLFunctions_1_4::glGetString(GLenum name)
581{
582 return d_1_0_Core->f.GetString(name);
583}
584
585inline void QOpenGLFunctions_1_4::glGetIntegerv(GLenum pname, GLint *params)
586{
587 d_1_0_Core->f.GetIntegerv(pname, params);
588}
589
590inline void QOpenGLFunctions_1_4::glGetFloatv(GLenum pname, GLfloat *params)
591{
592 d_1_0_Core->f.GetFloatv(pname, params);
593}
594
595inline GLenum QOpenGLFunctions_1_4::glGetError()
596{
597 return d_1_0_Core->f.GetError();
598}
599
600inline void QOpenGLFunctions_1_4::glGetDoublev(GLenum pname, GLdouble *params)
601{
602 d_1_0_Core->f.GetDoublev(pname, params);
603}
604
605inline void QOpenGLFunctions_1_4::glGetBooleanv(GLenum pname, GLboolean *params)
606{
607 d_1_0_Core->f.GetBooleanv(pname, params);
608}
609
610inline void QOpenGLFunctions_1_4::glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels)
611{
612 d_1_0_Core->f.ReadPixels(x, y, width, height, format, type, pixels);
613}
614
615inline void QOpenGLFunctions_1_4::glReadBuffer(GLenum mode)
616{
617 d_1_0_Core->f.ReadBuffer(mode);
618}
619
620inline void QOpenGLFunctions_1_4::glPixelStorei(GLenum pname, GLint param)
621{
622 d_1_0_Core->f.PixelStorei(pname, param);
623}
624
625inline void QOpenGLFunctions_1_4::glPixelStoref(GLenum pname, GLfloat param)
626{
627 d_1_0_Core->f.PixelStoref(pname, param);
628}
629
630inline void QOpenGLFunctions_1_4::glDepthFunc(GLenum func)
631{
632 d_1_0_Core->f.DepthFunc(func);
633}
634
635inline void QOpenGLFunctions_1_4::glStencilOp(GLenum fail, GLenum zfail, GLenum zpass)
636{
637 d_1_0_Core->f.StencilOp(fail, zfail, zpass);
638}
639
640inline void QOpenGLFunctions_1_4::glStencilFunc(GLenum func, GLint ref, GLuint mask)
641{
642 d_1_0_Core->f.StencilFunc(func, ref, mask);
643}
644
645inline void QOpenGLFunctions_1_4::glLogicOp(GLenum opcode)
646{
647 d_1_0_Core->f.LogicOp(opcode);
648}
649
650inline void QOpenGLFunctions_1_4::glBlendFunc(GLenum sfactor, GLenum dfactor)
651{
652 d_1_0_Core->f.BlendFunc(sfactor, dfactor);
653}
654
655inline void QOpenGLFunctions_1_4::glFlush()
656{
657 d_1_0_Core->f.Flush();
658}
659
660inline void QOpenGLFunctions_1_4::glFinish()
661{
662 d_1_0_Core->f.Finish();
663}
664
665inline void QOpenGLFunctions_1_4::glEnable(GLenum cap)
666{
667 d_1_0_Core->f.Enable(cap);
668}
669
670inline void QOpenGLFunctions_1_4::glDisable(GLenum cap)
671{
672 d_1_0_Core->f.Disable(cap);
673}
674
675inline void QOpenGLFunctions_1_4::glDepthMask(GLboolean flag)
676{
677 d_1_0_Core->f.DepthMask(flag);
678}
679
680inline void QOpenGLFunctions_1_4::glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
681{
682 d_1_0_Core->f.ColorMask(red, green, blue, alpha);
683}
684
685inline void QOpenGLFunctions_1_4::glStencilMask(GLuint mask)
686{
687 d_1_0_Core->f.StencilMask(mask);
688}
689
690inline void QOpenGLFunctions_1_4::glClearDepth(GLdouble depth)
691{
692 d_1_0_Core->f.ClearDepth(depth);
693}
694
695inline void QOpenGLFunctions_1_4::glClearStencil(GLint s)
696{
697 d_1_0_Core->f.ClearStencil(s);
698}
699
700inline void QOpenGLFunctions_1_4::glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
701{
702 d_1_0_Core->f.ClearColor(red, green, blue, alpha);
703}
704
705inline void QOpenGLFunctions_1_4::glClear(GLbitfield mask)
706{
707 d_1_0_Core->f.Clear(mask);
708}
709
710inline void QOpenGLFunctions_1_4::glDrawBuffer(GLenum mode)
711{
712 d_1_0_Core->f.DrawBuffer(mode);
713}
714
715inline void QOpenGLFunctions_1_4::glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
716{
717 d_1_0_Core->f.TexImage2D(target, level, internalformat, width, height, border, format, type, pixels);
718}
719
720inline void QOpenGLFunctions_1_4::glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
721{
722 d_1_0_Core->f.TexImage1D(target, level, internalformat, width, border, format, type, pixels);
723}
724
725inline void QOpenGLFunctions_1_4::glTexParameteriv(GLenum target, GLenum pname, const GLint *params)
726{
727 d_1_0_Core->f.TexParameteriv(target, pname, params);
728}
729
730inline void QOpenGLFunctions_1_4::glTexParameteri(GLenum target, GLenum pname, GLint param)
731{
732 d_1_0_Core->f.TexParameteri(target, pname, param);
733}
734
735inline void QOpenGLFunctions_1_4::glTexParameterfv(GLenum target, GLenum pname, const GLfloat *params)
736{
737 d_1_0_Core->f.TexParameterfv(target, pname, params);
738}
739
740inline void QOpenGLFunctions_1_4::glTexParameterf(GLenum target, GLenum pname, GLfloat param)
741{
742 d_1_0_Core->f.TexParameterf(target, pname, param);
743}
744
745inline void QOpenGLFunctions_1_4::glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
746{
747 d_1_0_Core->f.Scissor(x, y, width, height);
748}
749
750inline void QOpenGLFunctions_1_4::glPolygonMode(GLenum face, GLenum mode)
751{
752 d_1_0_Core->f.PolygonMode(face, mode);
753}
754
755inline void QOpenGLFunctions_1_4::glPointSize(GLfloat size)
756{
757 d_1_0_Core->f.PointSize(size);
758}
759
760inline void QOpenGLFunctions_1_4::glLineWidth(GLfloat width)
761{
762 d_1_0_Core->f.LineWidth(width);
763}
764
765inline void QOpenGLFunctions_1_4::glHint(GLenum target, GLenum mode)
766{
767 d_1_0_Core->f.Hint(target, mode);
768}
769
770inline void QOpenGLFunctions_1_4::glFrontFace(GLenum mode)
771{
772 d_1_0_Core->f.FrontFace(mode);
773}
774
775inline void QOpenGLFunctions_1_4::glCullFace(GLenum mode)
776{
777 d_1_0_Core->f.CullFace(mode);
778}
779
780
781// OpenGL 1.1 core functions
782inline void QOpenGLFunctions_1_4::glIndexubv(const GLubyte *c)
783{
784 d_1_1_Deprecated->f.Indexubv(c);
785}
786
787inline void QOpenGLFunctions_1_4::glIndexub(GLubyte c)
788{
789 d_1_1_Deprecated->f.Indexub(c);
790}
791
792inline GLboolean QOpenGLFunctions_1_4::glIsTexture(GLuint texture)
793{
794 return d_1_1_Core->f.IsTexture(texture);
795}
796
797inline void QOpenGLFunctions_1_4::glGenTextures(GLsizei n, GLuint *textures)
798{
799 d_1_1_Core->f.GenTextures(n, textures);
800}
801
802inline void QOpenGLFunctions_1_4::glDeleteTextures(GLsizei n, const GLuint *textures)
803{
804 d_1_1_Core->f.DeleteTextures(n, textures);
805}
806
807inline void QOpenGLFunctions_1_4::glBindTexture(GLenum target, GLuint texture)
808{
809 d_1_1_Core->f.BindTexture(target, texture);
810}
811
812inline void QOpenGLFunctions_1_4::glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
813{
814 d_1_1_Core->f.TexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
815}
816
817inline void QOpenGLFunctions_1_4::glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels)
818{
819 d_1_1_Core->f.TexSubImage1D(target, level, xoffset, width, format, type, pixels);
820}
821
822inline void QOpenGLFunctions_1_4::glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
823{
824 d_1_1_Core->f.CopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
825}
826
827inline void QOpenGLFunctions_1_4::glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
828{
829 d_1_1_Core->f.CopyTexSubImage1D(target, level, xoffset, x, y, width);
830}
831
832inline void QOpenGLFunctions_1_4::glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
833{
834 d_1_1_Core->f.CopyTexImage2D(target, level, internalformat, x, y, width, height, border);
835}
836
837inline void QOpenGLFunctions_1_4::glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)
838{
839 d_1_1_Core->f.CopyTexImage1D(target, level, internalformat, x, y, width, border);
840}
841
842inline void QOpenGLFunctions_1_4::glPolygonOffset(GLfloat factor, GLfloat units)
843{
844 d_1_1_Core->f.PolygonOffset(factor, units);
845}
846
847inline void QOpenGLFunctions_1_4::glGetPointerv(GLenum pname, GLvoid* *params)
848{
849 d_1_1_Deprecated->f.GetPointerv(pname, params);
850}
851
852inline void QOpenGLFunctions_1_4::glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices)
853{
854 d_1_1_Core->f.DrawElements(mode, count, type, indices);
855}
856
857inline void QOpenGLFunctions_1_4::glDrawArrays(GLenum mode, GLint first, GLsizei count)
858{
859 d_1_1_Core->f.DrawArrays(mode, first, count);
860}
861
862
863// OpenGL 1.2 core functions
864inline void QOpenGLFunctions_1_4::glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
865{
866 d_1_2_Core->f.CopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height);
867}
868
869inline void QOpenGLFunctions_1_4::glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels)
870{
871 d_1_2_Core->f.TexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
872}
873
874inline void QOpenGLFunctions_1_4::glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
875{
876 d_1_2_Core->f.TexImage3D(target, level, internalformat, width, height, depth, border, format, type, pixels);
877}
878
879inline void QOpenGLFunctions_1_4::glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices)
880{
881 d_1_2_Core->f.DrawRangeElements(mode, start, end, count, type, indices);
882}
883
884inline void QOpenGLFunctions_1_4::glBlendEquation(GLenum mode)
885{
886 d_1_2_Core->f.BlendEquation(mode);
887}
888
889inline void QOpenGLFunctions_1_4::glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
890{
891 d_1_2_Core->f.BlendColor(red, green, blue, alpha);
892}
893
894
895// OpenGL 1.3 core functions
896inline void QOpenGLFunctions_1_4::glGetCompressedTexImage(GLenum target, GLint level, GLvoid *img)
897{
898 d_1_3_Core->f.GetCompressedTexImage(target, level, img);
899}
900
901inline void QOpenGLFunctions_1_4::glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data)
902{
903 d_1_3_Core->f.CompressedTexSubImage1D(target, level, xoffset, width, format, imageSize, data);
904}
905
906inline void QOpenGLFunctions_1_4::glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data)
907{
908 d_1_3_Core->f.CompressedTexSubImage2D(target, level, xoffset, yoffset, width, height, format, imageSize, data);
909}
910
911inline void QOpenGLFunctions_1_4::glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data)
912{
913 d_1_3_Core->f.CompressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data);
914}
915
916inline void QOpenGLFunctions_1_4::glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data)
917{
918 d_1_3_Core->f.CompressedTexImage1D(target, level, internalformat, width, border, imageSize, data);
919}
920
921inline void QOpenGLFunctions_1_4::glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data)
922{
923 d_1_3_Core->f.CompressedTexImage2D(target, level, internalformat, width, height, border, imageSize, data);
924}
925
926inline void QOpenGLFunctions_1_4::glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data)
927{
928 d_1_3_Core->f.CompressedTexImage3D(target, level, internalformat, width, height, depth, border, imageSize, data);
929}
930
931inline void QOpenGLFunctions_1_4::glSampleCoverage(GLfloat value, GLboolean invert)
932{
933 d_1_3_Core->f.SampleCoverage(value, invert);
934}
935
936inline void QOpenGLFunctions_1_4::glActiveTexture(GLenum texture)
937{
938 d_1_3_Core->f.ActiveTexture(texture);
939}
940
941
942// OpenGL 1.4 core functions
943inline void QOpenGLFunctions_1_4::glPointParameteriv(GLenum pname, const GLint *params)
944{
945 d_1_4_Core->f.PointParameteriv(pname, params);
946}
947
948inline void QOpenGLFunctions_1_4::glPointParameteri(GLenum pname, GLint param)
949{
950 d_1_4_Core->f.PointParameteri(pname, param);
951}
952
953inline void QOpenGLFunctions_1_4::glPointParameterfv(GLenum pname, const GLfloat *params)
954{
955 d_1_4_Core->f.PointParameterfv(pname, params);
956}
957
958inline void QOpenGLFunctions_1_4::glPointParameterf(GLenum pname, GLfloat param)
959{
960 d_1_4_Core->f.PointParameterf(pname, param);
961}
962
963inline void QOpenGLFunctions_1_4::glMultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei drawcount)
964{
965 d_1_4_Core->f.MultiDrawElements(mode, count, type, indices, drawcount);
966}
967
968inline void QOpenGLFunctions_1_4::glMultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount)
969{
970 d_1_4_Core->f.MultiDrawArrays(mode, first, count, drawcount);
971}
972
973inline void QOpenGLFunctions_1_4::glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)
974{
975 d_1_4_Core->f.BlendFuncSeparate(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha);
976}
977
978
979// OpenGL 1.0 deprecated functions
980inline void QOpenGLFunctions_1_4::glTranslatef(GLfloat x, GLfloat y, GLfloat z)
981{
982 d_1_0_Deprecated->f.Translatef(x, y, z);
983}
984
985inline void QOpenGLFunctions_1_4::glTranslated(GLdouble x, GLdouble y, GLdouble z)
986{
987 d_1_0_Deprecated->f.Translated(x, y, z);
988}
989
990inline void QOpenGLFunctions_1_4::glScalef(GLfloat x, GLfloat y, GLfloat z)
991{
992 d_1_0_Deprecated->f.Scalef(x, y, z);
993}
994
995inline void QOpenGLFunctions_1_4::glScaled(GLdouble x, GLdouble y, GLdouble z)
996{
997 d_1_0_Deprecated->f.Scaled(x, y, z);
998}
999
1000inline void QOpenGLFunctions_1_4::glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
1001{
1002 d_1_0_Deprecated->f.Rotatef(angle, x, y, z);
1003}
1004
1005inline void QOpenGLFunctions_1_4::glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z)
1006{
1007 d_1_0_Deprecated->f.Rotated(angle, x, y, z);
1008}
1009
1010inline void QOpenGLFunctions_1_4::glPushMatrix()
1011{
1012 d_1_0_Deprecated->f.PushMatrix();
1013}
1014
1015inline void QOpenGLFunctions_1_4::glPopMatrix()
1016{
1017 d_1_0_Deprecated->f.PopMatrix();
1018}
1019
1020inline void QOpenGLFunctions_1_4::glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
1021{
1022 d_1_0_Deprecated->f.Ortho(left, right, bottom, top, zNear, zFar);
1023}
1024
1025inline void QOpenGLFunctions_1_4::glMultMatrixd(const GLdouble *m)
1026{
1027 d_1_0_Deprecated->f.MultMatrixd(m);
1028}
1029
1030inline void QOpenGLFunctions_1_4::glMultMatrixf(const GLfloat *m)
1031{
1032 d_1_0_Deprecated->f.MultMatrixf(m);
1033}
1034
1035inline void QOpenGLFunctions_1_4::glMatrixMode(GLenum mode)
1036{
1037 d_1_0_Deprecated->f.MatrixMode(mode);
1038}
1039
1040inline void QOpenGLFunctions_1_4::glLoadMatrixd(const GLdouble *m)
1041{
1042 d_1_0_Deprecated->f.LoadMatrixd(m);
1043}
1044
1045inline void QOpenGLFunctions_1_4::glLoadMatrixf(const GLfloat *m)
1046{
1047 d_1_0_Deprecated->f.LoadMatrixf(m);
1048}
1049
1050inline void QOpenGLFunctions_1_4::glLoadIdentity()
1051{
1052 d_1_0_Deprecated->f.LoadIdentity();
1053}
1054
1055inline void QOpenGLFunctions_1_4::glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
1056{
1057 d_1_0_Deprecated->f.Frustum(left, right, bottom, top, zNear, zFar);
1058}
1059
1060inline GLboolean QOpenGLFunctions_1_4::glIsList(GLuint list)
1061{
1062 return d_1_0_Deprecated->f.IsList(list);
1063}
1064
1065inline void QOpenGLFunctions_1_4::glGetTexGeniv(GLenum coord, GLenum pname, GLint *params)
1066{
1067 d_1_0_Deprecated->f.GetTexGeniv(coord, pname, params);
1068}
1069
1070inline void QOpenGLFunctions_1_4::glGetTexGenfv(GLenum coord, GLenum pname, GLfloat *params)
1071{
1072 d_1_0_Deprecated->f.GetTexGenfv(coord, pname, params);
1073}
1074
1075inline void QOpenGLFunctions_1_4::glGetTexGendv(GLenum coord, GLenum pname, GLdouble *params)
1076{
1077 d_1_0_Deprecated->f.GetTexGendv(coord, pname, params);
1078}
1079
1080inline void QOpenGLFunctions_1_4::glGetTexEnviv(GLenum target, GLenum pname, GLint *params)
1081{
1082 d_1_0_Deprecated->f.GetTexEnviv(target, pname, params);
1083}
1084
1085inline void QOpenGLFunctions_1_4::glGetTexEnvfv(GLenum target, GLenum pname, GLfloat *params)
1086{
1087 d_1_0_Deprecated->f.GetTexEnvfv(target, pname, params);
1088}
1089
1090inline void QOpenGLFunctions_1_4::glGetPolygonStipple(GLubyte *mask)
1091{
1092 d_1_0_Deprecated->f.GetPolygonStipple(mask);
1093}
1094
1095inline void QOpenGLFunctions_1_4::glGetPixelMapusv(GLenum map, GLushort *values)
1096{
1097 d_1_0_Deprecated->f.GetPixelMapusv(map, values);
1098}
1099
1100inline void QOpenGLFunctions_1_4::glGetPixelMapuiv(GLenum map, GLuint *values)
1101{
1102 d_1_0_Deprecated->f.GetPixelMapuiv(map, values);
1103}
1104
1105inline void QOpenGLFunctions_1_4::glGetPixelMapfv(GLenum map, GLfloat *values)
1106{
1107 d_1_0_Deprecated->f.GetPixelMapfv(map, values);
1108}
1109
1110inline void QOpenGLFunctions_1_4::glGetMaterialiv(GLenum face, GLenum pname, GLint *params)
1111{
1112 d_1_0_Deprecated->f.GetMaterialiv(face, pname, params);
1113}
1114
1115inline void QOpenGLFunctions_1_4::glGetMaterialfv(GLenum face, GLenum pname, GLfloat *params)
1116{
1117 d_1_0_Deprecated->f.GetMaterialfv(face, pname, params);
1118}
1119
1120inline void QOpenGLFunctions_1_4::glGetMapiv(GLenum target, GLenum query, GLint *v)
1121{
1122 d_1_0_Deprecated->f.GetMapiv(target, query, v);
1123}
1124
1125inline void QOpenGLFunctions_1_4::glGetMapfv(GLenum target, GLenum query, GLfloat *v)
1126{
1127 d_1_0_Deprecated->f.GetMapfv(target, query, v);
1128}
1129
1130inline void QOpenGLFunctions_1_4::glGetMapdv(GLenum target, GLenum query, GLdouble *v)
1131{
1132 d_1_0_Deprecated->f.GetMapdv(target, query, v);
1133}
1134
1135inline void QOpenGLFunctions_1_4::glGetLightiv(GLenum light, GLenum pname, GLint *params)
1136{
1137 d_1_0_Deprecated->f.GetLightiv(light, pname, params);
1138}
1139
1140inline void QOpenGLFunctions_1_4::glGetLightfv(GLenum light, GLenum pname, GLfloat *params)
1141{
1142 d_1_0_Deprecated->f.GetLightfv(light, pname, params);
1143}
1144
1145inline void QOpenGLFunctions_1_4::glGetClipPlane(GLenum plane, GLdouble *equation)
1146{
1147 d_1_0_Deprecated->f.GetClipPlane(plane, equation);
1148}
1149
1150inline void QOpenGLFunctions_1_4::glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
1151{
1152 d_1_0_Deprecated->f.DrawPixels(width, height, format, type, pixels);
1153}
1154
1155inline void QOpenGLFunctions_1_4::glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type)
1156{
1157 d_1_0_Deprecated->f.CopyPixels(x, y, width, height, type);
1158}
1159
1160inline void QOpenGLFunctions_1_4::glPixelMapusv(GLenum map, GLint mapsize, const GLushort *values)
1161{
1162 d_1_0_Deprecated->f.PixelMapusv(map, mapsize, values);
1163}
1164
1165inline void QOpenGLFunctions_1_4::glPixelMapuiv(GLenum map, GLint mapsize, const GLuint *values)
1166{
1167 d_1_0_Deprecated->f.PixelMapuiv(map, mapsize, values);
1168}
1169
1170inline void QOpenGLFunctions_1_4::glPixelMapfv(GLenum map, GLint mapsize, const GLfloat *values)
1171{
1172 d_1_0_Deprecated->f.PixelMapfv(map, mapsize, values);
1173}
1174
1175inline void QOpenGLFunctions_1_4::glPixelTransferi(GLenum pname, GLint param)
1176{
1177 d_1_0_Deprecated->f.PixelTransferi(pname, param);
1178}
1179
1180inline void QOpenGLFunctions_1_4::glPixelTransferf(GLenum pname, GLfloat param)
1181{
1182 d_1_0_Deprecated->f.PixelTransferf(pname, param);
1183}
1184
1185inline void QOpenGLFunctions_1_4::glPixelZoom(GLfloat xfactor, GLfloat yfactor)
1186{
1187 d_1_0_Deprecated->f.PixelZoom(xfactor, yfactor);
1188}
1189
1190inline void QOpenGLFunctions_1_4::glAlphaFunc(GLenum func, GLfloat ref)
1191{
1192 d_1_0_Deprecated->f.AlphaFunc(func, ref);
1193}
1194
1195inline void QOpenGLFunctions_1_4::glEvalPoint2(GLint i, GLint j)
1196{
1197 d_1_0_Deprecated->f.EvalPoint2(i, j);
1198}
1199
1200inline void QOpenGLFunctions_1_4::glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)
1201{
1202 d_1_0_Deprecated->f.EvalMesh2(mode, i1, i2, j1, j2);
1203}
1204
1205inline void QOpenGLFunctions_1_4::glEvalPoint1(GLint i)
1206{
1207 d_1_0_Deprecated->f.EvalPoint1(i);
1208}
1209
1210inline void QOpenGLFunctions_1_4::glEvalMesh1(GLenum mode, GLint i1, GLint i2)
1211{
1212 d_1_0_Deprecated->f.EvalMesh1(mode, i1, i2);
1213}
1214
1215inline void QOpenGLFunctions_1_4::glEvalCoord2fv(const GLfloat *u)
1216{
1217 d_1_0_Deprecated->f.EvalCoord2fv(u);
1218}
1219
1220inline void QOpenGLFunctions_1_4::glEvalCoord2f(GLfloat u, GLfloat v)
1221{
1222 d_1_0_Deprecated->f.EvalCoord2f(u, v);
1223}
1224
1225inline void QOpenGLFunctions_1_4::glEvalCoord2dv(const GLdouble *u)
1226{
1227 d_1_0_Deprecated->f.EvalCoord2dv(u);
1228}
1229
1230inline void QOpenGLFunctions_1_4::glEvalCoord2d(GLdouble u, GLdouble v)
1231{
1232 d_1_0_Deprecated->f.EvalCoord2d(u, v);
1233}
1234
1235inline void QOpenGLFunctions_1_4::glEvalCoord1fv(const GLfloat *u)
1236{
1237 d_1_0_Deprecated->f.EvalCoord1fv(u);
1238}
1239
1240inline void QOpenGLFunctions_1_4::glEvalCoord1f(GLfloat u)
1241{
1242 d_1_0_Deprecated->f.EvalCoord1f(u);
1243}
1244
1245inline void QOpenGLFunctions_1_4::glEvalCoord1dv(const GLdouble *u)
1246{
1247 d_1_0_Deprecated->f.EvalCoord1dv(u);
1248}
1249
1250inline void QOpenGLFunctions_1_4::glEvalCoord1d(GLdouble u)
1251{
1252 d_1_0_Deprecated->f.EvalCoord1d(u);
1253}
1254
1255inline void QOpenGLFunctions_1_4::glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2)
1256{
1257 d_1_0_Deprecated->f.MapGrid2f(un, u1, u2, vn, v1, v2);
1258}
1259
1260inline void QOpenGLFunctions_1_4::glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2)
1261{
1262 d_1_0_Deprecated->f.MapGrid2d(un, u1, u2, vn, v1, v2);
1263}
1264
1265inline void QOpenGLFunctions_1_4::glMapGrid1f(GLint un, GLfloat u1, GLfloat u2)
1266{
1267 d_1_0_Deprecated->f.MapGrid1f(un, u1, u2);
1268}
1269
1270inline void QOpenGLFunctions_1_4::glMapGrid1d(GLint un, GLdouble u1, GLdouble u2)
1271{
1272 d_1_0_Deprecated->f.MapGrid1d(un, u1, u2);
1273}
1274
1275inline void QOpenGLFunctions_1_4::glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points)
1276{
1277 d_1_0_Deprecated->f.Map2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points);
1278}
1279
1280inline void QOpenGLFunctions_1_4::glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points)
1281{
1282 d_1_0_Deprecated->f.Map2d(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points);
1283}
1284
1285inline void QOpenGLFunctions_1_4::glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points)
1286{
1287 d_1_0_Deprecated->f.Map1f(target, u1, u2, stride, order, points);
1288}
1289
1290inline void QOpenGLFunctions_1_4::glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points)
1291{
1292 d_1_0_Deprecated->f.Map1d(target, u1, u2, stride, order, points);
1293}
1294
1295inline void QOpenGLFunctions_1_4::glPushAttrib(GLbitfield mask)
1296{
1297 d_1_0_Deprecated->f.PushAttrib(mask);
1298}
1299
1300inline void QOpenGLFunctions_1_4::glPopAttrib()
1301{
1302 d_1_0_Deprecated->f.PopAttrib();
1303}
1304
1305inline void QOpenGLFunctions_1_4::glAccum(GLenum op, GLfloat value)
1306{
1307 d_1_0_Deprecated->f.Accum(op, value);
1308}
1309
1310inline void QOpenGLFunctions_1_4::glIndexMask(GLuint mask)
1311{
1312 d_1_0_Deprecated->f.IndexMask(mask);
1313}
1314
1315inline void QOpenGLFunctions_1_4::glClearIndex(GLfloat c)
1316{
1317 d_1_0_Deprecated->f.ClearIndex(c);
1318}
1319
1320inline void QOpenGLFunctions_1_4::glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
1321{
1322 d_1_0_Deprecated->f.ClearAccum(red, green, blue, alpha);
1323}
1324
1325inline void QOpenGLFunctions_1_4::glPushName(GLuint name)
1326{
1327 d_1_0_Deprecated->f.PushName(name);
1328}
1329
1330inline void QOpenGLFunctions_1_4::glPopName()
1331{
1332 d_1_0_Deprecated->f.PopName();
1333}
1334
1335inline void QOpenGLFunctions_1_4::glPassThrough(GLfloat token)
1336{
1337 d_1_0_Deprecated->f.PassThrough(token);
1338}
1339
1340inline void QOpenGLFunctions_1_4::glLoadName(GLuint name)
1341{
1342 d_1_0_Deprecated->f.LoadName(name);
1343}
1344
1345inline void QOpenGLFunctions_1_4::glInitNames()
1346{
1347 d_1_0_Deprecated->f.InitNames();
1348}
1349
1350inline GLint QOpenGLFunctions_1_4::glRenderMode(GLenum mode)
1351{
1352 return d_1_0_Deprecated->f.RenderMode(mode);
1353}
1354
1355inline void QOpenGLFunctions_1_4::glSelectBuffer(GLsizei size, GLuint *buffer)
1356{
1357 d_1_0_Deprecated->f.SelectBuffer(size, buffer);
1358}
1359
1360inline void QOpenGLFunctions_1_4::glFeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer)
1361{
1362 d_1_0_Deprecated->f.FeedbackBuffer(size, type, buffer);
1363}
1364
1365inline void QOpenGLFunctions_1_4::glTexGeniv(GLenum coord, GLenum pname, const GLint *params)
1366{
1367 d_1_0_Deprecated->f.TexGeniv(coord, pname, params);
1368}
1369
1370inline void QOpenGLFunctions_1_4::glTexGeni(GLenum coord, GLenum pname, GLint param)
1371{
1372 d_1_0_Deprecated->f.TexGeni(coord, pname, param);
1373}
1374
1375inline void QOpenGLFunctions_1_4::glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params)
1376{
1377 d_1_0_Deprecated->f.TexGenfv(coord, pname, params);
1378}
1379
1380inline void QOpenGLFunctions_1_4::glTexGenf(GLenum coord, GLenum pname, GLfloat param)
1381{
1382 d_1_0_Deprecated->f.TexGenf(coord, pname, param);
1383}
1384
1385inline void QOpenGLFunctions_1_4::glTexGendv(GLenum coord, GLenum pname, const GLdouble *params)
1386{
1387 d_1_0_Deprecated->f.TexGendv(coord, pname, params);
1388}
1389
1390inline void QOpenGLFunctions_1_4::glTexGend(GLenum coord, GLenum pname, GLdouble param)
1391{
1392 d_1_0_Deprecated->f.TexGend(coord, pname, param);
1393}
1394
1395inline void QOpenGLFunctions_1_4::glTexEnviv(GLenum target, GLenum pname, const GLint *params)
1396{
1397 d_1_0_Deprecated->f.TexEnviv(target, pname, params);
1398}
1399
1400inline void QOpenGLFunctions_1_4::glTexEnvi(GLenum target, GLenum pname, GLint param)
1401{
1402 d_1_0_Deprecated->f.TexEnvi(target, pname, param);
1403}
1404
1405inline void QOpenGLFunctions_1_4::glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params)
1406{
1407 d_1_0_Deprecated->f.TexEnvfv(target, pname, params);
1408}
1409
1410inline void QOpenGLFunctions_1_4::glTexEnvf(GLenum target, GLenum pname, GLfloat param)
1411{
1412 d_1_0_Deprecated->f.TexEnvf(target, pname, param);
1413}
1414
1415inline void QOpenGLFunctions_1_4::glShadeModel(GLenum mode)
1416{
1417 d_1_0_Deprecated->f.ShadeModel(mode);
1418}
1419
1420inline void QOpenGLFunctions_1_4::glPolygonStipple(const GLubyte *mask)
1421{
1422 d_1_0_Deprecated->f.PolygonStipple(mask);
1423}
1424
1425inline void QOpenGLFunctions_1_4::glMaterialiv(GLenum face, GLenum pname, const GLint *params)
1426{
1427 d_1_0_Deprecated->f.Materialiv(face, pname, params);
1428}
1429
1430inline void QOpenGLFunctions_1_4::glMateriali(GLenum face, GLenum pname, GLint param)
1431{
1432 d_1_0_Deprecated->f.Materiali(face, pname, param);
1433}
1434
1435inline void QOpenGLFunctions_1_4::glMaterialfv(GLenum face, GLenum pname, const GLfloat *params)
1436{
1437 d_1_0_Deprecated->f.Materialfv(face, pname, params);
1438}
1439
1440inline void QOpenGLFunctions_1_4::glMaterialf(GLenum face, GLenum pname, GLfloat param)
1441{
1442 d_1_0_Deprecated->f.Materialf(face, pname, param);
1443}
1444
1445inline void QOpenGLFunctions_1_4::glLineStipple(GLint factor, GLushort pattern)
1446{
1447 d_1_0_Deprecated->f.LineStipple(factor, pattern);
1448}
1449
1450inline void QOpenGLFunctions_1_4::glLightModeliv(GLenum pname, const GLint *params)
1451{
1452 d_1_0_Deprecated->f.LightModeliv(pname, params);
1453}
1454
1455inline void QOpenGLFunctions_1_4::glLightModeli(GLenum pname, GLint param)
1456{
1457 d_1_0_Deprecated->f.LightModeli(pname, param);
1458}
1459
1460inline void QOpenGLFunctions_1_4::glLightModelfv(GLenum pname, const GLfloat *params)
1461{
1462 d_1_0_Deprecated->f.LightModelfv(pname, params);
1463}
1464
1465inline void QOpenGLFunctions_1_4::glLightModelf(GLenum pname, GLfloat param)
1466{
1467 d_1_0_Deprecated->f.LightModelf(pname, param);
1468}
1469
1470inline void QOpenGLFunctions_1_4::glLightiv(GLenum light, GLenum pname, const GLint *params)
1471{
1472 d_1_0_Deprecated->f.Lightiv(light, pname, params);
1473}
1474
1475inline void QOpenGLFunctions_1_4::glLighti(GLenum light, GLenum pname, GLint param)
1476{
1477 d_1_0_Deprecated->f.Lighti(light, pname, param);
1478}
1479
1480inline void QOpenGLFunctions_1_4::glLightfv(GLenum light, GLenum pname, const GLfloat *params)
1481{
1482 d_1_0_Deprecated->f.Lightfv(light, pname, params);
1483}
1484
1485inline void QOpenGLFunctions_1_4::glLightf(GLenum light, GLenum pname, GLfloat param)
1486{
1487 d_1_0_Deprecated->f.Lightf(light, pname, param);
1488}
1489
1490inline void QOpenGLFunctions_1_4::glFogiv(GLenum pname, const GLint *params)
1491{
1492 d_1_0_Deprecated->f.Fogiv(pname, params);
1493}
1494
1495inline void QOpenGLFunctions_1_4::glFogi(GLenum pname, GLint param)
1496{
1497 d_1_0_Deprecated->f.Fogi(pname, param);
1498}
1499
1500inline void QOpenGLFunctions_1_4::glFogfv(GLenum pname, const GLfloat *params)
1501{
1502 d_1_0_Deprecated->f.Fogfv(pname, params);
1503}
1504
1505inline void QOpenGLFunctions_1_4::glFogf(GLenum pname, GLfloat param)
1506{
1507 d_1_0_Deprecated->f.Fogf(pname, param);
1508}
1509
1510inline void QOpenGLFunctions_1_4::glColorMaterial(GLenum face, GLenum mode)
1511{
1512 d_1_0_Deprecated->f.ColorMaterial(face, mode);
1513}
1514
1515inline void QOpenGLFunctions_1_4::glClipPlane(GLenum plane, const GLdouble *equation)
1516{
1517 d_1_0_Deprecated->f.ClipPlane(plane, equation);
1518}
1519
1520inline void QOpenGLFunctions_1_4::glVertex4sv(const GLshort *v)
1521{
1522 d_1_0_Deprecated->f.Vertex4sv(v);
1523}
1524
1525inline void QOpenGLFunctions_1_4::glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w)
1526{
1527 d_1_0_Deprecated->f.Vertex4s(x, y, z, w);
1528}
1529
1530inline void QOpenGLFunctions_1_4::glVertex4iv(const GLint *v)
1531{
1532 d_1_0_Deprecated->f.Vertex4iv(v);
1533}
1534
1535inline void QOpenGLFunctions_1_4::glVertex4i(GLint x, GLint y, GLint z, GLint w)
1536{
1537 d_1_0_Deprecated->f.Vertex4i(x, y, z, w);
1538}
1539
1540inline void QOpenGLFunctions_1_4::glVertex4fv(const GLfloat *v)
1541{
1542 d_1_0_Deprecated->f.Vertex4fv(v);
1543}
1544
1545inline void QOpenGLFunctions_1_4::glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
1546{
1547 d_1_0_Deprecated->f.Vertex4f(x, y, z, w);
1548}
1549
1550inline void QOpenGLFunctions_1_4::glVertex4dv(const GLdouble *v)
1551{
1552 d_1_0_Deprecated->f.Vertex4dv(v);
1553}
1554
1555inline void QOpenGLFunctions_1_4::glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
1556{
1557 d_1_0_Deprecated->f.Vertex4d(x, y, z, w);
1558}
1559
1560inline void QOpenGLFunctions_1_4::glVertex3sv(const GLshort *v)
1561{
1562 d_1_0_Deprecated->f.Vertex3sv(v);
1563}
1564
1565inline void QOpenGLFunctions_1_4::glVertex3s(GLshort x, GLshort y, GLshort z)
1566{
1567 d_1_0_Deprecated->f.Vertex3s(x, y, z);
1568}
1569
1570inline void QOpenGLFunctions_1_4::glVertex3iv(const GLint *v)
1571{
1572 d_1_0_Deprecated->f.Vertex3iv(v);
1573}
1574
1575inline void QOpenGLFunctions_1_4::glVertex3i(GLint x, GLint y, GLint z)
1576{
1577 d_1_0_Deprecated->f.Vertex3i(x, y, z);
1578}
1579
1580inline void QOpenGLFunctions_1_4::glVertex3fv(const GLfloat *v)
1581{
1582 d_1_0_Deprecated->f.Vertex3fv(v);
1583}
1584
1585inline void QOpenGLFunctions_1_4::glVertex3f(GLfloat x, GLfloat y, GLfloat z)
1586{
1587 d_1_0_Deprecated->f.Vertex3f(x, y, z);
1588}
1589
1590inline void QOpenGLFunctions_1_4::glVertex3dv(const GLdouble *v)
1591{
1592 d_1_0_Deprecated->f.Vertex3dv(v);
1593}
1594
1595inline void QOpenGLFunctions_1_4::glVertex3d(GLdouble x, GLdouble y, GLdouble z)
1596{
1597 d_1_0_Deprecated->f.Vertex3d(x, y, z);
1598}
1599
1600inline void QOpenGLFunctions_1_4::glVertex2sv(const GLshort *v)
1601{
1602 d_1_0_Deprecated->f.Vertex2sv(v);
1603}
1604
1605inline void QOpenGLFunctions_1_4::glVertex2s(GLshort x, GLshort y)
1606{
1607 d_1_0_Deprecated->f.Vertex2s(x, y);
1608}
1609
1610inline void QOpenGLFunctions_1_4::glVertex2iv(const GLint *v)
1611{
1612 d_1_0_Deprecated->f.Vertex2iv(v);
1613}
1614
1615inline void QOpenGLFunctions_1_4::glVertex2i(GLint x, GLint y)
1616{
1617 d_1_0_Deprecated->f.Vertex2i(x, y);
1618}
1619
1620inline void QOpenGLFunctions_1_4::glVertex2fv(const GLfloat *v)
1621{
1622 d_1_0_Deprecated->f.Vertex2fv(v);
1623}
1624
1625inline void QOpenGLFunctions_1_4::glVertex2f(GLfloat x, GLfloat y)
1626{
1627 d_1_0_Deprecated->f.Vertex2f(x, y);
1628}
1629
1630inline void QOpenGLFunctions_1_4::glVertex2dv(const GLdouble *v)
1631{
1632 d_1_0_Deprecated->f.Vertex2dv(v);
1633}
1634
1635inline void QOpenGLFunctions_1_4::glVertex2d(GLdouble x, GLdouble y)
1636{
1637 d_1_0_Deprecated->f.Vertex2d(x, y);
1638}
1639
1640inline void QOpenGLFunctions_1_4::glTexCoord4sv(const GLshort *v)
1641{
1642 d_1_0_Deprecated->f.TexCoord4sv(v);
1643}
1644
1645inline void QOpenGLFunctions_1_4::glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q)
1646{
1647 d_1_0_Deprecated->f.TexCoord4s(s, t, r, q);
1648}
1649
1650inline void QOpenGLFunctions_1_4::glTexCoord4iv(const GLint *v)
1651{
1652 d_1_0_Deprecated->f.TexCoord4iv(v);
1653}
1654
1655inline void QOpenGLFunctions_1_4::glTexCoord4i(GLint s, GLint t, GLint r, GLint q)
1656{
1657 d_1_0_Deprecated->f.TexCoord4i(s, t, r, q);
1658}
1659
1660inline void QOpenGLFunctions_1_4::glTexCoord4fv(const GLfloat *v)
1661{
1662 d_1_0_Deprecated->f.TexCoord4fv(v);
1663}
1664
1665inline void QOpenGLFunctions_1_4::glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q)
1666{
1667 d_1_0_Deprecated->f.TexCoord4f(s, t, r, q);
1668}
1669
1670inline void QOpenGLFunctions_1_4::glTexCoord4dv(const GLdouble *v)
1671{
1672 d_1_0_Deprecated->f.TexCoord4dv(v);
1673}
1674
1675inline void QOpenGLFunctions_1_4::glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q)
1676{
1677 d_1_0_Deprecated->f.TexCoord4d(s, t, r, q);
1678}
1679
1680inline void QOpenGLFunctions_1_4::glTexCoord3sv(const GLshort *v)
1681{
1682 d_1_0_Deprecated->f.TexCoord3sv(v);
1683}
1684
1685inline void QOpenGLFunctions_1_4::glTexCoord3s(GLshort s, GLshort t, GLshort r)
1686{
1687 d_1_0_Deprecated->f.TexCoord3s(s, t, r);
1688}
1689
1690inline void QOpenGLFunctions_1_4::glTexCoord3iv(const GLint *v)
1691{
1692 d_1_0_Deprecated->f.TexCoord3iv(v);
1693}
1694
1695inline void QOpenGLFunctions_1_4::glTexCoord3i(GLint s, GLint t, GLint r)
1696{
1697 d_1_0_Deprecated->f.TexCoord3i(s, t, r);
1698}
1699
1700inline void QOpenGLFunctions_1_4::glTexCoord3fv(const GLfloat *v)
1701{
1702 d_1_0_Deprecated->f.TexCoord3fv(v);
1703}
1704
1705inline void QOpenGLFunctions_1_4::glTexCoord3f(GLfloat s, GLfloat t, GLfloat r)
1706{
1707 d_1_0_Deprecated->f.TexCoord3f(s, t, r);
1708}
1709
1710inline void QOpenGLFunctions_1_4::glTexCoord3dv(const GLdouble *v)
1711{
1712 d_1_0_Deprecated->f.TexCoord3dv(v);
1713}
1714
1715inline void QOpenGLFunctions_1_4::glTexCoord3d(GLdouble s, GLdouble t, GLdouble r)
1716{
1717 d_1_0_Deprecated->f.TexCoord3d(s, t, r);
1718}
1719
1720inline void QOpenGLFunctions_1_4::glTexCoord2sv(const GLshort *v)
1721{
1722 d_1_0_Deprecated->f.TexCoord2sv(v);
1723}
1724
1725inline void QOpenGLFunctions_1_4::glTexCoord2s(GLshort s, GLshort t)
1726{
1727 d_1_0_Deprecated->f.TexCoord2s(s, t);
1728}
1729
1730inline void QOpenGLFunctions_1_4::glTexCoord2iv(const GLint *v)
1731{
1732 d_1_0_Deprecated->f.TexCoord2iv(v);
1733}
1734
1735inline void QOpenGLFunctions_1_4::glTexCoord2i(GLint s, GLint t)
1736{
1737 d_1_0_Deprecated->f.TexCoord2i(s, t);
1738}
1739
1740inline void QOpenGLFunctions_1_4::glTexCoord2fv(const GLfloat *v)
1741{
1742 d_1_0_Deprecated->f.TexCoord2fv(v);
1743}
1744
1745inline void QOpenGLFunctions_1_4::glTexCoord2f(GLfloat s, GLfloat t)
1746{
1747 d_1_0_Deprecated->f.TexCoord2f(s, t);
1748}
1749
1750inline void QOpenGLFunctions_1_4::glTexCoord2dv(const GLdouble *v)
1751{
1752 d_1_0_Deprecated->f.TexCoord2dv(v);
1753}
1754
1755inline void QOpenGLFunctions_1_4::glTexCoord2d(GLdouble s, GLdouble t)
1756{
1757 d_1_0_Deprecated->f.TexCoord2d(s, t);
1758}
1759
1760inline void QOpenGLFunctions_1_4::glTexCoord1sv(const GLshort *v)
1761{
1762 d_1_0_Deprecated->f.TexCoord1sv(v);
1763}
1764
1765inline void QOpenGLFunctions_1_4::glTexCoord1s(GLshort s)
1766{
1767 d_1_0_Deprecated->f.TexCoord1s(s);
1768}
1769
1770inline void QOpenGLFunctions_1_4::glTexCoord1iv(const GLint *v)
1771{
1772 d_1_0_Deprecated->f.TexCoord1iv(v);
1773}
1774
1775inline void QOpenGLFunctions_1_4::glTexCoord1i(GLint s)
1776{
1777 d_1_0_Deprecated->f.TexCoord1i(s);
1778}
1779
1780inline void QOpenGLFunctions_1_4::glTexCoord1fv(const GLfloat *v)
1781{
1782 d_1_0_Deprecated->f.TexCoord1fv(v);
1783}
1784
1785inline void QOpenGLFunctions_1_4::glTexCoord1f(GLfloat s)
1786{
1787 d_1_0_Deprecated->f.TexCoord1f(s);
1788}
1789
1790inline void QOpenGLFunctions_1_4::glTexCoord1dv(const GLdouble *v)
1791{
1792 d_1_0_Deprecated->f.TexCoord1dv(v);
1793}
1794
1795inline void QOpenGLFunctions_1_4::glTexCoord1d(GLdouble s)
1796{
1797 d_1_0_Deprecated->f.TexCoord1d(s);
1798}
1799
1800inline void QOpenGLFunctions_1_4::glRectsv(const GLshort *v1, const GLshort *v2)
1801{
1802 d_1_0_Deprecated->f.Rectsv(v1, v2);
1803}
1804
1805inline void QOpenGLFunctions_1_4::glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2)
1806{
1807 d_1_0_Deprecated->f.Rects(x1, y1, x2, y2);
1808}
1809
1810inline void QOpenGLFunctions_1_4::glRectiv(const GLint *v1, const GLint *v2)
1811{
1812 d_1_0_Deprecated->f.Rectiv(v1, v2);
1813}
1814
1815inline void QOpenGLFunctions_1_4::glRecti(GLint x1, GLint y1, GLint x2, GLint y2)
1816{
1817 d_1_0_Deprecated->f.Recti(x1, y1, x2, y2);
1818}
1819
1820inline void QOpenGLFunctions_1_4::glRectfv(const GLfloat *v1, const GLfloat *v2)
1821{
1822 d_1_0_Deprecated->f.Rectfv(v1, v2);
1823}
1824
1825inline void QOpenGLFunctions_1_4::glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
1826{
1827 d_1_0_Deprecated->f.Rectf(x1, y1, x2, y2);
1828}
1829
1830inline void QOpenGLFunctions_1_4::glRectdv(const GLdouble *v1, const GLdouble *v2)
1831{
1832 d_1_0_Deprecated->f.Rectdv(v1, v2);
1833}
1834
1835inline void QOpenGLFunctions_1_4::glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2)
1836{
1837 d_1_0_Deprecated->f.Rectd(x1, y1, x2, y2);
1838}
1839
1840inline void QOpenGLFunctions_1_4::glRasterPos4sv(const GLshort *v)
1841{
1842 d_1_0_Deprecated->f.RasterPos4sv(v);
1843}
1844
1845inline void QOpenGLFunctions_1_4::glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w)
1846{
1847 d_1_0_Deprecated->f.RasterPos4s(x, y, z, w);
1848}
1849
1850inline void QOpenGLFunctions_1_4::glRasterPos4iv(const GLint *v)
1851{
1852 d_1_0_Deprecated->f.RasterPos4iv(v);
1853}
1854
1855inline void QOpenGLFunctions_1_4::glRasterPos4i(GLint x, GLint y, GLint z, GLint w)
1856{
1857 d_1_0_Deprecated->f.RasterPos4i(x, y, z, w);
1858}
1859
1860inline void QOpenGLFunctions_1_4::glRasterPos4fv(const GLfloat *v)
1861{
1862 d_1_0_Deprecated->f.RasterPos4fv(v);
1863}
1864
1865inline void QOpenGLFunctions_1_4::glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
1866{
1867 d_1_0_Deprecated->f.RasterPos4f(x, y, z, w);
1868}
1869
1870inline void QOpenGLFunctions_1_4::glRasterPos4dv(const GLdouble *v)
1871{
1872 d_1_0_Deprecated->f.RasterPos4dv(v);
1873}
1874
1875inline void QOpenGLFunctions_1_4::glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
1876{
1877 d_1_0_Deprecated->f.RasterPos4d(x, y, z, w);
1878}
1879
1880inline void QOpenGLFunctions_1_4::glRasterPos3sv(const GLshort *v)
1881{
1882 d_1_0_Deprecated->f.RasterPos3sv(v);
1883}
1884
1885inline void QOpenGLFunctions_1_4::glRasterPos3s(GLshort x, GLshort y, GLshort z)
1886{
1887 d_1_0_Deprecated->f.RasterPos3s(x, y, z);
1888}
1889
1890inline void QOpenGLFunctions_1_4::glRasterPos3iv(const GLint *v)
1891{
1892 d_1_0_Deprecated->f.RasterPos3iv(v);
1893}
1894
1895inline void QOpenGLFunctions_1_4::glRasterPos3i(GLint x, GLint y, GLint z)
1896{
1897 d_1_0_Deprecated->f.RasterPos3i(x, y, z);
1898}
1899
1900inline void QOpenGLFunctions_1_4::glRasterPos3fv(const GLfloat *v)
1901{
1902 d_1_0_Deprecated->f.RasterPos3fv(v);
1903}
1904
1905inline void QOpenGLFunctions_1_4::glRasterPos3f(GLfloat x, GLfloat y, GLfloat z)
1906{
1907 d_1_0_Deprecated->f.RasterPos3f(x, y, z);
1908}
1909
1910inline void QOpenGLFunctions_1_4::glRasterPos3dv(const GLdouble *v)
1911{
1912 d_1_0_Deprecated->f.RasterPos3dv(v);
1913}
1914
1915inline void QOpenGLFunctions_1_4::glRasterPos3d(GLdouble x, GLdouble y, GLdouble z)
1916{
1917 d_1_0_Deprecated->f.RasterPos3d(x, y, z);
1918}
1919
1920inline void QOpenGLFunctions_1_4::glRasterPos2sv(const GLshort *v)
1921{
1922 d_1_0_Deprecated->f.RasterPos2sv(v);
1923}
1924
1925inline void QOpenGLFunctions_1_4::glRasterPos2s(GLshort x, GLshort y)
1926{
1927 d_1_0_Deprecated->f.RasterPos2s(x, y);
1928}
1929
1930inline void QOpenGLFunctions_1_4::glRasterPos2iv(const GLint *v)
1931{
1932 d_1_0_Deprecated->f.RasterPos2iv(v);
1933}
1934
1935inline void QOpenGLFunctions_1_4::glRasterPos2i(GLint x, GLint y)
1936{
1937 d_1_0_Deprecated->f.RasterPos2i(x, y);
1938}
1939
1940inline void QOpenGLFunctions_1_4::glRasterPos2fv(const GLfloat *v)
1941{
1942 d_1_0_Deprecated->f.RasterPos2fv(v);
1943}
1944
1945inline void QOpenGLFunctions_1_4::glRasterPos2f(GLfloat x, GLfloat y)
1946{
1947 d_1_0_Deprecated->f.RasterPos2f(x, y);
1948}
1949
1950inline void QOpenGLFunctions_1_4::glRasterPos2dv(const GLdouble *v)
1951{
1952 d_1_0_Deprecated->f.RasterPos2dv(v);
1953}
1954
1955inline void QOpenGLFunctions_1_4::glRasterPos2d(GLdouble x, GLdouble y)
1956{
1957 d_1_0_Deprecated->f.RasterPos2d(x, y);
1958}
1959
1960inline void QOpenGLFunctions_1_4::glNormal3sv(const GLshort *v)
1961{
1962 d_1_0_Deprecated->f.Normal3sv(v);
1963}
1964
1965inline void QOpenGLFunctions_1_4::glNormal3s(GLshort nx, GLshort ny, GLshort nz)
1966{
1967 d_1_0_Deprecated->f.Normal3s(nx, ny, nz);
1968}
1969
1970inline void QOpenGLFunctions_1_4::glNormal3iv(const GLint *v)
1971{
1972 d_1_0_Deprecated->f.Normal3iv(v);
1973}
1974
1975inline void QOpenGLFunctions_1_4::glNormal3i(GLint nx, GLint ny, GLint nz)
1976{
1977 d_1_0_Deprecated->f.Normal3i(nx, ny, nz);
1978}
1979
1980inline void QOpenGLFunctions_1_4::glNormal3fv(const GLfloat *v)
1981{
1982 d_1_0_Deprecated->f.Normal3fv(v);
1983}
1984
1985inline void QOpenGLFunctions_1_4::glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz)
1986{
1987 d_1_0_Deprecated->f.Normal3f(nx, ny, nz);
1988}
1989
1990inline void QOpenGLFunctions_1_4::glNormal3dv(const GLdouble *v)
1991{
1992 d_1_0_Deprecated->f.Normal3dv(v);
1993}
1994
1995inline void QOpenGLFunctions_1_4::glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz)
1996{
1997 d_1_0_Deprecated->f.Normal3d(nx, ny, nz);
1998}
1999
2000inline void QOpenGLFunctions_1_4::glNormal3bv(const GLbyte *v)
2001{
2002 d_1_0_Deprecated->f.Normal3bv(v);
2003}
2004
2005inline void QOpenGLFunctions_1_4::glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz)
2006{
2007 d_1_0_Deprecated->f.Normal3b(nx, ny, nz);
2008}
2009
2010inline void QOpenGLFunctions_1_4::glIndexsv(const GLshort *c)
2011{
2012 d_1_0_Deprecated->f.Indexsv(c);
2013}
2014
2015inline void QOpenGLFunctions_1_4::glIndexs(GLshort c)
2016{
2017 d_1_0_Deprecated->f.Indexs(c);
2018}
2019
2020inline void QOpenGLFunctions_1_4::glIndexiv(const GLint *c)
2021{
2022 d_1_0_Deprecated->f.Indexiv(c);
2023}
2024
2025inline void QOpenGLFunctions_1_4::glIndexi(GLint c)
2026{
2027 d_1_0_Deprecated->f.Indexi(c);
2028}
2029
2030inline void QOpenGLFunctions_1_4::glIndexfv(const GLfloat *c)
2031{
2032 d_1_0_Deprecated->f.Indexfv(c);
2033}
2034
2035inline void QOpenGLFunctions_1_4::glIndexf(GLfloat c)
2036{
2037 d_1_0_Deprecated->f.Indexf(c);
2038}
2039
2040inline void QOpenGLFunctions_1_4::glIndexdv(const GLdouble *c)
2041{
2042 d_1_0_Deprecated->f.Indexdv(c);
2043}
2044
2045inline void QOpenGLFunctions_1_4::glIndexd(GLdouble c)
2046{
2047 d_1_0_Deprecated->f.Indexd(c);
2048}
2049
2050inline void QOpenGLFunctions_1_4::glEnd()
2051{
2052 d_1_0_Deprecated->f.End();
2053}
2054
2055inline void QOpenGLFunctions_1_4::glEdgeFlagv(const GLboolean *flag)
2056{
2057 d_1_0_Deprecated->f.EdgeFlagv(flag);
2058}
2059
2060inline void QOpenGLFunctions_1_4::glEdgeFlag(GLboolean flag)
2061{
2062 d_1_0_Deprecated->f.EdgeFlag(flag);
2063}
2064
2065inline void QOpenGLFunctions_1_4::glColor4usv(const GLushort *v)
2066{
2067 d_1_0_Deprecated->f.Color4usv(v);
2068}
2069
2070inline void QOpenGLFunctions_1_4::glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha)
2071{
2072 d_1_0_Deprecated->f.Color4us(red, green, blue, alpha);
2073}
2074
2075inline void QOpenGLFunctions_1_4::glColor4uiv(const GLuint *v)
2076{
2077 d_1_0_Deprecated->f.Color4uiv(v);
2078}
2079
2080inline void QOpenGLFunctions_1_4::glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha)
2081{
2082 d_1_0_Deprecated->f.Color4ui(red, green, blue, alpha);
2083}
2084
2085inline void QOpenGLFunctions_1_4::glColor4ubv(const GLubyte *v)
2086{
2087 d_1_0_Deprecated->f.Color4ubv(v);
2088}
2089
2090inline void QOpenGLFunctions_1_4::glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha)
2091{
2092 d_1_0_Deprecated->f.Color4ub(red, green, blue, alpha);
2093}
2094
2095inline void QOpenGLFunctions_1_4::glColor4sv(const GLshort *v)
2096{
2097 d_1_0_Deprecated->f.Color4sv(v);
2098}
2099
2100inline void QOpenGLFunctions_1_4::glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha)
2101{
2102 d_1_0_Deprecated->f.Color4s(red, green, blue, alpha);
2103}
2104
2105inline void QOpenGLFunctions_1_4::glColor4iv(const GLint *v)
2106{
2107 d_1_0_Deprecated->f.Color4iv(v);
2108}
2109
2110inline void QOpenGLFunctions_1_4::glColor4i(GLint red, GLint green, GLint blue, GLint alpha)
2111{
2112 d_1_0_Deprecated->f.Color4i(red, green, blue, alpha);
2113}
2114
2115inline void QOpenGLFunctions_1_4::glColor4fv(const GLfloat *v)
2116{
2117 d_1_0_Deprecated->f.Color4fv(v);
2118}
2119
2120inline void QOpenGLFunctions_1_4::glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
2121{
2122 d_1_0_Deprecated->f.Color4f(red, green, blue, alpha);
2123}
2124
2125inline void QOpenGLFunctions_1_4::glColor4dv(const GLdouble *v)
2126{
2127 d_1_0_Deprecated->f.Color4dv(v);
2128}
2129
2130inline void QOpenGLFunctions_1_4::glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha)
2131{
2132 d_1_0_Deprecated->f.Color4d(red, green, blue, alpha);
2133}
2134
2135inline void QOpenGLFunctions_1_4::glColor4bv(const GLbyte *v)
2136{
2137 d_1_0_Deprecated->f.Color4bv(v);
2138}
2139
2140inline void QOpenGLFunctions_1_4::glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha)
2141{
2142 d_1_0_Deprecated->f.Color4b(red, green, blue, alpha);
2143}
2144
2145inline void QOpenGLFunctions_1_4::glColor3usv(const GLushort *v)
2146{
2147 d_1_0_Deprecated->f.Color3usv(v);
2148}
2149
2150inline void QOpenGLFunctions_1_4::glColor3us(GLushort red, GLushort green, GLushort blue)
2151{
2152 d_1_0_Deprecated->f.Color3us(red, green, blue);
2153}
2154
2155inline void QOpenGLFunctions_1_4::glColor3uiv(const GLuint *v)
2156{
2157 d_1_0_Deprecated->f.Color3uiv(v);
2158}
2159
2160inline void QOpenGLFunctions_1_4::glColor3ui(GLuint red, GLuint green, GLuint blue)
2161{
2162 d_1_0_Deprecated->f.Color3ui(red, green, blue);
2163}
2164
2165inline void QOpenGLFunctions_1_4::glColor3ubv(const GLubyte *v)
2166{
2167 d_1_0_Deprecated->f.Color3ubv(v);
2168}
2169
2170inline void QOpenGLFunctions_1_4::glColor3ub(GLubyte red, GLubyte green, GLubyte blue)
2171{
2172 d_1_0_Deprecated->f.Color3ub(red, green, blue);
2173}
2174
2175inline void QOpenGLFunctions_1_4::glColor3sv(const GLshort *v)
2176{
2177 d_1_0_Deprecated->f.Color3sv(v);
2178}
2179
2180inline void QOpenGLFunctions_1_4::glColor3s(GLshort red, GLshort green, GLshort blue)
2181{
2182 d_1_0_Deprecated->f.Color3s(red, green, blue);
2183}
2184
2185inline void QOpenGLFunctions_1_4::glColor3iv(const GLint *v)
2186{
2187 d_1_0_Deprecated->f.Color3iv(v);
2188}
2189
2190inline void QOpenGLFunctions_1_4::glColor3i(GLint red, GLint green, GLint blue)
2191{
2192 d_1_0_Deprecated->f.Color3i(red, green, blue);
2193}
2194
2195inline void QOpenGLFunctions_1_4::glColor3fv(const GLfloat *v)
2196{
2197 d_1_0_Deprecated->f.Color3fv(v);
2198}
2199
2200inline void QOpenGLFunctions_1_4::glColor3f(GLfloat red, GLfloat green, GLfloat blue)
2201{
2202 d_1_0_Deprecated->f.Color3f(red, green, blue);
2203}
2204
2205inline void QOpenGLFunctions_1_4::glColor3dv(const GLdouble *v)
2206{
2207 d_1_0_Deprecated->f.Color3dv(v);
2208}
2209
2210inline void QOpenGLFunctions_1_4::glColor3d(GLdouble red, GLdouble green, GLdouble blue)
2211{
2212 d_1_0_Deprecated->f.Color3d(red, green, blue);
2213}
2214
2215inline void QOpenGLFunctions_1_4::glColor3bv(const GLbyte *v)
2216{
2217 d_1_0_Deprecated->f.Color3bv(v);
2218}
2219
2220inline void QOpenGLFunctions_1_4::glColor3b(GLbyte red, GLbyte green, GLbyte blue)
2221{
2222 d_1_0_Deprecated->f.Color3b(red, green, blue);
2223}
2224
2225inline void QOpenGLFunctions_1_4::glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap)
2226{
2227 d_1_0_Deprecated->f.Bitmap(width, height, xorig, yorig, xmove, ymove, bitmap);
2228}
2229
2230inline void QOpenGLFunctions_1_4::glBegin(GLenum mode)
2231{
2232 d_1_0_Deprecated->f.Begin(mode);
2233}
2234
2235inline void QOpenGLFunctions_1_4::glListBase(GLuint base)
2236{
2237 d_1_0_Deprecated->f.ListBase(base);
2238}
2239
2240inline GLuint QOpenGLFunctions_1_4::glGenLists(GLsizei range)
2241{
2242 return d_1_0_Deprecated->f.GenLists(range);
2243}
2244
2245inline void QOpenGLFunctions_1_4::glDeleteLists(GLuint list, GLsizei range)
2246{
2247 d_1_0_Deprecated->f.DeleteLists(list, range);
2248}
2249
2250inline void QOpenGLFunctions_1_4::glCallLists(GLsizei n, GLenum type, const GLvoid *lists)
2251{
2252 d_1_0_Deprecated->f.CallLists(n, type, lists);
2253}
2254
2255inline void QOpenGLFunctions_1_4::glCallList(GLuint list)
2256{
2257 d_1_0_Deprecated->f.CallList(list);
2258}
2259
2260inline void QOpenGLFunctions_1_4::glEndList()
2261{
2262 d_1_0_Deprecated->f.EndList();
2263}
2264
2265inline void QOpenGLFunctions_1_4::glNewList(GLuint list, GLenum mode)
2266{
2267 d_1_0_Deprecated->f.NewList(list, mode);
2268}
2269
2270
2271// OpenGL 1.1 deprecated functions
2272inline void QOpenGLFunctions_1_4::glPushClientAttrib(GLbitfield mask)
2273{
2274 d_1_1_Deprecated->f.PushClientAttrib(mask);
2275}
2276
2277inline void QOpenGLFunctions_1_4::glPopClientAttrib()
2278{
2279 d_1_1_Deprecated->f.PopClientAttrib();
2280}
2281
2282inline void QOpenGLFunctions_1_4::glPrioritizeTextures(GLsizei n, const GLuint *textures, const GLfloat *priorities)
2283{
2284 d_1_1_Deprecated->f.PrioritizeTextures(n, textures, priorities);
2285}
2286
2287inline GLboolean QOpenGLFunctions_1_4::glAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences)
2288{
2289 return d_1_1_Deprecated->f.AreTexturesResident(n, textures, residences);
2290}
2291
2292inline void QOpenGLFunctions_1_4::glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
2293{
2294 d_1_1_Deprecated->f.VertexPointer(size, type, stride, pointer);
2295}
2296
2297inline void QOpenGLFunctions_1_4::glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
2298{
2299 d_1_1_Deprecated->f.TexCoordPointer(size, type, stride, pointer);
2300}
2301
2302inline void QOpenGLFunctions_1_4::glNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
2303{
2304 d_1_1_Deprecated->f.NormalPointer(type, stride, pointer);
2305}
2306
2307inline void QOpenGLFunctions_1_4::glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer)
2308{
2309 d_1_1_Deprecated->f.InterleavedArrays(format, stride, pointer);
2310}
2311
2312inline void QOpenGLFunctions_1_4::glIndexPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
2313{
2314 d_1_1_Deprecated->f.IndexPointer(type, stride, pointer);
2315}
2316
2317inline void QOpenGLFunctions_1_4::glEnableClientState(GLenum array)
2318{
2319 d_1_1_Deprecated->f.EnableClientState(array);
2320}
2321
2322inline void QOpenGLFunctions_1_4::glEdgeFlagPointer(GLsizei stride, const GLvoid *pointer)
2323{
2324 d_1_1_Deprecated->f.EdgeFlagPointer(stride, pointer);
2325}
2326
2327inline void QOpenGLFunctions_1_4::glDisableClientState(GLenum array)
2328{
2329 d_1_1_Deprecated->f.DisableClientState(array);
2330}
2331
2332inline void QOpenGLFunctions_1_4::glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
2333{
2334 d_1_1_Deprecated->f.ColorPointer(size, type, stride, pointer);
2335}
2336
2337inline void QOpenGLFunctions_1_4::glArrayElement(GLint i)
2338{
2339 d_1_1_Deprecated->f.ArrayElement(i);
2340}
2341
2342
2343// OpenGL 1.2 deprecated functions
2344inline void QOpenGLFunctions_1_4::glResetMinmax(GLenum target)
2345{
2346 d_1_2_Deprecated->f.ResetMinmax(target);
2347}
2348
2349inline void QOpenGLFunctions_1_4::glResetHistogram(GLenum target)
2350{
2351 d_1_2_Deprecated->f.ResetHistogram(target);
2352}
2353
2354inline void QOpenGLFunctions_1_4::glMinmax(GLenum target, GLenum internalformat, GLboolean sink)
2355{
2356 d_1_2_Deprecated->f.Minmax(target, internalformat, sink);
2357}
2358
2359inline void QOpenGLFunctions_1_4::glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink)
2360{
2361 d_1_2_Deprecated->f.Histogram(target, width, internalformat, sink);
2362}
2363
2364inline void QOpenGLFunctions_1_4::glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint *params)
2365{
2366 d_1_2_Deprecated->f.GetMinmaxParameteriv(target, pname, params);
2367}
2368
2369inline void QOpenGLFunctions_1_4::glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat *params)
2370{
2371 d_1_2_Deprecated->f.GetMinmaxParameterfv(target, pname, params);
2372}
2373
2374inline void QOpenGLFunctions_1_4::glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
2375{
2376 d_1_2_Deprecated->f.GetMinmax(target, reset, format, type, values);
2377}
2378
2379inline void QOpenGLFunctions_1_4::glGetHistogramParameteriv(GLenum target, GLenum pname, GLint *params)
2380{
2381 d_1_2_Deprecated->f.GetHistogramParameteriv(target, pname, params);
2382}
2383
2384inline void QOpenGLFunctions_1_4::glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat *params)
2385{
2386 d_1_2_Deprecated->f.GetHistogramParameterfv(target, pname, params);
2387}
2388
2389inline void QOpenGLFunctions_1_4::glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
2390{
2391 d_1_2_Deprecated->f.GetHistogram(target, reset, format, type, values);
2392}
2393
2394inline void QOpenGLFunctions_1_4::glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
2395{
2396 d_1_2_Deprecated->f.SeparableFilter2D(target, internalformat, width, height, format, type, row, column);
2397}
2398
2399inline void QOpenGLFunctions_1_4::glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span)
2400{
2401 d_1_2_Deprecated->f.GetSeparableFilter(target, format, type, row, column, span);
2402}
2403
2404inline void QOpenGLFunctions_1_4::glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params)
2405{
2406 d_1_2_Deprecated->f.GetConvolutionParameteriv(target, pname, params);
2407}
2408
2409inline void QOpenGLFunctions_1_4::glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params)
2410{
2411 d_1_2_Deprecated->f.GetConvolutionParameterfv(target, pname, params);
2412}
2413
2414inline void QOpenGLFunctions_1_4::glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid *image)
2415{
2416 d_1_2_Deprecated->f.GetConvolutionFilter(target, format, type, image);
2417}
2418
2419inline void QOpenGLFunctions_1_4::glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height)
2420{
2421 d_1_2_Deprecated->f.CopyConvolutionFilter2D(target, internalformat, x, y, width, height);
2422}
2423
2424inline void QOpenGLFunctions_1_4::glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width)
2425{
2426 d_1_2_Deprecated->f.CopyConvolutionFilter1D(target, internalformat, x, y, width);
2427}
2428
2429inline void QOpenGLFunctions_1_4::glConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params)
2430{
2431 d_1_2_Deprecated->f.ConvolutionParameteriv(target, pname, params);
2432}
2433
2434inline void QOpenGLFunctions_1_4::glConvolutionParameteri(GLenum target, GLenum pname, GLint params)
2435{
2436 d_1_2_Deprecated->f.ConvolutionParameteri(target, pname, params);
2437}
2438
2439inline void QOpenGLFunctions_1_4::glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat *params)
2440{
2441 d_1_2_Deprecated->f.ConvolutionParameterfv(target, pname, params);
2442}
2443
2444inline void QOpenGLFunctions_1_4::glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params)
2445{
2446 d_1_2_Deprecated->f.ConvolutionParameterf(target, pname, params);
2447}
2448
2449inline void QOpenGLFunctions_1_4::glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image)
2450{
2451 d_1_2_Deprecated->f.ConvolutionFilter2D(target, internalformat, width, height, format, type, image);
2452}
2453
2454inline void QOpenGLFunctions_1_4::glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image)
2455{
2456 d_1_2_Deprecated->f.ConvolutionFilter1D(target, internalformat, width, format, type, image);
2457}
2458
2459inline void QOpenGLFunctions_1_4::glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width)
2460{
2461 d_1_2_Deprecated->f.CopyColorSubTable(target, start, x, y, width);
2462}
2463
2464inline void QOpenGLFunctions_1_4::glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data)
2465{
2466 d_1_2_Deprecated->f.ColorSubTable(target, start, count, format, type, data);
2467}
2468
2469inline void QOpenGLFunctions_1_4::glGetColorTableParameteriv(GLenum target, GLenum pname, GLint *params)
2470{
2471 d_1_2_Deprecated->f.GetColorTableParameteriv(target, pname, params);
2472}
2473
2474inline void QOpenGLFunctions_1_4::glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat *params)
2475{
2476 d_1_2_Deprecated->f.GetColorTableParameterfv(target, pname, params);
2477}
2478
2479inline void QOpenGLFunctions_1_4::glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid *table)
2480{
2481 d_1_2_Deprecated->f.GetColorTable(target, format, type, table);
2482}
2483
2484inline void QOpenGLFunctions_1_4::glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width)
2485{
2486 d_1_2_Deprecated->f.CopyColorTable(target, internalformat, x, y, width);
2487}
2488
2489inline void QOpenGLFunctions_1_4::glColorTableParameteriv(GLenum target, GLenum pname, const GLint *params)
2490{
2491 d_1_2_Deprecated->f.ColorTableParameteriv(target, pname, params);
2492}
2493
2494inline void QOpenGLFunctions_1_4::glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params)
2495{
2496 d_1_2_Deprecated->f.ColorTableParameterfv(target, pname, params);
2497}
2498
2499inline void QOpenGLFunctions_1_4::glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table)
2500{
2501 d_1_2_Deprecated->f.ColorTable(target, internalformat, width, format, type, table);
2502}
2503
2504
2505// OpenGL 1.3 deprecated functions
2506inline void QOpenGLFunctions_1_4::glMultTransposeMatrixd(const GLdouble *m)
2507{
2508 d_1_3_Deprecated->f.MultTransposeMatrixd(m);
2509}
2510
2511inline void QOpenGLFunctions_1_4::glMultTransposeMatrixf(const GLfloat *m)
2512{
2513 d_1_3_Deprecated->f.MultTransposeMatrixf(m);
2514}
2515
2516inline void QOpenGLFunctions_1_4::glLoadTransposeMatrixd(const GLdouble *m)
2517{
2518 d_1_3_Deprecated->f.LoadTransposeMatrixd(m);
2519}
2520
2521inline void QOpenGLFunctions_1_4::glLoadTransposeMatrixf(const GLfloat *m)
2522{
2523 d_1_3_Deprecated->f.LoadTransposeMatrixf(m);
2524}
2525
2526inline void QOpenGLFunctions_1_4::glMultiTexCoord4sv(GLenum target, const GLshort *v)
2527{
2528 d_1_3_Deprecated->f.MultiTexCoord4sv(target, v);
2529}
2530
2531inline void QOpenGLFunctions_1_4::glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q)
2532{
2533 d_1_3_Deprecated->f.MultiTexCoord4s(target, s, t, r, q);
2534}
2535
2536inline void QOpenGLFunctions_1_4::glMultiTexCoord4iv(GLenum target, const GLint *v)
2537{
2538 d_1_3_Deprecated->f.MultiTexCoord4iv(target, v);
2539}
2540
2541inline void QOpenGLFunctions_1_4::glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q)
2542{
2543 d_1_3_Deprecated->f.MultiTexCoord4i(target, s, t, r, q);
2544}
2545
2546inline void QOpenGLFunctions_1_4::glMultiTexCoord4fv(GLenum target, const GLfloat *v)
2547{
2548 d_1_3_Deprecated->f.MultiTexCoord4fv(target, v);
2549}
2550
2551inline void QOpenGLFunctions_1_4::glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
2552{
2553 d_1_3_Deprecated->f.MultiTexCoord4f(target, s, t, r, q);
2554}
2555
2556inline void QOpenGLFunctions_1_4::glMultiTexCoord4dv(GLenum target, const GLdouble *v)
2557{
2558 d_1_3_Deprecated->f.MultiTexCoord4dv(target, v);
2559}
2560
2561inline void QOpenGLFunctions_1_4::glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q)
2562{
2563 d_1_3_Deprecated->f.MultiTexCoord4d(target, s, t, r, q);
2564}
2565
2566inline void QOpenGLFunctions_1_4::glMultiTexCoord3sv(GLenum target, const GLshort *v)
2567{
2568 d_1_3_Deprecated->f.MultiTexCoord3sv(target, v);
2569}
2570
2571inline void QOpenGLFunctions_1_4::glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r)
2572{
2573 d_1_3_Deprecated->f.MultiTexCoord3s(target, s, t, r);
2574}
2575
2576inline void QOpenGLFunctions_1_4::glMultiTexCoord3iv(GLenum target, const GLint *v)
2577{
2578 d_1_3_Deprecated->f.MultiTexCoord3iv(target, v);
2579}
2580
2581inline void QOpenGLFunctions_1_4::glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r)
2582{
2583 d_1_3_Deprecated->f.MultiTexCoord3i(target, s, t, r);
2584}
2585
2586inline void QOpenGLFunctions_1_4::glMultiTexCoord3fv(GLenum target, const GLfloat *v)
2587{
2588 d_1_3_Deprecated->f.MultiTexCoord3fv(target, v);
2589}
2590
2591inline void QOpenGLFunctions_1_4::glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r)
2592{
2593 d_1_3_Deprecated->f.MultiTexCoord3f(target, s, t, r);
2594}
2595
2596inline void QOpenGLFunctions_1_4::glMultiTexCoord3dv(GLenum target, const GLdouble *v)
2597{
2598 d_1_3_Deprecated->f.MultiTexCoord3dv(target, v);
2599}
2600
2601inline void QOpenGLFunctions_1_4::glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r)
2602{
2603 d_1_3_Deprecated->f.MultiTexCoord3d(target, s, t, r);
2604}
2605
2606inline void QOpenGLFunctions_1_4::glMultiTexCoord2sv(GLenum target, const GLshort *v)
2607{
2608 d_1_3_Deprecated->f.MultiTexCoord2sv(target, v);
2609}
2610
2611inline void QOpenGLFunctions_1_4::glMultiTexCoord2s(GLenum target, GLshort s, GLshort t)
2612{
2613 d_1_3_Deprecated->f.MultiTexCoord2s(target, s, t);
2614}
2615
2616inline void QOpenGLFunctions_1_4::glMultiTexCoord2iv(GLenum target, const GLint *v)
2617{
2618 d_1_3_Deprecated->f.MultiTexCoord2iv(target, v);
2619}
2620
2621inline void QOpenGLFunctions_1_4::glMultiTexCoord2i(GLenum target, GLint s, GLint t)
2622{
2623 d_1_3_Deprecated->f.MultiTexCoord2i(target, s, t);
2624}
2625
2626inline void QOpenGLFunctions_1_4::glMultiTexCoord2fv(GLenum target, const GLfloat *v)
2627{
2628 d_1_3_Deprecated->f.MultiTexCoord2fv(target, v);
2629}
2630
2631inline void QOpenGLFunctions_1_4::glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t)
2632{
2633 d_1_3_Deprecated->f.MultiTexCoord2f(target, s, t);
2634}
2635
2636inline void QOpenGLFunctions_1_4::glMultiTexCoord2dv(GLenum target, const GLdouble *v)
2637{
2638 d_1_3_Deprecated->f.MultiTexCoord2dv(target, v);
2639}
2640
2641inline void QOpenGLFunctions_1_4::glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t)
2642{
2643 d_1_3_Deprecated->f.MultiTexCoord2d(target, s, t);
2644}
2645
2646inline void QOpenGLFunctions_1_4::glMultiTexCoord1sv(GLenum target, const GLshort *v)
2647{
2648 d_1_3_Deprecated->f.MultiTexCoord1sv(target, v);
2649}
2650
2651inline void QOpenGLFunctions_1_4::glMultiTexCoord1s(GLenum target, GLshort s)
2652{
2653 d_1_3_Deprecated->f.MultiTexCoord1s(target, s);
2654}
2655
2656inline void QOpenGLFunctions_1_4::glMultiTexCoord1iv(GLenum target, const GLint *v)
2657{
2658 d_1_3_Deprecated->f.MultiTexCoord1iv(target, v);
2659}
2660
2661inline void QOpenGLFunctions_1_4::glMultiTexCoord1i(GLenum target, GLint s)
2662{
2663 d_1_3_Deprecated->f.MultiTexCoord1i(target, s);
2664}
2665
2666inline void QOpenGLFunctions_1_4::glMultiTexCoord1fv(GLenum target, const GLfloat *v)
2667{
2668 d_1_3_Deprecated->f.MultiTexCoord1fv(target, v);
2669}
2670
2671inline void QOpenGLFunctions_1_4::glMultiTexCoord1f(GLenum target, GLfloat s)
2672{
2673 d_1_3_Deprecated->f.MultiTexCoord1f(target, s);
2674}
2675
2676inline void QOpenGLFunctions_1_4::glMultiTexCoord1dv(GLenum target, const GLdouble *v)
2677{
2678 d_1_3_Deprecated->f.MultiTexCoord1dv(target, v);
2679}
2680
2681inline void QOpenGLFunctions_1_4::glMultiTexCoord1d(GLenum target, GLdouble s)
2682{
2683 d_1_3_Deprecated->f.MultiTexCoord1d(target, s);
2684}
2685
2686inline void QOpenGLFunctions_1_4::glClientActiveTexture(GLenum texture)
2687{
2688 d_1_3_Deprecated->f.ClientActiveTexture(texture);
2689}
2690
2691
2692// OpenGL 1.4 deprecated functions
2693inline void QOpenGLFunctions_1_4::glWindowPos3sv(const GLshort *v)
2694{
2695 d_1_4_Deprecated->f.WindowPos3sv(v);
2696}
2697
2698inline void QOpenGLFunctions_1_4::glWindowPos3s(GLshort x, GLshort y, GLshort z)
2699{
2700 d_1_4_Deprecated->f.WindowPos3s(x, y, z);
2701}
2702
2703inline void QOpenGLFunctions_1_4::glWindowPos3iv(const GLint *v)
2704{
2705 d_1_4_Deprecated->f.WindowPos3iv(v);
2706}
2707
2708inline void QOpenGLFunctions_1_4::glWindowPos3i(GLint x, GLint y, GLint z)
2709{
2710 d_1_4_Deprecated->f.WindowPos3i(x, y, z);
2711}
2712
2713inline void QOpenGLFunctions_1_4::glWindowPos3fv(const GLfloat *v)
2714{
2715 d_1_4_Deprecated->f.WindowPos3fv(v);
2716}
2717
2718inline void QOpenGLFunctions_1_4::glWindowPos3f(GLfloat x, GLfloat y, GLfloat z)
2719{
2720 d_1_4_Deprecated->f.WindowPos3f(x, y, z);
2721}
2722
2723inline void QOpenGLFunctions_1_4::glWindowPos3dv(const GLdouble *v)
2724{
2725 d_1_4_Deprecated->f.WindowPos3dv(v);
2726}
2727
2728inline void QOpenGLFunctions_1_4::glWindowPos3d(GLdouble x, GLdouble y, GLdouble z)
2729{
2730 d_1_4_Deprecated->f.WindowPos3d(x, y, z);
2731}
2732
2733inline void QOpenGLFunctions_1_4::glWindowPos2sv(const GLshort *v)
2734{
2735 d_1_4_Deprecated->f.WindowPos2sv(v);
2736}
2737
2738inline void QOpenGLFunctions_1_4::glWindowPos2s(GLshort x, GLshort y)
2739{
2740 d_1_4_Deprecated->f.WindowPos2s(x, y);
2741}
2742
2743inline void QOpenGLFunctions_1_4::glWindowPos2iv(const GLint *v)
2744{
2745 d_1_4_Deprecated->f.WindowPos2iv(v);
2746}
2747
2748inline void QOpenGLFunctions_1_4::glWindowPos2i(GLint x, GLint y)
2749{
2750 d_1_4_Deprecated->f.WindowPos2i(x, y);
2751}
2752
2753inline void QOpenGLFunctions_1_4::glWindowPos2fv(const GLfloat *v)
2754{
2755 d_1_4_Deprecated->f.WindowPos2fv(v);
2756}
2757
2758inline void QOpenGLFunctions_1_4::glWindowPos2f(GLfloat x, GLfloat y)
2759{
2760 d_1_4_Deprecated->f.WindowPos2f(x, y);
2761}
2762
2763inline void QOpenGLFunctions_1_4::glWindowPos2dv(const GLdouble *v)
2764{
2765 d_1_4_Deprecated->f.WindowPos2dv(v);
2766}
2767
2768inline void QOpenGLFunctions_1_4::glWindowPos2d(GLdouble x, GLdouble y)
2769{
2770 d_1_4_Deprecated->f.WindowPos2d(x, y);
2771}
2772
2773inline void QOpenGLFunctions_1_4::glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
2774{
2775 d_1_4_Deprecated->f.SecondaryColorPointer(size, type, stride, pointer);
2776}
2777
2778inline void QOpenGLFunctions_1_4::glSecondaryColor3usv(const GLushort *v)
2779{
2780 d_1_4_Deprecated->f.SecondaryColor3usv(v);
2781}
2782
2783inline void QOpenGLFunctions_1_4::glSecondaryColor3us(GLushort red, GLushort green, GLushort blue)
2784{
2785 d_1_4_Deprecated->f.SecondaryColor3us(red, green, blue);
2786}
2787
2788inline void QOpenGLFunctions_1_4::glSecondaryColor3uiv(const GLuint *v)
2789{
2790 d_1_4_Deprecated->f.SecondaryColor3uiv(v);
2791}
2792
2793inline void QOpenGLFunctions_1_4::glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue)
2794{
2795 d_1_4_Deprecated->f.SecondaryColor3ui(red, green, blue);
2796}
2797
2798inline void QOpenGLFunctions_1_4::glSecondaryColor3ubv(const GLubyte *v)
2799{
2800 d_1_4_Deprecated->f.SecondaryColor3ubv(v);
2801}
2802
2803inline void QOpenGLFunctions_1_4::glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue)
2804{
2805 d_1_4_Deprecated->f.SecondaryColor3ub(red, green, blue);
2806}
2807
2808inline void QOpenGLFunctions_1_4::glSecondaryColor3sv(const GLshort *v)
2809{
2810 d_1_4_Deprecated->f.SecondaryColor3sv(v);
2811}
2812
2813inline void QOpenGLFunctions_1_4::glSecondaryColor3s(GLshort red, GLshort green, GLshort blue)
2814{
2815 d_1_4_Deprecated->f.SecondaryColor3s(red, green, blue);
2816}
2817
2818inline void QOpenGLFunctions_1_4::glSecondaryColor3iv(const GLint *v)
2819{
2820 d_1_4_Deprecated->f.SecondaryColor3iv(v);
2821}
2822
2823inline void QOpenGLFunctions_1_4::glSecondaryColor3i(GLint red, GLint green, GLint blue)
2824{
2825 d_1_4_Deprecated->f.SecondaryColor3i(red, green, blue);
2826}
2827
2828inline void QOpenGLFunctions_1_4::glSecondaryColor3fv(const GLfloat *v)
2829{
2830 d_1_4_Deprecated->f.SecondaryColor3fv(v);
2831}
2832
2833inline void QOpenGLFunctions_1_4::glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue)
2834{
2835 d_1_4_Deprecated->f.SecondaryColor3f(red, green, blue);
2836}
2837
2838inline void QOpenGLFunctions_1_4::glSecondaryColor3dv(const GLdouble *v)
2839{
2840 d_1_4_Deprecated->f.SecondaryColor3dv(v);
2841}
2842
2843inline void QOpenGLFunctions_1_4::glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue)
2844{
2845 d_1_4_Deprecated->f.SecondaryColor3d(red, green, blue);
2846}
2847
2848inline void QOpenGLFunctions_1_4::glSecondaryColor3bv(const GLbyte *v)
2849{
2850 d_1_4_Deprecated->f.SecondaryColor3bv(v);
2851}
2852
2853inline void QOpenGLFunctions_1_4::glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue)
2854{
2855 d_1_4_Deprecated->f.SecondaryColor3b(red, green, blue);
2856}
2857
2858inline void QOpenGLFunctions_1_4::glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
2859{
2860 d_1_4_Deprecated->f.FogCoordPointer(type, stride, pointer);
2861}
2862
2863inline void QOpenGLFunctions_1_4::glFogCoorddv(const GLdouble *coord)
2864{
2865 d_1_4_Deprecated->f.FogCoorddv(coord);
2866}
2867
2868inline void QOpenGLFunctions_1_4::glFogCoordd(GLdouble coord)
2869{
2870 d_1_4_Deprecated->f.FogCoordd(coord);
2871}
2872
2873inline void QOpenGLFunctions_1_4::glFogCoordfv(const GLfloat *coord)
2874{
2875 d_1_4_Deprecated->f.FogCoordfv(coord);
2876}
2877
2878inline void QOpenGLFunctions_1_4::glFogCoordf(GLfloat coord)
2879{
2880 d_1_4_Deprecated->f.FogCoordf(coord);
2881}
2882
2883
2884
2885QT_END_NAMESPACE
2886
2887#endif // QT_NO_OPENGL && !QT_CONFIG(opengles2)
2888
2889#endif
2890

source code of qtbase/src/opengl/qopenglfunctions_1_4.h