1/****************************************************************************
2**
3** Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB)
4** Copyright (C) 2016 The Qt Company Ltd.
5** Contact: https://www.qt.io/licensing/
6**
7** This file is part of the QtOpenGL module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial License Usage
11** Licensees holding valid commercial Qt licenses may use this file in
12** accordance with the commercial license agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and The Qt Company. For licensing terms
15** and conditions see https://www.qt.io/terms-conditions. For further
16** information use the contact form at https://www.qt.io/contact-us.
17**
18** GNU Lesser General Public License Usage
19** Alternatively, this file may be used under the terms of the GNU Lesser
20** General Public License version 3 as published by the Free Software
21** Foundation and appearing in the file LICENSE.LGPL3 included in the
22** packaging of this file. Please review the following information to
23** ensure the GNU Lesser General Public License version 3 requirements
24** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
25**
26** GNU General Public License Usage
27** Alternatively, this file may be used under the terms of the GNU
28** General Public License version 2.0 or (at your option) the GNU General
29** Public license version 3 or any later version approved by the KDE Free
30** Qt Foundation. The licenses are as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
32** included in the packaging of this file. Please review the following
33** information to ensure the GNU General Public License requirements will
34** be met: https://www.gnu.org/licenses/gpl-2.0.html and
35** https://www.gnu.org/licenses/gpl-3.0.html.
36**
37** $QT_END_LICENSE$
38**
39**
40** This file was generated by glgen version 0.1
41** Command line was: glgen
42**
43** glgen is Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB)
44**
45** This is an auto-generated file.
46** Do not edit! All changes made to it will be lost.
47**
48****************************************************************************/
49
50#ifndef QOPENGLVERSIONFUNCTIONS_3_0_H
51#define QOPENGLVERSIONFUNCTIONS_3_0_H
52
53#include <QtOpenGL/qtopenglglobal.h>
54
55#if !defined(QT_NO_OPENGL) && !QT_CONFIG(opengles2)
56
57#include <QtOpenGL/QOpenGLVersionProfile>
58#include <QtOpenGL/QOpenGLVersionFunctions>
59#include <QtGui/qopenglcontext.h>
60
61QT_BEGIN_NAMESPACE
62
63class Q_OPENGL_EXPORT QOpenGLFunctions_3_0 : public QAbstractOpenGLFunctions
64{
65public:
66 QOpenGLFunctions_3_0();
67 ~QOpenGLFunctions_3_0();
68
69 bool initializeOpenGLFunctions() override;
70
71 // OpenGL 1.0 core functions
72 void glViewport(GLint x, GLint y, GLsizei width, GLsizei height);
73 void glDepthRange(GLdouble nearVal, GLdouble farVal);
74 GLboolean glIsEnabled(GLenum cap);
75 void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params);
76 void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params);
77 void glGetTexParameteriv(GLenum target, GLenum pname, GLint *params);
78 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params);
79 void glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels);
80 const GLubyte * glGetString(GLenum name);
81 void glGetIntegerv(GLenum pname, GLint *params);
82 void glGetFloatv(GLenum pname, GLfloat *params);
83 GLenum glGetError();
84 void glGetDoublev(GLenum pname, GLdouble *params);
85 void glGetBooleanv(GLenum pname, GLboolean *params);
86 void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
87 void glReadBuffer(GLenum mode);
88 void glPixelStorei(GLenum pname, GLint param);
89 void glPixelStoref(GLenum pname, GLfloat param);
90 void glDepthFunc(GLenum func);
91 void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass);
92 void glStencilFunc(GLenum func, GLint ref, GLuint mask);
93 void glLogicOp(GLenum opcode);
94 void glBlendFunc(GLenum sfactor, GLenum dfactor);
95 void glFlush();
96 void glFinish();
97 void glEnable(GLenum cap);
98 void glDisable(GLenum cap);
99 void glDepthMask(GLboolean flag);
100 void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
101 void glStencilMask(GLuint mask);
102 void glClearDepth(GLdouble depth);
103 void glClearStencil(GLint s);
104 void glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
105 void glClear(GLbitfield mask);
106 void glDrawBuffer(GLenum mode);
107 void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
108 void glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
109 void glTexParameteriv(GLenum target, GLenum pname, const GLint *params);
110 void glTexParameteri(GLenum target, GLenum pname, GLint param);
111 void glTexParameterfv(GLenum target, GLenum pname, const GLfloat *params);
112 void glTexParameterf(GLenum target, GLenum pname, GLfloat param);
113 void glScissor(GLint x, GLint y, GLsizei width, GLsizei height);
114 void glPolygonMode(GLenum face, GLenum mode);
115 void glPointSize(GLfloat size);
116 void glLineWidth(GLfloat width);
117 void glHint(GLenum target, GLenum mode);
118 void glFrontFace(GLenum mode);
119 void glCullFace(GLenum mode);
120
121 // OpenGL 1.1 core functions
122 void glIndexubv(const GLubyte *c);
123 void glIndexub(GLubyte c);
124 GLboolean glIsTexture(GLuint texture);
125 void glGenTextures(GLsizei n, GLuint *textures);
126 void glDeleteTextures(GLsizei n, const GLuint *textures);
127 void glBindTexture(GLenum target, GLuint texture);
128 void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
129 void glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
130 void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
131 void glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
132 void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
133 void glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
134 void glPolygonOffset(GLfloat factor, GLfloat units);
135 void glGetPointerv(GLenum pname, GLvoid* *params);
136 void glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
137 void glDrawArrays(GLenum mode, GLint first, GLsizei count);
138
139 // OpenGL 1.2 core functions
140 void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
141 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);
142 void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
143 void glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
144 void glBlendEquation(GLenum mode);
145 void glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
146
147 // OpenGL 1.3 core functions
148 void glGetCompressedTexImage(GLenum target, GLint level, GLvoid *img);
149 void glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data);
150 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
151 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);
152 void glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data);
153 void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data);
154 void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data);
155 void glSampleCoverage(GLfloat value, GLboolean invert);
156 void glActiveTexture(GLenum texture);
157
158 // OpenGL 1.4 core functions
159 void glPointParameteriv(GLenum pname, const GLint *params);
160 void glPointParameteri(GLenum pname, GLint param);
161 void glPointParameterfv(GLenum pname, const GLfloat *params);
162 void glPointParameterf(GLenum pname, GLfloat param);
163 void glMultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei drawcount);
164 void glMultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount);
165 void glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
166
167 // OpenGL 1.5 core functions
168 void glGetBufferPointerv(GLenum target, GLenum pname, GLvoid* *params);
169 void glGetBufferParameteriv(GLenum target, GLenum pname, GLint *params);
170 GLboolean glUnmapBuffer(GLenum target);
171 GLvoid* glMapBuffer(GLenum target, GLenum access);
172 void glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data);
173 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data);
174 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage);
175 GLboolean glIsBuffer(GLuint buffer);
176 void glGenBuffers(GLsizei n, GLuint *buffers);
177 void glDeleteBuffers(GLsizei n, const GLuint *buffers);
178 void glBindBuffer(GLenum target, GLuint buffer);
179 void glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params);
180 void glGetQueryObjectiv(GLuint id, GLenum pname, GLint *params);
181 void glGetQueryiv(GLenum target, GLenum pname, GLint *params);
182 void glEndQuery(GLenum target);
183 void glBeginQuery(GLenum target, GLuint id);
184 GLboolean glIsQuery(GLuint id);
185 void glDeleteQueries(GLsizei n, const GLuint *ids);
186 void glGenQueries(GLsizei n, GLuint *ids);
187
188 // OpenGL 2.0 core functions
189 void glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer);
190 void glValidateProgram(GLuint program);
191 void glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
192 void glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
193 void glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
194 void glUniform4iv(GLint location, GLsizei count, const GLint *value);
195 void glUniform3iv(GLint location, GLsizei count, const GLint *value);
196 void glUniform2iv(GLint location, GLsizei count, const GLint *value);
197 void glUniform1iv(GLint location, GLsizei count, const GLint *value);
198 void glUniform4fv(GLint location, GLsizei count, const GLfloat *value);
199 void glUniform3fv(GLint location, GLsizei count, const GLfloat *value);
200 void glUniform2fv(GLint location, GLsizei count, const GLfloat *value);
201 void glUniform1fv(GLint location, GLsizei count, const GLfloat *value);
202 void glUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3);
203 void glUniform3i(GLint location, GLint v0, GLint v1, GLint v2);
204 void glUniform2i(GLint location, GLint v0, GLint v1);
205 void glUniform1i(GLint location, GLint v0);
206 void glUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
207 void glUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2);
208 void glUniform2f(GLint location, GLfloat v0, GLfloat v1);
209 void glUniform1f(GLint location, GLfloat v0);
210 void glUseProgram(GLuint program);
211 void glShaderSource(GLuint shader, GLsizei count, const GLchar* const *string, const GLint *length);
212 void glLinkProgram(GLuint program);
213 GLboolean glIsShader(GLuint shader);
214 GLboolean glIsProgram(GLuint program);
215 void glGetVertexAttribPointerv(GLuint index, GLenum pname, GLvoid* *pointer);
216 void glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params);
217 void glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params);
218 void glGetVertexAttribdv(GLuint index, GLenum pname, GLdouble *params);
219 void glGetUniformiv(GLuint program, GLint location, GLint *params);
220 void glGetUniformfv(GLuint program, GLint location, GLfloat *params);
221 GLint glGetUniformLocation(GLuint program, const GLchar *name);
222 void glGetShaderSource(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source);
223 void glGetShaderInfoLog(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
224 void glGetShaderiv(GLuint shader, GLenum pname, GLint *params);
225 void glGetProgramInfoLog(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
226 void glGetProgramiv(GLuint program, GLenum pname, GLint *params);
227 GLint glGetAttribLocation(GLuint program, const GLchar *name);
228 void glGetAttachedShaders(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *obj);
229 void glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
230 void glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
231 void glEnableVertexAttribArray(GLuint index);
232 void glDisableVertexAttribArray(GLuint index);
233 void glDetachShader(GLuint program, GLuint shader);
234 void glDeleteShader(GLuint shader);
235 void glDeleteProgram(GLuint program);
236 GLuint glCreateShader(GLenum type);
237 GLuint glCreateProgram();
238 void glCompileShader(GLuint shader);
239 void glBindAttribLocation(GLuint program, GLuint index, const GLchar *name);
240 void glAttachShader(GLuint program, GLuint shader);
241 void glStencilMaskSeparate(GLenum face, GLuint mask);
242 void glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask);
243 void glStencilOpSeparate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass);
244 void glDrawBuffers(GLsizei n, const GLenum *bufs);
245 void glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha);
246
247 // OpenGL 2.1 core functions
248 void glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
249 void glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
250 void glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
251 void glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
252 void glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
253 void glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value);
254
255 // OpenGL 3.0 core functions
256 GLboolean glIsVertexArray(GLuint array);
257 void glGenVertexArrays(GLsizei n, GLuint *arrays);
258 void glDeleteVertexArrays(GLsizei n, const GLuint *arrays);
259 void glBindVertexArray(GLuint array);
260 void glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length);
261 GLvoid* glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access);
262 void glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer);
263 void glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height);
264 void glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
265 void glGenerateMipmap(GLenum target);
266 void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params);
267 void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
268 void glFramebufferTexture3D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
269 void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
270 void glFramebufferTexture1D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
271 GLenum glCheckFramebufferStatus(GLenum target);
272 void glGenFramebuffers(GLsizei n, GLuint *framebuffers);
273 void glDeleteFramebuffers(GLsizei n, const GLuint *framebuffers);
274 void glBindFramebuffer(GLenum target, GLuint framebuffer);
275 GLboolean glIsFramebuffer(GLuint framebuffer);
276 void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint *params);
277 void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
278 void glGenRenderbuffers(GLsizei n, GLuint *renderbuffers);
279 void glDeleteRenderbuffers(GLsizei n, const GLuint *renderbuffers);
280 void glBindRenderbuffer(GLenum target, GLuint renderbuffer);
281 GLboolean glIsRenderbuffer(GLuint renderbuffer);
282 const GLubyte * glGetStringi(GLenum name, GLuint index);
283 void glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil);
284 void glClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value);
285 void glClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value);
286 void glClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value);
287 void glGetTexParameterIuiv(GLenum target, GLenum pname, GLuint *params);
288 void glGetTexParameterIiv(GLenum target, GLenum pname, GLint *params);
289 void glTexParameterIuiv(GLenum target, GLenum pname, const GLuint *params);
290 void glTexParameterIiv(GLenum target, GLenum pname, const GLint *params);
291 void glUniform4uiv(GLint location, GLsizei count, const GLuint *value);
292 void glUniform3uiv(GLint location, GLsizei count, const GLuint *value);
293 void glUniform2uiv(GLint location, GLsizei count, const GLuint *value);
294 void glUniform1uiv(GLint location, GLsizei count, const GLuint *value);
295 void glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
296 void glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2);
297 void glUniform2ui(GLint location, GLuint v0, GLuint v1);
298 void glUniform1ui(GLint location, GLuint v0);
299 GLint glGetFragDataLocation(GLuint program, const GLchar *name);
300 void glBindFragDataLocation(GLuint program, GLuint color, const GLchar *name);
301 void glGetUniformuiv(GLuint program, GLint location, GLuint *params);
302 void glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params);
303 void glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params);
304 void glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
305 void glEndConditionalRender();
306 void glBeginConditionalRender(GLuint id, GLenum mode);
307 void glClampColor(GLenum target, GLenum clamp);
308 void glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name);
309 void glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar* const *varyings, GLenum bufferMode);
310 void glBindBufferBase(GLenum target, GLuint index, GLuint buffer);
311 void glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
312 void glEndTransformFeedback();
313 void glBeginTransformFeedback(GLenum primitiveMode);
314 GLboolean glIsEnabledi(GLenum target, GLuint index);
315 void glDisablei(GLenum target, GLuint index);
316 void glEnablei(GLenum target, GLuint index);
317 void glGetIntegeri_v(GLenum target, GLuint index, GLint *data);
318 void glGetBooleani_v(GLenum target, GLuint index, GLboolean *data);
319 void glColorMaski(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a);
320
321 // OpenGL 1.0 deprecated functions
322 void glTranslatef(GLfloat x, GLfloat y, GLfloat z);
323 void glTranslated(GLdouble x, GLdouble y, GLdouble z);
324 void glScalef(GLfloat x, GLfloat y, GLfloat z);
325 void glScaled(GLdouble x, GLdouble y, GLdouble z);
326 void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
327 void glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
328 void glPushMatrix();
329 void glPopMatrix();
330 void glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
331 void glMultMatrixd(const GLdouble *m);
332 void glMultMatrixf(const GLfloat *m);
333 void glMatrixMode(GLenum mode);
334 void glLoadMatrixd(const GLdouble *m);
335 void glLoadMatrixf(const GLfloat *m);
336 void glLoadIdentity();
337 void glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar);
338 GLboolean glIsList(GLuint list);
339 void glGetTexGeniv(GLenum coord, GLenum pname, GLint *params);
340 void glGetTexGenfv(GLenum coord, GLenum pname, GLfloat *params);
341 void glGetTexGendv(GLenum coord, GLenum pname, GLdouble *params);
342 void glGetTexEnviv(GLenum target, GLenum pname, GLint *params);
343 void glGetTexEnvfv(GLenum target, GLenum pname, GLfloat *params);
344 void glGetPolygonStipple(GLubyte *mask);
345 void glGetPixelMapusv(GLenum map, GLushort *values);
346 void glGetPixelMapuiv(GLenum map, GLuint *values);
347 void glGetPixelMapfv(GLenum map, GLfloat *values);
348 void glGetMaterialiv(GLenum face, GLenum pname, GLint *params);
349 void glGetMaterialfv(GLenum face, GLenum pname, GLfloat *params);
350 void glGetMapiv(GLenum target, GLenum query, GLint *v);
351 void glGetMapfv(GLenum target, GLenum query, GLfloat *v);
352 void glGetMapdv(GLenum target, GLenum query, GLdouble *v);
353 void glGetLightiv(GLenum light, GLenum pname, GLint *params);
354 void glGetLightfv(GLenum light, GLenum pname, GLfloat *params);
355 void glGetClipPlane(GLenum plane, GLdouble *equation);
356 void glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
357 void glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type);
358 void glPixelMapusv(GLenum map, GLint mapsize, const GLushort *values);
359 void glPixelMapuiv(GLenum map, GLint mapsize, const GLuint *values);
360 void glPixelMapfv(GLenum map, GLint mapsize, const GLfloat *values);
361 void glPixelTransferi(GLenum pname, GLint param);
362 void glPixelTransferf(GLenum pname, GLfloat param);
363 void glPixelZoom(GLfloat xfactor, GLfloat yfactor);
364 void glAlphaFunc(GLenum func, GLfloat ref);
365 void glEvalPoint2(GLint i, GLint j);
366 void glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2);
367 void glEvalPoint1(GLint i);
368 void glEvalMesh1(GLenum mode, GLint i1, GLint i2);
369 void glEvalCoord2fv(const GLfloat *u);
370 void glEvalCoord2f(GLfloat u, GLfloat v);
371 void glEvalCoord2dv(const GLdouble *u);
372 void glEvalCoord2d(GLdouble u, GLdouble v);
373 void glEvalCoord1fv(const GLfloat *u);
374 void glEvalCoord1f(GLfloat u);
375 void glEvalCoord1dv(const GLdouble *u);
376 void glEvalCoord1d(GLdouble u);
377 void glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2);
378 void glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2);
379 void glMapGrid1f(GLint un, GLfloat u1, GLfloat u2);
380 void glMapGrid1d(GLint un, GLdouble u1, GLdouble u2);
381 void glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points);
382 void glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points);
383 void glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points);
384 void glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points);
385 void glPushAttrib(GLbitfield mask);
386 void glPopAttrib();
387 void glAccum(GLenum op, GLfloat value);
388 void glIndexMask(GLuint mask);
389 void glClearIndex(GLfloat c);
390 void glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
391 void glPushName(GLuint name);
392 void glPopName();
393 void glPassThrough(GLfloat token);
394 void glLoadName(GLuint name);
395 void glInitNames();
396 GLint glRenderMode(GLenum mode);
397 void glSelectBuffer(GLsizei size, GLuint *buffer);
398 void glFeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer);
399 void glTexGeniv(GLenum coord, GLenum pname, const GLint *params);
400 void glTexGeni(GLenum coord, GLenum pname, GLint param);
401 void glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params);
402 void glTexGenf(GLenum coord, GLenum pname, GLfloat param);
403 void glTexGendv(GLenum coord, GLenum pname, const GLdouble *params);
404 void glTexGend(GLenum coord, GLenum pname, GLdouble param);
405 void glTexEnviv(GLenum target, GLenum pname, const GLint *params);
406 void glTexEnvi(GLenum target, GLenum pname, GLint param);
407 void glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params);
408 void glTexEnvf(GLenum target, GLenum pname, GLfloat param);
409 void glShadeModel(GLenum mode);
410 void glPolygonStipple(const GLubyte *mask);
411 void glMaterialiv(GLenum face, GLenum pname, const GLint *params);
412 void glMateriali(GLenum face, GLenum pname, GLint param);
413 void glMaterialfv(GLenum face, GLenum pname, const GLfloat *params);
414 void glMaterialf(GLenum face, GLenum pname, GLfloat param);
415 void glLineStipple(GLint factor, GLushort pattern);
416 void glLightModeliv(GLenum pname, const GLint *params);
417 void glLightModeli(GLenum pname, GLint param);
418 void glLightModelfv(GLenum pname, const GLfloat *params);
419 void glLightModelf(GLenum pname, GLfloat param);
420 void glLightiv(GLenum light, GLenum pname, const GLint *params);
421 void glLighti(GLenum light, GLenum pname, GLint param);
422 void glLightfv(GLenum light, GLenum pname, const GLfloat *params);
423 void glLightf(GLenum light, GLenum pname, GLfloat param);
424 void glFogiv(GLenum pname, const GLint *params);
425 void glFogi(GLenum pname, GLint param);
426 void glFogfv(GLenum pname, const GLfloat *params);
427 void glFogf(GLenum pname, GLfloat param);
428 void glColorMaterial(GLenum face, GLenum mode);
429 void glClipPlane(GLenum plane, const GLdouble *equation);
430 void glVertex4sv(const GLshort *v);
431 void glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w);
432 void glVertex4iv(const GLint *v);
433 void glVertex4i(GLint x, GLint y, GLint z, GLint w);
434 void glVertex4fv(const GLfloat *v);
435 void glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
436 void glVertex4dv(const GLdouble *v);
437 void glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
438 void glVertex3sv(const GLshort *v);
439 void glVertex3s(GLshort x, GLshort y, GLshort z);
440 void glVertex3iv(const GLint *v);
441 void glVertex3i(GLint x, GLint y, GLint z);
442 void glVertex3fv(const GLfloat *v);
443 void glVertex3f(GLfloat x, GLfloat y, GLfloat z);
444 void glVertex3dv(const GLdouble *v);
445 void glVertex3d(GLdouble x, GLdouble y, GLdouble z);
446 void glVertex2sv(const GLshort *v);
447 void glVertex2s(GLshort x, GLshort y);
448 void glVertex2iv(const GLint *v);
449 void glVertex2i(GLint x, GLint y);
450 void glVertex2fv(const GLfloat *v);
451 void glVertex2f(GLfloat x, GLfloat y);
452 void glVertex2dv(const GLdouble *v);
453 void glVertex2d(GLdouble x, GLdouble y);
454 void glTexCoord4sv(const GLshort *v);
455 void glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q);
456 void glTexCoord4iv(const GLint *v);
457 void glTexCoord4i(GLint s, GLint t, GLint r, GLint q);
458 void glTexCoord4fv(const GLfloat *v);
459 void glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q);
460 void glTexCoord4dv(const GLdouble *v);
461 void glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q);
462 void glTexCoord3sv(const GLshort *v);
463 void glTexCoord3s(GLshort s, GLshort t, GLshort r);
464 void glTexCoord3iv(const GLint *v);
465 void glTexCoord3i(GLint s, GLint t, GLint r);
466 void glTexCoord3fv(const GLfloat *v);
467 void glTexCoord3f(GLfloat s, GLfloat t, GLfloat r);
468 void glTexCoord3dv(const GLdouble *v);
469 void glTexCoord3d(GLdouble s, GLdouble t, GLdouble r);
470 void glTexCoord2sv(const GLshort *v);
471 void glTexCoord2s(GLshort s, GLshort t);
472 void glTexCoord2iv(const GLint *v);
473 void glTexCoord2i(GLint s, GLint t);
474 void glTexCoord2fv(const GLfloat *v);
475 void glTexCoord2f(GLfloat s, GLfloat t);
476 void glTexCoord2dv(const GLdouble *v);
477 void glTexCoord2d(GLdouble s, GLdouble t);
478 void glTexCoord1sv(const GLshort *v);
479 void glTexCoord1s(GLshort s);
480 void glTexCoord1iv(const GLint *v);
481 void glTexCoord1i(GLint s);
482 void glTexCoord1fv(const GLfloat *v);
483 void glTexCoord1f(GLfloat s);
484 void glTexCoord1dv(const GLdouble *v);
485 void glTexCoord1d(GLdouble s);
486 void glRectsv(const GLshort *v1, const GLshort *v2);
487 void glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2);
488 void glRectiv(const GLint *v1, const GLint *v2);
489 void glRecti(GLint x1, GLint y1, GLint x2, GLint y2);
490 void glRectfv(const GLfloat *v1, const GLfloat *v2);
491 void glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2);
492 void glRectdv(const GLdouble *v1, const GLdouble *v2);
493 void glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2);
494 void glRasterPos4sv(const GLshort *v);
495 void glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w);
496 void glRasterPos4iv(const GLint *v);
497 void glRasterPos4i(GLint x, GLint y, GLint z, GLint w);
498 void glRasterPos4fv(const GLfloat *v);
499 void glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
500 void glRasterPos4dv(const GLdouble *v);
501 void glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
502 void glRasterPos3sv(const GLshort *v);
503 void glRasterPos3s(GLshort x, GLshort y, GLshort z);
504 void glRasterPos3iv(const GLint *v);
505 void glRasterPos3i(GLint x, GLint y, GLint z);
506 void glRasterPos3fv(const GLfloat *v);
507 void glRasterPos3f(GLfloat x, GLfloat y, GLfloat z);
508 void glRasterPos3dv(const GLdouble *v);
509 void glRasterPos3d(GLdouble x, GLdouble y, GLdouble z);
510 void glRasterPos2sv(const GLshort *v);
511 void glRasterPos2s(GLshort x, GLshort y);
512 void glRasterPos2iv(const GLint *v);
513 void glRasterPos2i(GLint x, GLint y);
514 void glRasterPos2fv(const GLfloat *v);
515 void glRasterPos2f(GLfloat x, GLfloat y);
516 void glRasterPos2dv(const GLdouble *v);
517 void glRasterPos2d(GLdouble x, GLdouble y);
518 void glNormal3sv(const GLshort *v);
519 void glNormal3s(GLshort nx, GLshort ny, GLshort nz);
520 void glNormal3iv(const GLint *v);
521 void glNormal3i(GLint nx, GLint ny, GLint nz);
522 void glNormal3fv(const GLfloat *v);
523 void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz);
524 void glNormal3dv(const GLdouble *v);
525 void glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz);
526 void glNormal3bv(const GLbyte *v);
527 void glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz);
528 void glIndexsv(const GLshort *c);
529 void glIndexs(GLshort c);
530 void glIndexiv(const GLint *c);
531 void glIndexi(GLint c);
532 void glIndexfv(const GLfloat *c);
533 void glIndexf(GLfloat c);
534 void glIndexdv(const GLdouble *c);
535 void glIndexd(GLdouble c);
536 void glEnd();
537 void glEdgeFlagv(const GLboolean *flag);
538 void glEdgeFlag(GLboolean flag);
539 void glColor4usv(const GLushort *v);
540 void glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha);
541 void glColor4uiv(const GLuint *v);
542 void glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha);
543 void glColor4ubv(const GLubyte *v);
544 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
545 void glColor4sv(const GLshort *v);
546 void glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha);
547 void glColor4iv(const GLint *v);
548 void glColor4i(GLint red, GLint green, GLint blue, GLint alpha);
549 void glColor4fv(const GLfloat *v);
550 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
551 void glColor4dv(const GLdouble *v);
552 void glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha);
553 void glColor4bv(const GLbyte *v);
554 void glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha);
555 void glColor3usv(const GLushort *v);
556 void glColor3us(GLushort red, GLushort green, GLushort blue);
557 void glColor3uiv(const GLuint *v);
558 void glColor3ui(GLuint red, GLuint green, GLuint blue);
559 void glColor3ubv(const GLubyte *v);
560 void glColor3ub(GLubyte red, GLubyte green, GLubyte blue);
561 void glColor3sv(const GLshort *v);
562 void glColor3s(GLshort red, GLshort green, GLshort blue);
563 void glColor3iv(const GLint *v);
564 void glColor3i(GLint red, GLint green, GLint blue);
565 void glColor3fv(const GLfloat *v);
566 void glColor3f(GLfloat red, GLfloat green, GLfloat blue);
567 void glColor3dv(const GLdouble *v);
568 void glColor3d(GLdouble red, GLdouble green, GLdouble blue);
569 void glColor3bv(const GLbyte *v);
570 void glColor3b(GLbyte red, GLbyte green, GLbyte blue);
571 void glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap);
572 void glBegin(GLenum mode);
573 void glListBase(GLuint base);
574 GLuint glGenLists(GLsizei range);
575 void glDeleteLists(GLuint list, GLsizei range);
576 void glCallLists(GLsizei n, GLenum type, const GLvoid *lists);
577 void glCallList(GLuint list);
578 void glEndList();
579 void glNewList(GLuint list, GLenum mode);
580
581 // OpenGL 1.1 deprecated functions
582 void glPushClientAttrib(GLbitfield mask);
583 void glPopClientAttrib();
584 void glPrioritizeTextures(GLsizei n, const GLuint *textures, const GLfloat *priorities);
585 GLboolean glAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences);
586 void glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
587 void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
588 void glNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer);
589 void glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer);
590 void glIndexPointer(GLenum type, GLsizei stride, const GLvoid *pointer);
591 void glEnableClientState(GLenum array);
592 void glEdgeFlagPointer(GLsizei stride, const GLvoid *pointer);
593 void glDisableClientState(GLenum array);
594 void glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
595 void glArrayElement(GLint i);
596
597 // OpenGL 1.2 deprecated functions
598 void glResetMinmax(GLenum target);
599 void glResetHistogram(GLenum target);
600 void glMinmax(GLenum target, GLenum internalformat, GLboolean sink);
601 void glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink);
602 void glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint *params);
603 void glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat *params);
604 void glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
605 void glGetHistogramParameteriv(GLenum target, GLenum pname, GLint *params);
606 void glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat *params);
607 void glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values);
608 void glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column);
609 void glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span);
610 void glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params);
611 void glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params);
612 void glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid *image);
613 void glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height);
614 void glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
615 void glConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params);
616 void glConvolutionParameteri(GLenum target, GLenum pname, GLint params);
617 void glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat *params);
618 void glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params);
619 void glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image);
620 void glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image);
621 void glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width);
622 void glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data);
623 void glGetColorTableParameteriv(GLenum target, GLenum pname, GLint *params);
624 void glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat *params);
625 void glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid *table);
626 void glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
627 void glColorTableParameteriv(GLenum target, GLenum pname, const GLint *params);
628 void glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params);
629 void glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
630
631 // OpenGL 1.3 deprecated functions
632 void glMultTransposeMatrixd(const GLdouble *m);
633 void glMultTransposeMatrixf(const GLfloat *m);
634 void glLoadTransposeMatrixd(const GLdouble *m);
635 void glLoadTransposeMatrixf(const GLfloat *m);
636 void glMultiTexCoord4sv(GLenum target, const GLshort *v);
637 void glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q);
638 void glMultiTexCoord4iv(GLenum target, const GLint *v);
639 void glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q);
640 void glMultiTexCoord4fv(GLenum target, const GLfloat *v);
641 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
642 void glMultiTexCoord4dv(GLenum target, const GLdouble *v);
643 void glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q);
644 void glMultiTexCoord3sv(GLenum target, const GLshort *v);
645 void glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r);
646 void glMultiTexCoord3iv(GLenum target, const GLint *v);
647 void glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r);
648 void glMultiTexCoord3fv(GLenum target, const GLfloat *v);
649 void glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r);
650 void glMultiTexCoord3dv(GLenum target, const GLdouble *v);
651 void glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r);
652 void glMultiTexCoord2sv(GLenum target, const GLshort *v);
653 void glMultiTexCoord2s(GLenum target, GLshort s, GLshort t);
654 void glMultiTexCoord2iv(GLenum target, const GLint *v);
655 void glMultiTexCoord2i(GLenum target, GLint s, GLint t);
656 void glMultiTexCoord2fv(GLenum target, const GLfloat *v);
657 void glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t);
658 void glMultiTexCoord2dv(GLenum target, const GLdouble *v);
659 void glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t);
660 void glMultiTexCoord1sv(GLenum target, const GLshort *v);
661 void glMultiTexCoord1s(GLenum target, GLshort s);
662 void glMultiTexCoord1iv(GLenum target, const GLint *v);
663 void glMultiTexCoord1i(GLenum target, GLint s);
664 void glMultiTexCoord1fv(GLenum target, const GLfloat *v);
665 void glMultiTexCoord1f(GLenum target, GLfloat s);
666 void glMultiTexCoord1dv(GLenum target, const GLdouble *v);
667 void glMultiTexCoord1d(GLenum target, GLdouble s);
668 void glClientActiveTexture(GLenum texture);
669
670 // OpenGL 1.4 deprecated functions
671 void glWindowPos3sv(const GLshort *v);
672 void glWindowPos3s(GLshort x, GLshort y, GLshort z);
673 void glWindowPos3iv(const GLint *v);
674 void glWindowPos3i(GLint x, GLint y, GLint z);
675 void glWindowPos3fv(const GLfloat *v);
676 void glWindowPos3f(GLfloat x, GLfloat y, GLfloat z);
677 void glWindowPos3dv(const GLdouble *v);
678 void glWindowPos3d(GLdouble x, GLdouble y, GLdouble z);
679 void glWindowPos2sv(const GLshort *v);
680 void glWindowPos2s(GLshort x, GLshort y);
681 void glWindowPos2iv(const GLint *v);
682 void glWindowPos2i(GLint x, GLint y);
683 void glWindowPos2fv(const GLfloat *v);
684 void glWindowPos2f(GLfloat x, GLfloat y);
685 void glWindowPos2dv(const GLdouble *v);
686 void glWindowPos2d(GLdouble x, GLdouble y);
687 void glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer);
688 void glSecondaryColor3usv(const GLushort *v);
689 void glSecondaryColor3us(GLushort red, GLushort green, GLushort blue);
690 void glSecondaryColor3uiv(const GLuint *v);
691 void glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue);
692 void glSecondaryColor3ubv(const GLubyte *v);
693 void glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue);
694 void glSecondaryColor3sv(const GLshort *v);
695 void glSecondaryColor3s(GLshort red, GLshort green, GLshort blue);
696 void glSecondaryColor3iv(const GLint *v);
697 void glSecondaryColor3i(GLint red, GLint green, GLint blue);
698 void glSecondaryColor3fv(const GLfloat *v);
699 void glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue);
700 void glSecondaryColor3dv(const GLdouble *v);
701 void glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue);
702 void glSecondaryColor3bv(const GLbyte *v);
703 void glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue);
704 void glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid *pointer);
705 void glFogCoorddv(const GLdouble *coord);
706 void glFogCoordd(GLdouble coord);
707 void glFogCoordfv(const GLfloat *coord);
708 void glFogCoordf(GLfloat coord);
709
710 // OpenGL 1.5 deprecated functions
711
712 // OpenGL 2.0 deprecated functions
713 void glVertexAttrib4usv(GLuint index, const GLushort *v);
714 void glVertexAttrib4uiv(GLuint index, const GLuint *v);
715 void glVertexAttrib4ubv(GLuint index, const GLubyte *v);
716 void glVertexAttrib4sv(GLuint index, const GLshort *v);
717 void glVertexAttrib4s(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w);
718 void glVertexAttrib4iv(GLuint index, const GLint *v);
719 void glVertexAttrib4fv(GLuint index, const GLfloat *v);
720 void glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
721 void glVertexAttrib4dv(GLuint index, const GLdouble *v);
722 void glVertexAttrib4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w);
723 void glVertexAttrib4bv(GLuint index, const GLbyte *v);
724 void glVertexAttrib4Nusv(GLuint index, const GLushort *v);
725 void glVertexAttrib4Nuiv(GLuint index, const GLuint *v);
726 void glVertexAttrib4Nubv(GLuint index, const GLubyte *v);
727 void glVertexAttrib4Nub(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w);
728 void glVertexAttrib4Nsv(GLuint index, const GLshort *v);
729 void glVertexAttrib4Niv(GLuint index, const GLint *v);
730 void glVertexAttrib4Nbv(GLuint index, const GLbyte *v);
731 void glVertexAttrib3sv(GLuint index, const GLshort *v);
732 void glVertexAttrib3s(GLuint index, GLshort x, GLshort y, GLshort z);
733 void glVertexAttrib3fv(GLuint index, const GLfloat *v);
734 void glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z);
735 void glVertexAttrib3dv(GLuint index, const GLdouble *v);
736 void glVertexAttrib3d(GLuint index, GLdouble x, GLdouble y, GLdouble z);
737 void glVertexAttrib2sv(GLuint index, const GLshort *v);
738 void glVertexAttrib2s(GLuint index, GLshort x, GLshort y);
739 void glVertexAttrib2fv(GLuint index, const GLfloat *v);
740 void glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y);
741 void glVertexAttrib2dv(GLuint index, const GLdouble *v);
742 void glVertexAttrib2d(GLuint index, GLdouble x, GLdouble y);
743 void glVertexAttrib1sv(GLuint index, const GLshort *v);
744 void glVertexAttrib1s(GLuint index, GLshort x);
745 void glVertexAttrib1fv(GLuint index, const GLfloat *v);
746 void glVertexAttrib1f(GLuint index, GLfloat x);
747 void glVertexAttrib1dv(GLuint index, const GLdouble *v);
748 void glVertexAttrib1d(GLuint index, GLdouble x);
749
750 // OpenGL 2.1 deprecated functions
751
752 // OpenGL 3.0 deprecated functions
753 void glVertexAttribI4usv(GLuint index, const GLushort *v);
754 void glVertexAttribI4ubv(GLuint index, const GLubyte *v);
755 void glVertexAttribI4sv(GLuint index, const GLshort *v);
756 void glVertexAttribI4bv(GLuint index, const GLbyte *v);
757 void glVertexAttribI4uiv(GLuint index, const GLuint *v);
758 void glVertexAttribI3uiv(GLuint index, const GLuint *v);
759 void glVertexAttribI2uiv(GLuint index, const GLuint *v);
760 void glVertexAttribI1uiv(GLuint index, const GLuint *v);
761 void glVertexAttribI4iv(GLuint index, const GLint *v);
762 void glVertexAttribI3iv(GLuint index, const GLint *v);
763 void glVertexAttribI2iv(GLuint index, const GLint *v);
764 void glVertexAttribI1iv(GLuint index, const GLint *v);
765 void glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w);
766 void glVertexAttribI3ui(GLuint index, GLuint x, GLuint y, GLuint z);
767 void glVertexAttribI2ui(GLuint index, GLuint x, GLuint y);
768 void glVertexAttribI1ui(GLuint index, GLuint x);
769 void glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w);
770 void glVertexAttribI3i(GLuint index, GLint x, GLint y, GLint z);
771 void glVertexAttribI2i(GLuint index, GLint x, GLint y);
772 void glVertexAttribI1i(GLuint index, GLint x);
773
774private:
775 friend class QOpenGLVersionFunctionsFactory;
776
777 static bool isContextCompatible(QOpenGLContext *context);
778 static QOpenGLVersionProfile versionProfile();
779
780 QOpenGLFunctions_1_0_CoreBackend* d_1_0_Core;
781 QOpenGLFunctions_1_1_CoreBackend* d_1_1_Core;
782 QOpenGLFunctions_1_2_CoreBackend* d_1_2_Core;
783 QOpenGLFunctions_1_3_CoreBackend* d_1_3_Core;
784 QOpenGLFunctions_1_4_CoreBackend* d_1_4_Core;
785 QOpenGLFunctions_1_5_CoreBackend* d_1_5_Core;
786 QOpenGLFunctions_2_0_CoreBackend* d_2_0_Core;
787 QOpenGLFunctions_2_1_CoreBackend* d_2_1_Core;
788 QOpenGLFunctions_3_0_CoreBackend* d_3_0_Core;
789 QOpenGLFunctions_1_0_DeprecatedBackend* d_1_0_Deprecated;
790 QOpenGLFunctions_1_1_DeprecatedBackend* d_1_1_Deprecated;
791 QOpenGLFunctions_1_2_DeprecatedBackend* d_1_2_Deprecated;
792 QOpenGLFunctions_1_3_DeprecatedBackend* d_1_3_Deprecated;
793 QOpenGLFunctions_1_4_DeprecatedBackend* d_1_4_Deprecated;
794 void *m_reserved_2_0_Deprecated; // To maintain BC
795 void *m_reserved_3_0_Deprecated; // To maintain BC
796};
797
798// OpenGL 1.0 core functions
799inline void QOpenGLFunctions_3_0::glViewport(GLint x, GLint y, GLsizei width, GLsizei height)
800{
801 d_1_0_Core->f.Viewport(x, y, width, height);
802}
803
804inline void QOpenGLFunctions_3_0::glDepthRange(GLdouble nearVal, GLdouble farVal)
805{
806 d_1_0_Core->f.DepthRange(nearVal, farVal);
807}
808
809inline GLboolean QOpenGLFunctions_3_0::glIsEnabled(GLenum cap)
810{
811 return d_1_0_Core->f.IsEnabled(cap);
812}
813
814inline void QOpenGLFunctions_3_0::glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params)
815{
816 d_1_0_Core->f.GetTexLevelParameteriv(target, level, pname, params);
817}
818
819inline void QOpenGLFunctions_3_0::glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params)
820{
821 d_1_0_Core->f.GetTexLevelParameterfv(target, level, pname, params);
822}
823
824inline void QOpenGLFunctions_3_0::glGetTexParameteriv(GLenum target, GLenum pname, GLint *params)
825{
826 d_1_0_Core->f.GetTexParameteriv(target, pname, params);
827}
828
829inline void QOpenGLFunctions_3_0::glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params)
830{
831 d_1_0_Core->f.GetTexParameterfv(target, pname, params);
832}
833
834inline void QOpenGLFunctions_3_0::glGetTexImage(GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels)
835{
836 d_1_0_Core->f.GetTexImage(target, level, format, type, pixels);
837}
838
839inline const GLubyte * QOpenGLFunctions_3_0::glGetString(GLenum name)
840{
841 return d_1_0_Core->f.GetString(name);
842}
843
844inline void QOpenGLFunctions_3_0::glGetIntegerv(GLenum pname, GLint *params)
845{
846 d_1_0_Core->f.GetIntegerv(pname, params);
847}
848
849inline void QOpenGLFunctions_3_0::glGetFloatv(GLenum pname, GLfloat *params)
850{
851 d_1_0_Core->f.GetFloatv(pname, params);
852}
853
854inline GLenum QOpenGLFunctions_3_0::glGetError()
855{
856 return d_1_0_Core->f.GetError();
857}
858
859inline void QOpenGLFunctions_3_0::glGetDoublev(GLenum pname, GLdouble *params)
860{
861 d_1_0_Core->f.GetDoublev(pname, params);
862}
863
864inline void QOpenGLFunctions_3_0::glGetBooleanv(GLenum pname, GLboolean *params)
865{
866 d_1_0_Core->f.GetBooleanv(pname, params);
867}
868
869inline void QOpenGLFunctions_3_0::glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels)
870{
871 d_1_0_Core->f.ReadPixels(x, y, width, height, format, type, pixels);
872}
873
874inline void QOpenGLFunctions_3_0::glReadBuffer(GLenum mode)
875{
876 d_1_0_Core->f.ReadBuffer(mode);
877}
878
879inline void QOpenGLFunctions_3_0::glPixelStorei(GLenum pname, GLint param)
880{
881 d_1_0_Core->f.PixelStorei(pname, param);
882}
883
884inline void QOpenGLFunctions_3_0::glPixelStoref(GLenum pname, GLfloat param)
885{
886 d_1_0_Core->f.PixelStoref(pname, param);
887}
888
889inline void QOpenGLFunctions_3_0::glDepthFunc(GLenum func)
890{
891 d_1_0_Core->f.DepthFunc(func);
892}
893
894inline void QOpenGLFunctions_3_0::glStencilOp(GLenum fail, GLenum zfail, GLenum zpass)
895{
896 d_1_0_Core->f.StencilOp(fail, zfail, zpass);
897}
898
899inline void QOpenGLFunctions_3_0::glStencilFunc(GLenum func, GLint ref, GLuint mask)
900{
901 d_1_0_Core->f.StencilFunc(func, ref, mask);
902}
903
904inline void QOpenGLFunctions_3_0::glLogicOp(GLenum opcode)
905{
906 d_1_0_Core->f.LogicOp(opcode);
907}
908
909inline void QOpenGLFunctions_3_0::glBlendFunc(GLenum sfactor, GLenum dfactor)
910{
911 d_1_0_Core->f.BlendFunc(sfactor, dfactor);
912}
913
914inline void QOpenGLFunctions_3_0::glFlush()
915{
916 d_1_0_Core->f.Flush();
917}
918
919inline void QOpenGLFunctions_3_0::glFinish()
920{
921 d_1_0_Core->f.Finish();
922}
923
924inline void QOpenGLFunctions_3_0::glEnable(GLenum cap)
925{
926 d_1_0_Core->f.Enable(cap);
927}
928
929inline void QOpenGLFunctions_3_0::glDisable(GLenum cap)
930{
931 d_1_0_Core->f.Disable(cap);
932}
933
934inline void QOpenGLFunctions_3_0::glDepthMask(GLboolean flag)
935{
936 d_1_0_Core->f.DepthMask(flag);
937}
938
939inline void QOpenGLFunctions_3_0::glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
940{
941 d_1_0_Core->f.ColorMask(red, green, blue, alpha);
942}
943
944inline void QOpenGLFunctions_3_0::glStencilMask(GLuint mask)
945{
946 d_1_0_Core->f.StencilMask(mask);
947}
948
949inline void QOpenGLFunctions_3_0::glClearDepth(GLdouble depth)
950{
951 d_1_0_Core->f.ClearDepth(depth);
952}
953
954inline void QOpenGLFunctions_3_0::glClearStencil(GLint s)
955{
956 d_1_0_Core->f.ClearStencil(s);
957}
958
959inline void QOpenGLFunctions_3_0::glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
960{
961 d_1_0_Core->f.ClearColor(red, green, blue, alpha);
962}
963
964inline void QOpenGLFunctions_3_0::glClear(GLbitfield mask)
965{
966 d_1_0_Core->f.Clear(mask);
967}
968
969inline void QOpenGLFunctions_3_0::glDrawBuffer(GLenum mode)
970{
971 d_1_0_Core->f.DrawBuffer(mode);
972}
973
974inline void QOpenGLFunctions_3_0::glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
975{
976 d_1_0_Core->f.TexImage2D(target, level, internalformat, width, height, border, format, type, pixels);
977}
978
979inline void QOpenGLFunctions_3_0::glTexImage1D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
980{
981 d_1_0_Core->f.TexImage1D(target, level, internalformat, width, border, format, type, pixels);
982}
983
984inline void QOpenGLFunctions_3_0::glTexParameteriv(GLenum target, GLenum pname, const GLint *params)
985{
986 d_1_0_Core->f.TexParameteriv(target, pname, params);
987}
988
989inline void QOpenGLFunctions_3_0::glTexParameteri(GLenum target, GLenum pname, GLint param)
990{
991 d_1_0_Core->f.TexParameteri(target, pname, param);
992}
993
994inline void QOpenGLFunctions_3_0::glTexParameterfv(GLenum target, GLenum pname, const GLfloat *params)
995{
996 d_1_0_Core->f.TexParameterfv(target, pname, params);
997}
998
999inline void QOpenGLFunctions_3_0::glTexParameterf(GLenum target, GLenum pname, GLfloat param)
1000{
1001 d_1_0_Core->f.TexParameterf(target, pname, param);
1002}
1003
1004inline void QOpenGLFunctions_3_0::glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
1005{
1006 d_1_0_Core->f.Scissor(x, y, width, height);
1007}
1008
1009inline void QOpenGLFunctions_3_0::glPolygonMode(GLenum face, GLenum mode)
1010{
1011 d_1_0_Core->f.PolygonMode(face, mode);
1012}
1013
1014inline void QOpenGLFunctions_3_0::glPointSize(GLfloat size)
1015{
1016 d_1_0_Core->f.PointSize(size);
1017}
1018
1019inline void QOpenGLFunctions_3_0::glLineWidth(GLfloat width)
1020{
1021 d_1_0_Core->f.LineWidth(width);
1022}
1023
1024inline void QOpenGLFunctions_3_0::glHint(GLenum target, GLenum mode)
1025{
1026 d_1_0_Core->f.Hint(target, mode);
1027}
1028
1029inline void QOpenGLFunctions_3_0::glFrontFace(GLenum mode)
1030{
1031 d_1_0_Core->f.FrontFace(mode);
1032}
1033
1034inline void QOpenGLFunctions_3_0::glCullFace(GLenum mode)
1035{
1036 d_1_0_Core->f.CullFace(mode);
1037}
1038
1039
1040// OpenGL 1.1 core functions
1041inline void QOpenGLFunctions_3_0::glIndexubv(const GLubyte *c)
1042{
1043 d_1_1_Deprecated->f.Indexubv(c);
1044}
1045
1046inline void QOpenGLFunctions_3_0::glIndexub(GLubyte c)
1047{
1048 d_1_1_Deprecated->f.Indexub(c);
1049}
1050
1051inline GLboolean QOpenGLFunctions_3_0::glIsTexture(GLuint texture)
1052{
1053 return d_1_1_Core->f.IsTexture(texture);
1054}
1055
1056inline void QOpenGLFunctions_3_0::glGenTextures(GLsizei n, GLuint *textures)
1057{
1058 d_1_1_Core->f.GenTextures(n, textures);
1059}
1060
1061inline void QOpenGLFunctions_3_0::glDeleteTextures(GLsizei n, const GLuint *textures)
1062{
1063 d_1_1_Core->f.DeleteTextures(n, textures);
1064}
1065
1066inline void QOpenGLFunctions_3_0::glBindTexture(GLenum target, GLuint texture)
1067{
1068 d_1_1_Core->f.BindTexture(target, texture);
1069}
1070
1071inline void QOpenGLFunctions_3_0::glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
1072{
1073 d_1_1_Core->f.TexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
1074}
1075
1076inline void QOpenGLFunctions_3_0::glTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels)
1077{
1078 d_1_1_Core->f.TexSubImage1D(target, level, xoffset, width, format, type, pixels);
1079}
1080
1081inline void QOpenGLFunctions_3_0::glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
1082{
1083 d_1_1_Core->f.CopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
1084}
1085
1086inline void QOpenGLFunctions_3_0::glCopyTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
1087{
1088 d_1_1_Core->f.CopyTexSubImage1D(target, level, xoffset, x, y, width);
1089}
1090
1091inline void QOpenGLFunctions_3_0::glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
1092{
1093 d_1_1_Core->f.CopyTexImage2D(target, level, internalformat, x, y, width, height, border);
1094}
1095
1096inline void QOpenGLFunctions_3_0::glCopyTexImage1D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)
1097{
1098 d_1_1_Core->f.CopyTexImage1D(target, level, internalformat, x, y, width, border);
1099}
1100
1101inline void QOpenGLFunctions_3_0::glPolygonOffset(GLfloat factor, GLfloat units)
1102{
1103 d_1_1_Core->f.PolygonOffset(factor, units);
1104}
1105
1106inline void QOpenGLFunctions_3_0::glGetPointerv(GLenum pname, GLvoid* *params)
1107{
1108 d_1_1_Deprecated->f.GetPointerv(pname, params);
1109}
1110
1111inline void QOpenGLFunctions_3_0::glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices)
1112{
1113 d_1_1_Core->f.DrawElements(mode, count, type, indices);
1114}
1115
1116inline void QOpenGLFunctions_3_0::glDrawArrays(GLenum mode, GLint first, GLsizei count)
1117{
1118 d_1_1_Core->f.DrawArrays(mode, first, count);
1119}
1120
1121
1122// OpenGL 1.2 core functions
1123inline void QOpenGLFunctions_3_0::glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
1124{
1125 d_1_2_Core->f.CopyTexSubImage3D(target, level, xoffset, yoffset, zoffset, x, y, width, height);
1126}
1127
1128inline void QOpenGLFunctions_3_0::glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels)
1129{
1130 d_1_2_Core->f.TexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
1131}
1132
1133inline void QOpenGLFunctions_3_0::glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels)
1134{
1135 d_1_2_Core->f.TexImage3D(target, level, internalformat, width, height, depth, border, format, type, pixels);
1136}
1137
1138inline void QOpenGLFunctions_3_0::glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices)
1139{
1140 d_1_2_Core->f.DrawRangeElements(mode, start, end, count, type, indices);
1141}
1142
1143inline void QOpenGLFunctions_3_0::glBlendEquation(GLenum mode)
1144{
1145 d_1_2_Core->f.BlendEquation(mode);
1146}
1147
1148inline void QOpenGLFunctions_3_0::glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
1149{
1150 d_1_2_Core->f.BlendColor(red, green, blue, alpha);
1151}
1152
1153
1154// OpenGL 1.3 core functions
1155inline void QOpenGLFunctions_3_0::glGetCompressedTexImage(GLenum target, GLint level, GLvoid *img)
1156{
1157 d_1_3_Core->f.GetCompressedTexImage(target, level, img);
1158}
1159
1160inline void QOpenGLFunctions_3_0::glCompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid *data)
1161{
1162 d_1_3_Core->f.CompressedTexSubImage1D(target, level, xoffset, width, format, imageSize, data);
1163}
1164
1165inline void QOpenGLFunctions_3_0::glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data)
1166{
1167 d_1_3_Core->f.CompressedTexSubImage2D(target, level, xoffset, yoffset, width, height, format, imageSize, data);
1168}
1169
1170inline void QOpenGLFunctions_3_0::glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid *data)
1171{
1172 d_1_3_Core->f.CompressedTexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data);
1173}
1174
1175inline void QOpenGLFunctions_3_0::glCompressedTexImage1D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const GLvoid *data)
1176{
1177 d_1_3_Core->f.CompressedTexImage1D(target, level, internalformat, width, border, imageSize, data);
1178}
1179
1180inline void QOpenGLFunctions_3_0::glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid *data)
1181{
1182 d_1_3_Core->f.CompressedTexImage2D(target, level, internalformat, width, height, border, imageSize, data);
1183}
1184
1185inline void QOpenGLFunctions_3_0::glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid *data)
1186{
1187 d_1_3_Core->f.CompressedTexImage3D(target, level, internalformat, width, height, depth, border, imageSize, data);
1188}
1189
1190inline void QOpenGLFunctions_3_0::glSampleCoverage(GLfloat value, GLboolean invert)
1191{
1192 d_1_3_Core->f.SampleCoverage(value, invert);
1193}
1194
1195inline void QOpenGLFunctions_3_0::glActiveTexture(GLenum texture)
1196{
1197 d_1_3_Core->f.ActiveTexture(texture);
1198}
1199
1200
1201// OpenGL 1.4 core functions
1202inline void QOpenGLFunctions_3_0::glPointParameteriv(GLenum pname, const GLint *params)
1203{
1204 d_1_4_Core->f.PointParameteriv(pname, params);
1205}
1206
1207inline void QOpenGLFunctions_3_0::glPointParameteri(GLenum pname, GLint param)
1208{
1209 d_1_4_Core->f.PointParameteri(pname, param);
1210}
1211
1212inline void QOpenGLFunctions_3_0::glPointParameterfv(GLenum pname, const GLfloat *params)
1213{
1214 d_1_4_Core->f.PointParameterfv(pname, params);
1215}
1216
1217inline void QOpenGLFunctions_3_0::glPointParameterf(GLenum pname, GLfloat param)
1218{
1219 d_1_4_Core->f.PointParameterf(pname, param);
1220}
1221
1222inline void QOpenGLFunctions_3_0::glMultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid* const *indices, GLsizei drawcount)
1223{
1224 d_1_4_Core->f.MultiDrawElements(mode, count, type, indices, drawcount);
1225}
1226
1227inline void QOpenGLFunctions_3_0::glMultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount)
1228{
1229 d_1_4_Core->f.MultiDrawArrays(mode, first, count, drawcount);
1230}
1231
1232inline void QOpenGLFunctions_3_0::glBlendFuncSeparate(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)
1233{
1234 d_1_4_Core->f.BlendFuncSeparate(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha);
1235}
1236
1237
1238// OpenGL 1.5 core functions
1239inline void QOpenGLFunctions_3_0::glGetBufferPointerv(GLenum target, GLenum pname, GLvoid* *params)
1240{
1241 d_1_5_Core->f.GetBufferPointerv(target, pname, params);
1242}
1243
1244inline void QOpenGLFunctions_3_0::glGetBufferParameteriv(GLenum target, GLenum pname, GLint *params)
1245{
1246 d_1_5_Core->f.GetBufferParameteriv(target, pname, params);
1247}
1248
1249inline GLboolean QOpenGLFunctions_3_0::glUnmapBuffer(GLenum target)
1250{
1251 return d_1_5_Core->f.UnmapBuffer(target);
1252}
1253
1254inline GLvoid* QOpenGLFunctions_3_0::glMapBuffer(GLenum target, GLenum access)
1255{
1256 return d_1_5_Core->f.MapBuffer(target, access);
1257}
1258
1259inline void QOpenGLFunctions_3_0::glGetBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, GLvoid *data)
1260{
1261 d_1_5_Core->f.GetBufferSubData(target, offset, size, data);
1262}
1263
1264inline void QOpenGLFunctions_3_0::glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data)
1265{
1266 d_1_5_Core->f.BufferSubData(target, offset, size, data);
1267}
1268
1269inline void QOpenGLFunctions_3_0::glBufferData(GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage)
1270{
1271 d_1_5_Core->f.BufferData(target, size, data, usage);
1272}
1273
1274inline GLboolean QOpenGLFunctions_3_0::glIsBuffer(GLuint buffer)
1275{
1276 return d_1_5_Core->f.IsBuffer(buffer);
1277}
1278
1279inline void QOpenGLFunctions_3_0::glGenBuffers(GLsizei n, GLuint *buffers)
1280{
1281 d_1_5_Core->f.GenBuffers(n, buffers);
1282}
1283
1284inline void QOpenGLFunctions_3_0::glDeleteBuffers(GLsizei n, const GLuint *buffers)
1285{
1286 d_1_5_Core->f.DeleteBuffers(n, buffers);
1287}
1288
1289inline void QOpenGLFunctions_3_0::glBindBuffer(GLenum target, GLuint buffer)
1290{
1291 d_1_5_Core->f.BindBuffer(target, buffer);
1292}
1293
1294inline void QOpenGLFunctions_3_0::glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params)
1295{
1296 d_1_5_Core->f.GetQueryObjectuiv(id, pname, params);
1297}
1298
1299inline void QOpenGLFunctions_3_0::glGetQueryObjectiv(GLuint id, GLenum pname, GLint *params)
1300{
1301 d_1_5_Core->f.GetQueryObjectiv(id, pname, params);
1302}
1303
1304inline void QOpenGLFunctions_3_0::glGetQueryiv(GLenum target, GLenum pname, GLint *params)
1305{
1306 d_1_5_Core->f.GetQueryiv(target, pname, params);
1307}
1308
1309inline void QOpenGLFunctions_3_0::glEndQuery(GLenum target)
1310{
1311 d_1_5_Core->f.EndQuery(target);
1312}
1313
1314inline void QOpenGLFunctions_3_0::glBeginQuery(GLenum target, GLuint id)
1315{
1316 d_1_5_Core->f.BeginQuery(target, id);
1317}
1318
1319inline GLboolean QOpenGLFunctions_3_0::glIsQuery(GLuint id)
1320{
1321 return d_1_5_Core->f.IsQuery(id);
1322}
1323
1324inline void QOpenGLFunctions_3_0::glDeleteQueries(GLsizei n, const GLuint *ids)
1325{
1326 d_1_5_Core->f.DeleteQueries(n, ids);
1327}
1328
1329inline void QOpenGLFunctions_3_0::glGenQueries(GLsizei n, GLuint *ids)
1330{
1331 d_1_5_Core->f.GenQueries(n, ids);
1332}
1333
1334
1335// OpenGL 2.0 core functions
1336inline void QOpenGLFunctions_3_0::glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer)
1337{
1338 d_2_0_Core->f.VertexAttribPointer(index, size, type, normalized, stride, pointer);
1339}
1340
1341inline void QOpenGLFunctions_3_0::glValidateProgram(GLuint program)
1342{
1343 d_2_0_Core->f.ValidateProgram(program);
1344}
1345
1346inline void QOpenGLFunctions_3_0::glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1347{
1348 d_2_0_Core->f.UniformMatrix4fv(location, count, transpose, value);
1349}
1350
1351inline void QOpenGLFunctions_3_0::glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1352{
1353 d_2_0_Core->f.UniformMatrix3fv(location, count, transpose, value);
1354}
1355
1356inline void QOpenGLFunctions_3_0::glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1357{
1358 d_2_0_Core->f.UniformMatrix2fv(location, count, transpose, value);
1359}
1360
1361inline void QOpenGLFunctions_3_0::glUniform4iv(GLint location, GLsizei count, const GLint *value)
1362{
1363 d_2_0_Core->f.Uniform4iv(location, count, value);
1364}
1365
1366inline void QOpenGLFunctions_3_0::glUniform3iv(GLint location, GLsizei count, const GLint *value)
1367{
1368 d_2_0_Core->f.Uniform3iv(location, count, value);
1369}
1370
1371inline void QOpenGLFunctions_3_0::glUniform2iv(GLint location, GLsizei count, const GLint *value)
1372{
1373 d_2_0_Core->f.Uniform2iv(location, count, value);
1374}
1375
1376inline void QOpenGLFunctions_3_0::glUniform1iv(GLint location, GLsizei count, const GLint *value)
1377{
1378 d_2_0_Core->f.Uniform1iv(location, count, value);
1379}
1380
1381inline void QOpenGLFunctions_3_0::glUniform4fv(GLint location, GLsizei count, const GLfloat *value)
1382{
1383 d_2_0_Core->f.Uniform4fv(location, count, value);
1384}
1385
1386inline void QOpenGLFunctions_3_0::glUniform3fv(GLint location, GLsizei count, const GLfloat *value)
1387{
1388 d_2_0_Core->f.Uniform3fv(location, count, value);
1389}
1390
1391inline void QOpenGLFunctions_3_0::glUniform2fv(GLint location, GLsizei count, const GLfloat *value)
1392{
1393 d_2_0_Core->f.Uniform2fv(location, count, value);
1394}
1395
1396inline void QOpenGLFunctions_3_0::glUniform1fv(GLint location, GLsizei count, const GLfloat *value)
1397{
1398 d_2_0_Core->f.Uniform1fv(location, count, value);
1399}
1400
1401inline void QOpenGLFunctions_3_0::glUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3)
1402{
1403 d_2_0_Core->f.Uniform4i(location, v0, v1, v2, v3);
1404}
1405
1406inline void QOpenGLFunctions_3_0::glUniform3i(GLint location, GLint v0, GLint v1, GLint v2)
1407{
1408 d_2_0_Core->f.Uniform3i(location, v0, v1, v2);
1409}
1410
1411inline void QOpenGLFunctions_3_0::glUniform2i(GLint location, GLint v0, GLint v1)
1412{
1413 d_2_0_Core->f.Uniform2i(location, v0, v1);
1414}
1415
1416inline void QOpenGLFunctions_3_0::glUniform1i(GLint location, GLint v0)
1417{
1418 d_2_0_Core->f.Uniform1i(location, v0);
1419}
1420
1421inline void QOpenGLFunctions_3_0::glUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3)
1422{
1423 d_2_0_Core->f.Uniform4f(location, v0, v1, v2, v3);
1424}
1425
1426inline void QOpenGLFunctions_3_0::glUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2)
1427{
1428 d_2_0_Core->f.Uniform3f(location, v0, v1, v2);
1429}
1430
1431inline void QOpenGLFunctions_3_0::glUniform2f(GLint location, GLfloat v0, GLfloat v1)
1432{
1433 d_2_0_Core->f.Uniform2f(location, v0, v1);
1434}
1435
1436inline void QOpenGLFunctions_3_0::glUniform1f(GLint location, GLfloat v0)
1437{
1438 d_2_0_Core->f.Uniform1f(location, v0);
1439}
1440
1441inline void QOpenGLFunctions_3_0::glUseProgram(GLuint program)
1442{
1443 d_2_0_Core->f.UseProgram(program);
1444}
1445
1446inline void QOpenGLFunctions_3_0::glShaderSource(GLuint shader, GLsizei count, const GLchar* const *string, const GLint *length)
1447{
1448 d_2_0_Core->f.ShaderSource(shader, count, string, length);
1449}
1450
1451inline void QOpenGLFunctions_3_0::glLinkProgram(GLuint program)
1452{
1453 d_2_0_Core->f.LinkProgram(program);
1454}
1455
1456inline GLboolean QOpenGLFunctions_3_0::glIsShader(GLuint shader)
1457{
1458 return d_2_0_Core->f.IsShader(shader);
1459}
1460
1461inline GLboolean QOpenGLFunctions_3_0::glIsProgram(GLuint program)
1462{
1463 return d_2_0_Core->f.IsProgram(program);
1464}
1465
1466inline void QOpenGLFunctions_3_0::glGetVertexAttribPointerv(GLuint index, GLenum pname, GLvoid* *pointer)
1467{
1468 d_2_0_Core->f.GetVertexAttribPointerv(index, pname, pointer);
1469}
1470
1471inline void QOpenGLFunctions_3_0::glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params)
1472{
1473 d_2_0_Core->f.GetVertexAttribiv(index, pname, params);
1474}
1475
1476inline void QOpenGLFunctions_3_0::glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params)
1477{
1478 d_2_0_Core->f.GetVertexAttribfv(index, pname, params);
1479}
1480
1481inline void QOpenGLFunctions_3_0::glGetVertexAttribdv(GLuint index, GLenum pname, GLdouble *params)
1482{
1483 d_2_0_Core->f.GetVertexAttribdv(index, pname, params);
1484}
1485
1486inline void QOpenGLFunctions_3_0::glGetUniformiv(GLuint program, GLint location, GLint *params)
1487{
1488 d_2_0_Core->f.GetUniformiv(program, location, params);
1489}
1490
1491inline void QOpenGLFunctions_3_0::glGetUniformfv(GLuint program, GLint location, GLfloat *params)
1492{
1493 d_2_0_Core->f.GetUniformfv(program, location, params);
1494}
1495
1496inline GLint QOpenGLFunctions_3_0::glGetUniformLocation(GLuint program, const GLchar *name)
1497{
1498 return d_2_0_Core->f.GetUniformLocation(program, name);
1499}
1500
1501inline void QOpenGLFunctions_3_0::glGetShaderSource(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source)
1502{
1503 d_2_0_Core->f.GetShaderSource(shader, bufSize, length, source);
1504}
1505
1506inline void QOpenGLFunctions_3_0::glGetShaderInfoLog(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog)
1507{
1508 d_2_0_Core->f.GetShaderInfoLog(shader, bufSize, length, infoLog);
1509}
1510
1511inline void QOpenGLFunctions_3_0::glGetShaderiv(GLuint shader, GLenum pname, GLint *params)
1512{
1513 d_2_0_Core->f.GetShaderiv(shader, pname, params);
1514}
1515
1516inline void QOpenGLFunctions_3_0::glGetProgramInfoLog(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog)
1517{
1518 d_2_0_Core->f.GetProgramInfoLog(program, bufSize, length, infoLog);
1519}
1520
1521inline void QOpenGLFunctions_3_0::glGetProgramiv(GLuint program, GLenum pname, GLint *params)
1522{
1523 d_2_0_Core->f.GetProgramiv(program, pname, params);
1524}
1525
1526inline GLint QOpenGLFunctions_3_0::glGetAttribLocation(GLuint program, const GLchar *name)
1527{
1528 return d_2_0_Core->f.GetAttribLocation(program, name);
1529}
1530
1531inline void QOpenGLFunctions_3_0::glGetAttachedShaders(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *obj)
1532{
1533 d_2_0_Core->f.GetAttachedShaders(program, maxCount, count, obj);
1534}
1535
1536inline void QOpenGLFunctions_3_0::glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name)
1537{
1538 d_2_0_Core->f.GetActiveUniform(program, index, bufSize, length, size, type, name);
1539}
1540
1541inline void QOpenGLFunctions_3_0::glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name)
1542{
1543 d_2_0_Core->f.GetActiveAttrib(program, index, bufSize, length, size, type, name);
1544}
1545
1546inline void QOpenGLFunctions_3_0::glEnableVertexAttribArray(GLuint index)
1547{
1548 d_2_0_Core->f.EnableVertexAttribArray(index);
1549}
1550
1551inline void QOpenGLFunctions_3_0::glDisableVertexAttribArray(GLuint index)
1552{
1553 d_2_0_Core->f.DisableVertexAttribArray(index);
1554}
1555
1556inline void QOpenGLFunctions_3_0::glDetachShader(GLuint program, GLuint shader)
1557{
1558 d_2_0_Core->f.DetachShader(program, shader);
1559}
1560
1561inline void QOpenGLFunctions_3_0::glDeleteShader(GLuint shader)
1562{
1563 d_2_0_Core->f.DeleteShader(shader);
1564}
1565
1566inline void QOpenGLFunctions_3_0::glDeleteProgram(GLuint program)
1567{
1568 d_2_0_Core->f.DeleteProgram(program);
1569}
1570
1571inline GLuint QOpenGLFunctions_3_0::glCreateShader(GLenum type)
1572{
1573 return d_2_0_Core->f.CreateShader(type);
1574}
1575
1576inline GLuint QOpenGLFunctions_3_0::glCreateProgram()
1577{
1578 return d_2_0_Core->f.CreateProgram();
1579}
1580
1581inline void QOpenGLFunctions_3_0::glCompileShader(GLuint shader)
1582{
1583 d_2_0_Core->f.CompileShader(shader);
1584}
1585
1586inline void QOpenGLFunctions_3_0::glBindAttribLocation(GLuint program, GLuint index, const GLchar *name)
1587{
1588 d_2_0_Core->f.BindAttribLocation(program, index, name);
1589}
1590
1591inline void QOpenGLFunctions_3_0::glAttachShader(GLuint program, GLuint shader)
1592{
1593 d_2_0_Core->f.AttachShader(program, shader);
1594}
1595
1596inline void QOpenGLFunctions_3_0::glStencilMaskSeparate(GLenum face, GLuint mask)
1597{
1598 d_2_0_Core->f.StencilMaskSeparate(face, mask);
1599}
1600
1601inline void QOpenGLFunctions_3_0::glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask)
1602{
1603 d_2_0_Core->f.StencilFuncSeparate(face, func, ref, mask);
1604}
1605
1606inline void QOpenGLFunctions_3_0::glStencilOpSeparate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass)
1607{
1608 d_2_0_Core->f.StencilOpSeparate(face, sfail, dpfail, dppass);
1609}
1610
1611inline void QOpenGLFunctions_3_0::glDrawBuffers(GLsizei n, const GLenum *bufs)
1612{
1613 d_2_0_Core->f.DrawBuffers(n, bufs);
1614}
1615
1616inline void QOpenGLFunctions_3_0::glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha)
1617{
1618 d_2_0_Core->f.BlendEquationSeparate(modeRGB, modeAlpha);
1619}
1620
1621
1622// OpenGL 2.1 core functions
1623inline void QOpenGLFunctions_3_0::glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1624{
1625 d_2_1_Core->f.UniformMatrix4x3fv(location, count, transpose, value);
1626}
1627
1628inline void QOpenGLFunctions_3_0::glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1629{
1630 d_2_1_Core->f.UniformMatrix3x4fv(location, count, transpose, value);
1631}
1632
1633inline void QOpenGLFunctions_3_0::glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1634{
1635 d_2_1_Core->f.UniformMatrix4x2fv(location, count, transpose, value);
1636}
1637
1638inline void QOpenGLFunctions_3_0::glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1639{
1640 d_2_1_Core->f.UniformMatrix2x4fv(location, count, transpose, value);
1641}
1642
1643inline void QOpenGLFunctions_3_0::glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1644{
1645 d_2_1_Core->f.UniformMatrix3x2fv(location, count, transpose, value);
1646}
1647
1648inline void QOpenGLFunctions_3_0::glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)
1649{
1650 d_2_1_Core->f.UniformMatrix2x3fv(location, count, transpose, value);
1651}
1652
1653
1654// OpenGL 3.0 core functions
1655inline GLboolean QOpenGLFunctions_3_0::glIsVertexArray(GLuint array)
1656{
1657 return d_3_0_Core->f.IsVertexArray(array);
1658}
1659
1660inline void QOpenGLFunctions_3_0::glGenVertexArrays(GLsizei n, GLuint *arrays)
1661{
1662 d_3_0_Core->f.GenVertexArrays(n, arrays);
1663}
1664
1665inline void QOpenGLFunctions_3_0::glDeleteVertexArrays(GLsizei n, const GLuint *arrays)
1666{
1667 d_3_0_Core->f.DeleteVertexArrays(n, arrays);
1668}
1669
1670inline void QOpenGLFunctions_3_0::glBindVertexArray(GLuint array)
1671{
1672 d_3_0_Core->f.BindVertexArray(array);
1673}
1674
1675inline void QOpenGLFunctions_3_0::glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length)
1676{
1677 d_3_0_Core->f.FlushMappedBufferRange(target, offset, length);
1678}
1679
1680inline GLvoid* QOpenGLFunctions_3_0::glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
1681{
1682 return d_3_0_Core->f.MapBufferRange(target, offset, length, access);
1683}
1684
1685inline void QOpenGLFunctions_3_0::glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)
1686{
1687 d_3_0_Core->f.FramebufferTextureLayer(target, attachment, texture, level, layer);
1688}
1689
1690inline void QOpenGLFunctions_3_0::glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
1691{
1692 d_3_0_Core->f.RenderbufferStorageMultisample(target, samples, internalformat, width, height);
1693}
1694
1695inline void QOpenGLFunctions_3_0::glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
1696{
1697 d_3_0_Core->f.BlitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
1698}
1699
1700inline void QOpenGLFunctions_3_0::glGenerateMipmap(GLenum target)
1701{
1702 d_3_0_Core->f.GenerateMipmap(target);
1703}
1704
1705inline void QOpenGLFunctions_3_0::glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params)
1706{
1707 d_3_0_Core->f.GetFramebufferAttachmentParameteriv(target, attachment, pname, params);
1708}
1709
1710inline void QOpenGLFunctions_3_0::glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)
1711{
1712 d_3_0_Core->f.FramebufferRenderbuffer(target, attachment, renderbuffertarget, renderbuffer);
1713}
1714
1715inline void QOpenGLFunctions_3_0::glFramebufferTexture3D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset)
1716{
1717 d_3_0_Core->f.FramebufferTexture3D(target, attachment, textarget, texture, level, zoffset);
1718}
1719
1720inline void QOpenGLFunctions_3_0::glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
1721{
1722 d_3_0_Core->f.FramebufferTexture2D(target, attachment, textarget, texture, level);
1723}
1724
1725inline void QOpenGLFunctions_3_0::glFramebufferTexture1D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
1726{
1727 d_3_0_Core->f.FramebufferTexture1D(target, attachment, textarget, texture, level);
1728}
1729
1730inline GLenum QOpenGLFunctions_3_0::glCheckFramebufferStatus(GLenum target)
1731{
1732 return d_3_0_Core->f.CheckFramebufferStatus(target);
1733}
1734
1735inline void QOpenGLFunctions_3_0::glGenFramebuffers(GLsizei n, GLuint *framebuffers)
1736{
1737 d_3_0_Core->f.GenFramebuffers(n, framebuffers);
1738}
1739
1740inline void QOpenGLFunctions_3_0::glDeleteFramebuffers(GLsizei n, const GLuint *framebuffers)
1741{
1742 d_3_0_Core->f.DeleteFramebuffers(n, framebuffers);
1743}
1744
1745inline void QOpenGLFunctions_3_0::glBindFramebuffer(GLenum target, GLuint framebuffer)
1746{
1747 d_3_0_Core->f.BindFramebuffer(target, framebuffer);
1748}
1749
1750inline GLboolean QOpenGLFunctions_3_0::glIsFramebuffer(GLuint framebuffer)
1751{
1752 return d_3_0_Core->f.IsFramebuffer(framebuffer);
1753}
1754
1755inline void QOpenGLFunctions_3_0::glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint *params)
1756{
1757 d_3_0_Core->f.GetRenderbufferParameteriv(target, pname, params);
1758}
1759
1760inline void QOpenGLFunctions_3_0::glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height)
1761{
1762 d_3_0_Core->f.RenderbufferStorage(target, internalformat, width, height);
1763}
1764
1765inline void QOpenGLFunctions_3_0::glGenRenderbuffers(GLsizei n, GLuint *renderbuffers)
1766{
1767 d_3_0_Core->f.GenRenderbuffers(n, renderbuffers);
1768}
1769
1770inline void QOpenGLFunctions_3_0::glDeleteRenderbuffers(GLsizei n, const GLuint *renderbuffers)
1771{
1772 d_3_0_Core->f.DeleteRenderbuffers(n, renderbuffers);
1773}
1774
1775inline void QOpenGLFunctions_3_0::glBindRenderbuffer(GLenum target, GLuint renderbuffer)
1776{
1777 d_3_0_Core->f.BindRenderbuffer(target, renderbuffer);
1778}
1779
1780inline GLboolean QOpenGLFunctions_3_0::glIsRenderbuffer(GLuint renderbuffer)
1781{
1782 return d_3_0_Core->f.IsRenderbuffer(renderbuffer);
1783}
1784
1785inline const GLubyte * QOpenGLFunctions_3_0::glGetStringi(GLenum name, GLuint index)
1786{
1787 return d_3_0_Core->f.GetStringi(name, index);
1788}
1789
1790inline void QOpenGLFunctions_3_0::glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil)
1791{
1792 d_3_0_Core->f.ClearBufferfi(buffer, drawbuffer, depth, stencil);
1793}
1794
1795inline void QOpenGLFunctions_3_0::glClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value)
1796{
1797 d_3_0_Core->f.ClearBufferfv(buffer, drawbuffer, value);
1798}
1799
1800inline void QOpenGLFunctions_3_0::glClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value)
1801{
1802 d_3_0_Core->f.ClearBufferuiv(buffer, drawbuffer, value);
1803}
1804
1805inline void QOpenGLFunctions_3_0::glClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value)
1806{
1807 d_3_0_Core->f.ClearBufferiv(buffer, drawbuffer, value);
1808}
1809
1810inline void QOpenGLFunctions_3_0::glGetTexParameterIuiv(GLenum target, GLenum pname, GLuint *params)
1811{
1812 d_3_0_Core->f.GetTexParameterIuiv(target, pname, params);
1813}
1814
1815inline void QOpenGLFunctions_3_0::glGetTexParameterIiv(GLenum target, GLenum pname, GLint *params)
1816{
1817 d_3_0_Core->f.GetTexParameterIiv(target, pname, params);
1818}
1819
1820inline void QOpenGLFunctions_3_0::glTexParameterIuiv(GLenum target, GLenum pname, const GLuint *params)
1821{
1822 d_3_0_Core->f.TexParameterIuiv(target, pname, params);
1823}
1824
1825inline void QOpenGLFunctions_3_0::glTexParameterIiv(GLenum target, GLenum pname, const GLint *params)
1826{
1827 d_3_0_Core->f.TexParameterIiv(target, pname, params);
1828}
1829
1830inline void QOpenGLFunctions_3_0::glUniform4uiv(GLint location, GLsizei count, const GLuint *value)
1831{
1832 d_3_0_Core->f.Uniform4uiv(location, count, value);
1833}
1834
1835inline void QOpenGLFunctions_3_0::glUniform3uiv(GLint location, GLsizei count, const GLuint *value)
1836{
1837 d_3_0_Core->f.Uniform3uiv(location, count, value);
1838}
1839
1840inline void QOpenGLFunctions_3_0::glUniform2uiv(GLint location, GLsizei count, const GLuint *value)
1841{
1842 d_3_0_Core->f.Uniform2uiv(location, count, value);
1843}
1844
1845inline void QOpenGLFunctions_3_0::glUniform1uiv(GLint location, GLsizei count, const GLuint *value)
1846{
1847 d_3_0_Core->f.Uniform1uiv(location, count, value);
1848}
1849
1850inline void QOpenGLFunctions_3_0::glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3)
1851{
1852 d_3_0_Core->f.Uniform4ui(location, v0, v1, v2, v3);
1853}
1854
1855inline void QOpenGLFunctions_3_0::glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2)
1856{
1857 d_3_0_Core->f.Uniform3ui(location, v0, v1, v2);
1858}
1859
1860inline void QOpenGLFunctions_3_0::glUniform2ui(GLint location, GLuint v0, GLuint v1)
1861{
1862 d_3_0_Core->f.Uniform2ui(location, v0, v1);
1863}
1864
1865inline void QOpenGLFunctions_3_0::glUniform1ui(GLint location, GLuint v0)
1866{
1867 d_3_0_Core->f.Uniform1ui(location, v0);
1868}
1869
1870inline GLint QOpenGLFunctions_3_0::glGetFragDataLocation(GLuint program, const GLchar *name)
1871{
1872 return d_3_0_Core->f.GetFragDataLocation(program, name);
1873}
1874
1875inline void QOpenGLFunctions_3_0::glBindFragDataLocation(GLuint program, GLuint color, const GLchar *name)
1876{
1877 d_3_0_Core->f.BindFragDataLocation(program, color, name);
1878}
1879
1880inline void QOpenGLFunctions_3_0::glGetUniformuiv(GLuint program, GLint location, GLuint *params)
1881{
1882 d_3_0_Core->f.GetUniformuiv(program, location, params);
1883}
1884
1885inline void QOpenGLFunctions_3_0::glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params)
1886{
1887 d_3_0_Core->f.GetVertexAttribIuiv(index, pname, params);
1888}
1889
1890inline void QOpenGLFunctions_3_0::glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params)
1891{
1892 d_3_0_Core->f.GetVertexAttribIiv(index, pname, params);
1893}
1894
1895inline void QOpenGLFunctions_3_0::glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
1896{
1897 d_3_0_Core->f.VertexAttribIPointer(index, size, type, stride, pointer);
1898}
1899
1900inline void QOpenGLFunctions_3_0::glEndConditionalRender()
1901{
1902 d_3_0_Core->f.EndConditionalRender();
1903}
1904
1905inline void QOpenGLFunctions_3_0::glBeginConditionalRender(GLuint id, GLenum mode)
1906{
1907 d_3_0_Core->f.BeginConditionalRender(id, mode);
1908}
1909
1910inline void QOpenGLFunctions_3_0::glClampColor(GLenum target, GLenum clamp)
1911{
1912 d_3_0_Core->f.ClampColor(target, clamp);
1913}
1914
1915inline void QOpenGLFunctions_3_0::glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name)
1916{
1917 d_3_0_Core->f.GetTransformFeedbackVarying(program, index, bufSize, length, size, type, name);
1918}
1919
1920inline void QOpenGLFunctions_3_0::glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar* const *varyings, GLenum bufferMode)
1921{
1922 d_3_0_Core->f.TransformFeedbackVaryings(program, count, varyings, bufferMode);
1923}
1924
1925inline void QOpenGLFunctions_3_0::glBindBufferBase(GLenum target, GLuint index, GLuint buffer)
1926{
1927 d_3_0_Core->f.BindBufferBase(target, index, buffer);
1928}
1929
1930inline void QOpenGLFunctions_3_0::glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)
1931{
1932 d_3_0_Core->f.BindBufferRange(target, index, buffer, offset, size);
1933}
1934
1935inline void QOpenGLFunctions_3_0::glEndTransformFeedback()
1936{
1937 d_3_0_Core->f.EndTransformFeedback();
1938}
1939
1940inline void QOpenGLFunctions_3_0::glBeginTransformFeedback(GLenum primitiveMode)
1941{
1942 d_3_0_Core->f.BeginTransformFeedback(primitiveMode);
1943}
1944
1945inline GLboolean QOpenGLFunctions_3_0::glIsEnabledi(GLenum target, GLuint index)
1946{
1947 return d_3_0_Core->f.IsEnabledi(target, index);
1948}
1949
1950inline void QOpenGLFunctions_3_0::glDisablei(GLenum target, GLuint index)
1951{
1952 d_3_0_Core->f.Disablei(target, index);
1953}
1954
1955inline void QOpenGLFunctions_3_0::glEnablei(GLenum target, GLuint index)
1956{
1957 d_3_0_Core->f.Enablei(target, index);
1958}
1959
1960inline void QOpenGLFunctions_3_0::glGetIntegeri_v(GLenum target, GLuint index, GLint *data)
1961{
1962 d_3_0_Core->f.GetIntegeri_v(target, index, data);
1963}
1964
1965inline void QOpenGLFunctions_3_0::glGetBooleani_v(GLenum target, GLuint index, GLboolean *data)
1966{
1967 d_3_0_Core->f.GetBooleani_v(target, index, data);
1968}
1969
1970inline void QOpenGLFunctions_3_0::glColorMaski(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a)
1971{
1972 d_3_0_Core->f.ColorMaski(index, r, g, b, a);
1973}
1974
1975
1976// OpenGL 1.0 deprecated functions
1977inline void QOpenGLFunctions_3_0::glTranslatef(GLfloat x, GLfloat y, GLfloat z)
1978{
1979 d_1_0_Deprecated->f.Translatef(x, y, z);
1980}
1981
1982inline void QOpenGLFunctions_3_0::glTranslated(GLdouble x, GLdouble y, GLdouble z)
1983{
1984 d_1_0_Deprecated->f.Translated(x, y, z);
1985}
1986
1987inline void QOpenGLFunctions_3_0::glScalef(GLfloat x, GLfloat y, GLfloat z)
1988{
1989 d_1_0_Deprecated->f.Scalef(x, y, z);
1990}
1991
1992inline void QOpenGLFunctions_3_0::glScaled(GLdouble x, GLdouble y, GLdouble z)
1993{
1994 d_1_0_Deprecated->f.Scaled(x, y, z);
1995}
1996
1997inline void QOpenGLFunctions_3_0::glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
1998{
1999 d_1_0_Deprecated->f.Rotatef(angle, x, y, z);
2000}
2001
2002inline void QOpenGLFunctions_3_0::glRotated(GLdouble angle, GLdouble x, GLdouble y, GLdouble z)
2003{
2004 d_1_0_Deprecated->f.Rotated(angle, x, y, z);
2005}
2006
2007inline void QOpenGLFunctions_3_0::glPushMatrix()
2008{
2009 d_1_0_Deprecated->f.PushMatrix();
2010}
2011
2012inline void QOpenGLFunctions_3_0::glPopMatrix()
2013{
2014 d_1_0_Deprecated->f.PopMatrix();
2015}
2016
2017inline void QOpenGLFunctions_3_0::glOrtho(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
2018{
2019 d_1_0_Deprecated->f.Ortho(left, right, bottom, top, zNear, zFar);
2020}
2021
2022inline void QOpenGLFunctions_3_0::glMultMatrixd(const GLdouble *m)
2023{
2024 d_1_0_Deprecated->f.MultMatrixd(m);
2025}
2026
2027inline void QOpenGLFunctions_3_0::glMultMatrixf(const GLfloat *m)
2028{
2029 d_1_0_Deprecated->f.MultMatrixf(m);
2030}
2031
2032inline void QOpenGLFunctions_3_0::glMatrixMode(GLenum mode)
2033{
2034 d_1_0_Deprecated->f.MatrixMode(mode);
2035}
2036
2037inline void QOpenGLFunctions_3_0::glLoadMatrixd(const GLdouble *m)
2038{
2039 d_1_0_Deprecated->f.LoadMatrixd(m);
2040}
2041
2042inline void QOpenGLFunctions_3_0::glLoadMatrixf(const GLfloat *m)
2043{
2044 d_1_0_Deprecated->f.LoadMatrixf(m);
2045}
2046
2047inline void QOpenGLFunctions_3_0::glLoadIdentity()
2048{
2049 d_1_0_Deprecated->f.LoadIdentity();
2050}
2051
2052inline void QOpenGLFunctions_3_0::glFrustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
2053{
2054 d_1_0_Deprecated->f.Frustum(left, right, bottom, top, zNear, zFar);
2055}
2056
2057inline GLboolean QOpenGLFunctions_3_0::glIsList(GLuint list)
2058{
2059 return d_1_0_Deprecated->f.IsList(list);
2060}
2061
2062inline void QOpenGLFunctions_3_0::glGetTexGeniv(GLenum coord, GLenum pname, GLint *params)
2063{
2064 d_1_0_Deprecated->f.GetTexGeniv(coord, pname, params);
2065}
2066
2067inline void QOpenGLFunctions_3_0::glGetTexGenfv(GLenum coord, GLenum pname, GLfloat *params)
2068{
2069 d_1_0_Deprecated->f.GetTexGenfv(coord, pname, params);
2070}
2071
2072inline void QOpenGLFunctions_3_0::glGetTexGendv(GLenum coord, GLenum pname, GLdouble *params)
2073{
2074 d_1_0_Deprecated->f.GetTexGendv(coord, pname, params);
2075}
2076
2077inline void QOpenGLFunctions_3_0::glGetTexEnviv(GLenum target, GLenum pname, GLint *params)
2078{
2079 d_1_0_Deprecated->f.GetTexEnviv(target, pname, params);
2080}
2081
2082inline void QOpenGLFunctions_3_0::glGetTexEnvfv(GLenum target, GLenum pname, GLfloat *params)
2083{
2084 d_1_0_Deprecated->f.GetTexEnvfv(target, pname, params);
2085}
2086
2087inline void QOpenGLFunctions_3_0::glGetPolygonStipple(GLubyte *mask)
2088{
2089 d_1_0_Deprecated->f.GetPolygonStipple(mask);
2090}
2091
2092inline void QOpenGLFunctions_3_0::glGetPixelMapusv(GLenum map, GLushort *values)
2093{
2094 d_1_0_Deprecated->f.GetPixelMapusv(map, values);
2095}
2096
2097inline void QOpenGLFunctions_3_0::glGetPixelMapuiv(GLenum map, GLuint *values)
2098{
2099 d_1_0_Deprecated->f.GetPixelMapuiv(map, values);
2100}
2101
2102inline void QOpenGLFunctions_3_0::glGetPixelMapfv(GLenum map, GLfloat *values)
2103{
2104 d_1_0_Deprecated->f.GetPixelMapfv(map, values);
2105}
2106
2107inline void QOpenGLFunctions_3_0::glGetMaterialiv(GLenum face, GLenum pname, GLint *params)
2108{
2109 d_1_0_Deprecated->f.GetMaterialiv(face, pname, params);
2110}
2111
2112inline void QOpenGLFunctions_3_0::glGetMaterialfv(GLenum face, GLenum pname, GLfloat *params)
2113{
2114 d_1_0_Deprecated->f.GetMaterialfv(face, pname, params);
2115}
2116
2117inline void QOpenGLFunctions_3_0::glGetMapiv(GLenum target, GLenum query, GLint *v)
2118{
2119 d_1_0_Deprecated->f.GetMapiv(target, query, v);
2120}
2121
2122inline void QOpenGLFunctions_3_0::glGetMapfv(GLenum target, GLenum query, GLfloat *v)
2123{
2124 d_1_0_Deprecated->f.GetMapfv(target, query, v);
2125}
2126
2127inline void QOpenGLFunctions_3_0::glGetMapdv(GLenum target, GLenum query, GLdouble *v)
2128{
2129 d_1_0_Deprecated->f.GetMapdv(target, query, v);
2130}
2131
2132inline void QOpenGLFunctions_3_0::glGetLightiv(GLenum light, GLenum pname, GLint *params)
2133{
2134 d_1_0_Deprecated->f.GetLightiv(light, pname, params);
2135}
2136
2137inline void QOpenGLFunctions_3_0::glGetLightfv(GLenum light, GLenum pname, GLfloat *params)
2138{
2139 d_1_0_Deprecated->f.GetLightfv(light, pname, params);
2140}
2141
2142inline void QOpenGLFunctions_3_0::glGetClipPlane(GLenum plane, GLdouble *equation)
2143{
2144 d_1_0_Deprecated->f.GetClipPlane(plane, equation);
2145}
2146
2147inline void QOpenGLFunctions_3_0::glDrawPixels(GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels)
2148{
2149 d_1_0_Deprecated->f.DrawPixels(width, height, format, type, pixels);
2150}
2151
2152inline void QOpenGLFunctions_3_0::glCopyPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type)
2153{
2154 d_1_0_Deprecated->f.CopyPixels(x, y, width, height, type);
2155}
2156
2157inline void QOpenGLFunctions_3_0::glPixelMapusv(GLenum map, GLint mapsize, const GLushort *values)
2158{
2159 d_1_0_Deprecated->f.PixelMapusv(map, mapsize, values);
2160}
2161
2162inline void QOpenGLFunctions_3_0::glPixelMapuiv(GLenum map, GLint mapsize, const GLuint *values)
2163{
2164 d_1_0_Deprecated->f.PixelMapuiv(map, mapsize, values);
2165}
2166
2167inline void QOpenGLFunctions_3_0::glPixelMapfv(GLenum map, GLint mapsize, const GLfloat *values)
2168{
2169 d_1_0_Deprecated->f.PixelMapfv(map, mapsize, values);
2170}
2171
2172inline void QOpenGLFunctions_3_0::glPixelTransferi(GLenum pname, GLint param)
2173{
2174 d_1_0_Deprecated->f.PixelTransferi(pname, param);
2175}
2176
2177inline void QOpenGLFunctions_3_0::glPixelTransferf(GLenum pname, GLfloat param)
2178{
2179 d_1_0_Deprecated->f.PixelTransferf(pname, param);
2180}
2181
2182inline void QOpenGLFunctions_3_0::glPixelZoom(GLfloat xfactor, GLfloat yfactor)
2183{
2184 d_1_0_Deprecated->f.PixelZoom(xfactor, yfactor);
2185}
2186
2187inline void QOpenGLFunctions_3_0::glAlphaFunc(GLenum func, GLfloat ref)
2188{
2189 d_1_0_Deprecated->f.AlphaFunc(func, ref);
2190}
2191
2192inline void QOpenGLFunctions_3_0::glEvalPoint2(GLint i, GLint j)
2193{
2194 d_1_0_Deprecated->f.EvalPoint2(i, j);
2195}
2196
2197inline void QOpenGLFunctions_3_0::glEvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)
2198{
2199 d_1_0_Deprecated->f.EvalMesh2(mode, i1, i2, j1, j2);
2200}
2201
2202inline void QOpenGLFunctions_3_0::glEvalPoint1(GLint i)
2203{
2204 d_1_0_Deprecated->f.EvalPoint1(i);
2205}
2206
2207inline void QOpenGLFunctions_3_0::glEvalMesh1(GLenum mode, GLint i1, GLint i2)
2208{
2209 d_1_0_Deprecated->f.EvalMesh1(mode, i1, i2);
2210}
2211
2212inline void QOpenGLFunctions_3_0::glEvalCoord2fv(const GLfloat *u)
2213{
2214 d_1_0_Deprecated->f.EvalCoord2fv(u);
2215}
2216
2217inline void QOpenGLFunctions_3_0::glEvalCoord2f(GLfloat u, GLfloat v)
2218{
2219 d_1_0_Deprecated->f.EvalCoord2f(u, v);
2220}
2221
2222inline void QOpenGLFunctions_3_0::glEvalCoord2dv(const GLdouble *u)
2223{
2224 d_1_0_Deprecated->f.EvalCoord2dv(u);
2225}
2226
2227inline void QOpenGLFunctions_3_0::glEvalCoord2d(GLdouble u, GLdouble v)
2228{
2229 d_1_0_Deprecated->f.EvalCoord2d(u, v);
2230}
2231
2232inline void QOpenGLFunctions_3_0::glEvalCoord1fv(const GLfloat *u)
2233{
2234 d_1_0_Deprecated->f.EvalCoord1fv(u);
2235}
2236
2237inline void QOpenGLFunctions_3_0::glEvalCoord1f(GLfloat u)
2238{
2239 d_1_0_Deprecated->f.EvalCoord1f(u);
2240}
2241
2242inline void QOpenGLFunctions_3_0::glEvalCoord1dv(const GLdouble *u)
2243{
2244 d_1_0_Deprecated->f.EvalCoord1dv(u);
2245}
2246
2247inline void QOpenGLFunctions_3_0::glEvalCoord1d(GLdouble u)
2248{
2249 d_1_0_Deprecated->f.EvalCoord1d(u);
2250}
2251
2252inline void QOpenGLFunctions_3_0::glMapGrid2f(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2)
2253{
2254 d_1_0_Deprecated->f.MapGrid2f(un, u1, u2, vn, v1, v2);
2255}
2256
2257inline void QOpenGLFunctions_3_0::glMapGrid2d(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2)
2258{
2259 d_1_0_Deprecated->f.MapGrid2d(un, u1, u2, vn, v1, v2);
2260}
2261
2262inline void QOpenGLFunctions_3_0::glMapGrid1f(GLint un, GLfloat u1, GLfloat u2)
2263{
2264 d_1_0_Deprecated->f.MapGrid1f(un, u1, u2);
2265}
2266
2267inline void QOpenGLFunctions_3_0::glMapGrid1d(GLint un, GLdouble u1, GLdouble u2)
2268{
2269 d_1_0_Deprecated->f.MapGrid1d(un, u1, u2);
2270}
2271
2272inline void QOpenGLFunctions_3_0::glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points)
2273{
2274 d_1_0_Deprecated->f.Map2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points);
2275}
2276
2277inline void QOpenGLFunctions_3_0::glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points)
2278{
2279 d_1_0_Deprecated->f.Map2d(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points);
2280}
2281
2282inline void QOpenGLFunctions_3_0::glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points)
2283{
2284 d_1_0_Deprecated->f.Map1f(target, u1, u2, stride, order, points);
2285}
2286
2287inline void QOpenGLFunctions_3_0::glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points)
2288{
2289 d_1_0_Deprecated->f.Map1d(target, u1, u2, stride, order, points);
2290}
2291
2292inline void QOpenGLFunctions_3_0::glPushAttrib(GLbitfield mask)
2293{
2294 d_1_0_Deprecated->f.PushAttrib(mask);
2295}
2296
2297inline void QOpenGLFunctions_3_0::glPopAttrib()
2298{
2299 d_1_0_Deprecated->f.PopAttrib();
2300}
2301
2302inline void QOpenGLFunctions_3_0::glAccum(GLenum op, GLfloat value)
2303{
2304 d_1_0_Deprecated->f.Accum(op, value);
2305}
2306
2307inline void QOpenGLFunctions_3_0::glIndexMask(GLuint mask)
2308{
2309 d_1_0_Deprecated->f.IndexMask(mask);
2310}
2311
2312inline void QOpenGLFunctions_3_0::glClearIndex(GLfloat c)
2313{
2314 d_1_0_Deprecated->f.ClearIndex(c);
2315}
2316
2317inline void QOpenGLFunctions_3_0::glClearAccum(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
2318{
2319 d_1_0_Deprecated->f.ClearAccum(red, green, blue, alpha);
2320}
2321
2322inline void QOpenGLFunctions_3_0::glPushName(GLuint name)
2323{
2324 d_1_0_Deprecated->f.PushName(name);
2325}
2326
2327inline void QOpenGLFunctions_3_0::glPopName()
2328{
2329 d_1_0_Deprecated->f.PopName();
2330}
2331
2332inline void QOpenGLFunctions_3_0::glPassThrough(GLfloat token)
2333{
2334 d_1_0_Deprecated->f.PassThrough(token);
2335}
2336
2337inline void QOpenGLFunctions_3_0::glLoadName(GLuint name)
2338{
2339 d_1_0_Deprecated->f.LoadName(name);
2340}
2341
2342inline void QOpenGLFunctions_3_0::glInitNames()
2343{
2344 d_1_0_Deprecated->f.InitNames();
2345}
2346
2347inline GLint QOpenGLFunctions_3_0::glRenderMode(GLenum mode)
2348{
2349 return d_1_0_Deprecated->f.RenderMode(mode);
2350}
2351
2352inline void QOpenGLFunctions_3_0::glSelectBuffer(GLsizei size, GLuint *buffer)
2353{
2354 d_1_0_Deprecated->f.SelectBuffer(size, buffer);
2355}
2356
2357inline void QOpenGLFunctions_3_0::glFeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer)
2358{
2359 d_1_0_Deprecated->f.FeedbackBuffer(size, type, buffer);
2360}
2361
2362inline void QOpenGLFunctions_3_0::glTexGeniv(GLenum coord, GLenum pname, const GLint *params)
2363{
2364 d_1_0_Deprecated->f.TexGeniv(coord, pname, params);
2365}
2366
2367inline void QOpenGLFunctions_3_0::glTexGeni(GLenum coord, GLenum pname, GLint param)
2368{
2369 d_1_0_Deprecated->f.TexGeni(coord, pname, param);
2370}
2371
2372inline void QOpenGLFunctions_3_0::glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params)
2373{
2374 d_1_0_Deprecated->f.TexGenfv(coord, pname, params);
2375}
2376
2377inline void QOpenGLFunctions_3_0::glTexGenf(GLenum coord, GLenum pname, GLfloat param)
2378{
2379 d_1_0_Deprecated->f.TexGenf(coord, pname, param);
2380}
2381
2382inline void QOpenGLFunctions_3_0::glTexGendv(GLenum coord, GLenum pname, const GLdouble *params)
2383{
2384 d_1_0_Deprecated->f.TexGendv(coord, pname, params);
2385}
2386
2387inline void QOpenGLFunctions_3_0::glTexGend(GLenum coord, GLenum pname, GLdouble param)
2388{
2389 d_1_0_Deprecated->f.TexGend(coord, pname, param);
2390}
2391
2392inline void QOpenGLFunctions_3_0::glTexEnviv(GLenum target, GLenum pname, const GLint *params)
2393{
2394 d_1_0_Deprecated->f.TexEnviv(target, pname, params);
2395}
2396
2397inline void QOpenGLFunctions_3_0::glTexEnvi(GLenum target, GLenum pname, GLint param)
2398{
2399 d_1_0_Deprecated->f.TexEnvi(target, pname, param);
2400}
2401
2402inline void QOpenGLFunctions_3_0::glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params)
2403{
2404 d_1_0_Deprecated->f.TexEnvfv(target, pname, params);
2405}
2406
2407inline void QOpenGLFunctions_3_0::glTexEnvf(GLenum target, GLenum pname, GLfloat param)
2408{
2409 d_1_0_Deprecated->f.TexEnvf(target, pname, param);
2410}
2411
2412inline void QOpenGLFunctions_3_0::glShadeModel(GLenum mode)
2413{
2414 d_1_0_Deprecated->f.ShadeModel(mode);
2415}
2416
2417inline void QOpenGLFunctions_3_0::glPolygonStipple(const GLubyte *mask)
2418{
2419 d_1_0_Deprecated->f.PolygonStipple(mask);
2420}
2421
2422inline void QOpenGLFunctions_3_0::glMaterialiv(GLenum face, GLenum pname, const GLint *params)
2423{
2424 d_1_0_Deprecated->f.Materialiv(face, pname, params);
2425}
2426
2427inline void QOpenGLFunctions_3_0::glMateriali(GLenum face, GLenum pname, GLint param)
2428{
2429 d_1_0_Deprecated->f.Materiali(face, pname, param);
2430}
2431
2432inline void QOpenGLFunctions_3_0::glMaterialfv(GLenum face, GLenum pname, const GLfloat *params)
2433{
2434 d_1_0_Deprecated->f.Materialfv(face, pname, params);
2435}
2436
2437inline void QOpenGLFunctions_3_0::glMaterialf(GLenum face, GLenum pname, GLfloat param)
2438{
2439 d_1_0_Deprecated->f.Materialf(face, pname, param);
2440}
2441
2442inline void QOpenGLFunctions_3_0::glLineStipple(GLint factor, GLushort pattern)
2443{
2444 d_1_0_Deprecated->f.LineStipple(factor, pattern);
2445}
2446
2447inline void QOpenGLFunctions_3_0::glLightModeliv(GLenum pname, const GLint *params)
2448{
2449 d_1_0_Deprecated->f.LightModeliv(pname, params);
2450}
2451
2452inline void QOpenGLFunctions_3_0::glLightModeli(GLenum pname, GLint param)
2453{
2454 d_1_0_Deprecated->f.LightModeli(pname, param);
2455}
2456
2457inline void QOpenGLFunctions_3_0::glLightModelfv(GLenum pname, const GLfloat *params)
2458{
2459 d_1_0_Deprecated->f.LightModelfv(pname, params);
2460}
2461
2462inline void QOpenGLFunctions_3_0::glLightModelf(GLenum pname, GLfloat param)
2463{
2464 d_1_0_Deprecated->f.LightModelf(pname, param);
2465}
2466
2467inline void QOpenGLFunctions_3_0::glLightiv(GLenum light, GLenum pname, const GLint *params)
2468{
2469 d_1_0_Deprecated->f.Lightiv(light, pname, params);
2470}
2471
2472inline void QOpenGLFunctions_3_0::glLighti(GLenum light, GLenum pname, GLint param)
2473{
2474 d_1_0_Deprecated->f.Lighti(light, pname, param);
2475}
2476
2477inline void QOpenGLFunctions_3_0::glLightfv(GLenum light, GLenum pname, const GLfloat *params)
2478{
2479 d_1_0_Deprecated->f.Lightfv(light, pname, params);
2480}
2481
2482inline void QOpenGLFunctions_3_0::glLightf(GLenum light, GLenum pname, GLfloat param)
2483{
2484 d_1_0_Deprecated->f.Lightf(light, pname, param);
2485}
2486
2487inline void QOpenGLFunctions_3_0::glFogiv(GLenum pname, const GLint *params)
2488{
2489 d_1_0_Deprecated->f.Fogiv(pname, params);
2490}
2491
2492inline void QOpenGLFunctions_3_0::glFogi(GLenum pname, GLint param)
2493{
2494 d_1_0_Deprecated->f.Fogi(pname, param);
2495}
2496
2497inline void QOpenGLFunctions_3_0::glFogfv(GLenum pname, const GLfloat *params)
2498{
2499 d_1_0_Deprecated->f.Fogfv(pname, params);
2500}
2501
2502inline void QOpenGLFunctions_3_0::glFogf(GLenum pname, GLfloat param)
2503{
2504 d_1_0_Deprecated->f.Fogf(pname, param);
2505}
2506
2507inline void QOpenGLFunctions_3_0::glColorMaterial(GLenum face, GLenum mode)
2508{
2509 d_1_0_Deprecated->f.ColorMaterial(face, mode);
2510}
2511
2512inline void QOpenGLFunctions_3_0::glClipPlane(GLenum plane, const GLdouble *equation)
2513{
2514 d_1_0_Deprecated->f.ClipPlane(plane, equation);
2515}
2516
2517inline void QOpenGLFunctions_3_0::glVertex4sv(const GLshort *v)
2518{
2519 d_1_0_Deprecated->f.Vertex4sv(v);
2520}
2521
2522inline void QOpenGLFunctions_3_0::glVertex4s(GLshort x, GLshort y, GLshort z, GLshort w)
2523{
2524 d_1_0_Deprecated->f.Vertex4s(x, y, z, w);
2525}
2526
2527inline void QOpenGLFunctions_3_0::glVertex4iv(const GLint *v)
2528{
2529 d_1_0_Deprecated->f.Vertex4iv(v);
2530}
2531
2532inline void QOpenGLFunctions_3_0::glVertex4i(GLint x, GLint y, GLint z, GLint w)
2533{
2534 d_1_0_Deprecated->f.Vertex4i(x, y, z, w);
2535}
2536
2537inline void QOpenGLFunctions_3_0::glVertex4fv(const GLfloat *v)
2538{
2539 d_1_0_Deprecated->f.Vertex4fv(v);
2540}
2541
2542inline void QOpenGLFunctions_3_0::glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
2543{
2544 d_1_0_Deprecated->f.Vertex4f(x, y, z, w);
2545}
2546
2547inline void QOpenGLFunctions_3_0::glVertex4dv(const GLdouble *v)
2548{
2549 d_1_0_Deprecated->f.Vertex4dv(v);
2550}
2551
2552inline void QOpenGLFunctions_3_0::glVertex4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
2553{
2554 d_1_0_Deprecated->f.Vertex4d(x, y, z, w);
2555}
2556
2557inline void QOpenGLFunctions_3_0::glVertex3sv(const GLshort *v)
2558{
2559 d_1_0_Deprecated->f.Vertex3sv(v);
2560}
2561
2562inline void QOpenGLFunctions_3_0::glVertex3s(GLshort x, GLshort y, GLshort z)
2563{
2564 d_1_0_Deprecated->f.Vertex3s(x, y, z);
2565}
2566
2567inline void QOpenGLFunctions_3_0::glVertex3iv(const GLint *v)
2568{
2569 d_1_0_Deprecated->f.Vertex3iv(v);
2570}
2571
2572inline void QOpenGLFunctions_3_0::glVertex3i(GLint x, GLint y, GLint z)
2573{
2574 d_1_0_Deprecated->f.Vertex3i(x, y, z);
2575}
2576
2577inline void QOpenGLFunctions_3_0::glVertex3fv(const GLfloat *v)
2578{
2579 d_1_0_Deprecated->f.Vertex3fv(v);
2580}
2581
2582inline void QOpenGLFunctions_3_0::glVertex3f(GLfloat x, GLfloat y, GLfloat z)
2583{
2584 d_1_0_Deprecated->f.Vertex3f(x, y, z);
2585}
2586
2587inline void QOpenGLFunctions_3_0::glVertex3dv(const GLdouble *v)
2588{
2589 d_1_0_Deprecated->f.Vertex3dv(v);
2590}
2591
2592inline void QOpenGLFunctions_3_0::glVertex3d(GLdouble x, GLdouble y, GLdouble z)
2593{
2594 d_1_0_Deprecated->f.Vertex3d(x, y, z);
2595}
2596
2597inline void QOpenGLFunctions_3_0::glVertex2sv(const GLshort *v)
2598{
2599 d_1_0_Deprecated->f.Vertex2sv(v);
2600}
2601
2602inline void QOpenGLFunctions_3_0::glVertex2s(GLshort x, GLshort y)
2603{
2604 d_1_0_Deprecated->f.Vertex2s(x, y);
2605}
2606
2607inline void QOpenGLFunctions_3_0::glVertex2iv(const GLint *v)
2608{
2609 d_1_0_Deprecated->f.Vertex2iv(v);
2610}
2611
2612inline void QOpenGLFunctions_3_0::glVertex2i(GLint x, GLint y)
2613{
2614 d_1_0_Deprecated->f.Vertex2i(x, y);
2615}
2616
2617inline void QOpenGLFunctions_3_0::glVertex2fv(const GLfloat *v)
2618{
2619 d_1_0_Deprecated->f.Vertex2fv(v);
2620}
2621
2622inline void QOpenGLFunctions_3_0::glVertex2f(GLfloat x, GLfloat y)
2623{
2624 d_1_0_Deprecated->f.Vertex2f(x, y);
2625}
2626
2627inline void QOpenGLFunctions_3_0::glVertex2dv(const GLdouble *v)
2628{
2629 d_1_0_Deprecated->f.Vertex2dv(v);
2630}
2631
2632inline void QOpenGLFunctions_3_0::glVertex2d(GLdouble x, GLdouble y)
2633{
2634 d_1_0_Deprecated->f.Vertex2d(x, y);
2635}
2636
2637inline void QOpenGLFunctions_3_0::glTexCoord4sv(const GLshort *v)
2638{
2639 d_1_0_Deprecated->f.TexCoord4sv(v);
2640}
2641
2642inline void QOpenGLFunctions_3_0::glTexCoord4s(GLshort s, GLshort t, GLshort r, GLshort q)
2643{
2644 d_1_0_Deprecated->f.TexCoord4s(s, t, r, q);
2645}
2646
2647inline void QOpenGLFunctions_3_0::glTexCoord4iv(const GLint *v)
2648{
2649 d_1_0_Deprecated->f.TexCoord4iv(v);
2650}
2651
2652inline void QOpenGLFunctions_3_0::glTexCoord4i(GLint s, GLint t, GLint r, GLint q)
2653{
2654 d_1_0_Deprecated->f.TexCoord4i(s, t, r, q);
2655}
2656
2657inline void QOpenGLFunctions_3_0::glTexCoord4fv(const GLfloat *v)
2658{
2659 d_1_0_Deprecated->f.TexCoord4fv(v);
2660}
2661
2662inline void QOpenGLFunctions_3_0::glTexCoord4f(GLfloat s, GLfloat t, GLfloat r, GLfloat q)
2663{
2664 d_1_0_Deprecated->f.TexCoord4f(s, t, r, q);
2665}
2666
2667inline void QOpenGLFunctions_3_0::glTexCoord4dv(const GLdouble *v)
2668{
2669 d_1_0_Deprecated->f.TexCoord4dv(v);
2670}
2671
2672inline void QOpenGLFunctions_3_0::glTexCoord4d(GLdouble s, GLdouble t, GLdouble r, GLdouble q)
2673{
2674 d_1_0_Deprecated->f.TexCoord4d(s, t, r, q);
2675}
2676
2677inline void QOpenGLFunctions_3_0::glTexCoord3sv(const GLshort *v)
2678{
2679 d_1_0_Deprecated->f.TexCoord3sv(v);
2680}
2681
2682inline void QOpenGLFunctions_3_0::glTexCoord3s(GLshort s, GLshort t, GLshort r)
2683{
2684 d_1_0_Deprecated->f.TexCoord3s(s, t, r);
2685}
2686
2687inline void QOpenGLFunctions_3_0::glTexCoord3iv(const GLint *v)
2688{
2689 d_1_0_Deprecated->f.TexCoord3iv(v);
2690}
2691
2692inline void QOpenGLFunctions_3_0::glTexCoord3i(GLint s, GLint t, GLint r)
2693{
2694 d_1_0_Deprecated->f.TexCoord3i(s, t, r);
2695}
2696
2697inline void QOpenGLFunctions_3_0::glTexCoord3fv(const GLfloat *v)
2698{
2699 d_1_0_Deprecated->f.TexCoord3fv(v);
2700}
2701
2702inline void QOpenGLFunctions_3_0::glTexCoord3f(GLfloat s, GLfloat t, GLfloat r)
2703{
2704 d_1_0_Deprecated->f.TexCoord3f(s, t, r);
2705}
2706
2707inline void QOpenGLFunctions_3_0::glTexCoord3dv(const GLdouble *v)
2708{
2709 d_1_0_Deprecated->f.TexCoord3dv(v);
2710}
2711
2712inline void QOpenGLFunctions_3_0::glTexCoord3d(GLdouble s, GLdouble t, GLdouble r)
2713{
2714 d_1_0_Deprecated->f.TexCoord3d(s, t, r);
2715}
2716
2717inline void QOpenGLFunctions_3_0::glTexCoord2sv(const GLshort *v)
2718{
2719 d_1_0_Deprecated->f.TexCoord2sv(v);
2720}
2721
2722inline void QOpenGLFunctions_3_0::glTexCoord2s(GLshort s, GLshort t)
2723{
2724 d_1_0_Deprecated->f.TexCoord2s(s, t);
2725}
2726
2727inline void QOpenGLFunctions_3_0::glTexCoord2iv(const GLint *v)
2728{
2729 d_1_0_Deprecated->f.TexCoord2iv(v);
2730}
2731
2732inline void QOpenGLFunctions_3_0::glTexCoord2i(GLint s, GLint t)
2733{
2734 d_1_0_Deprecated->f.TexCoord2i(s, t);
2735}
2736
2737inline void QOpenGLFunctions_3_0::glTexCoord2fv(const GLfloat *v)
2738{
2739 d_1_0_Deprecated->f.TexCoord2fv(v);
2740}
2741
2742inline void QOpenGLFunctions_3_0::glTexCoord2f(GLfloat s, GLfloat t)
2743{
2744 d_1_0_Deprecated->f.TexCoord2f(s, t);
2745}
2746
2747inline void QOpenGLFunctions_3_0::glTexCoord2dv(const GLdouble *v)
2748{
2749 d_1_0_Deprecated->f.TexCoord2dv(v);
2750}
2751
2752inline void QOpenGLFunctions_3_0::glTexCoord2d(GLdouble s, GLdouble t)
2753{
2754 d_1_0_Deprecated->f.TexCoord2d(s, t);
2755}
2756
2757inline void QOpenGLFunctions_3_0::glTexCoord1sv(const GLshort *v)
2758{
2759 d_1_0_Deprecated->f.TexCoord1sv(v);
2760}
2761
2762inline void QOpenGLFunctions_3_0::glTexCoord1s(GLshort s)
2763{
2764 d_1_0_Deprecated->f.TexCoord1s(s);
2765}
2766
2767inline void QOpenGLFunctions_3_0::glTexCoord1iv(const GLint *v)
2768{
2769 d_1_0_Deprecated->f.TexCoord1iv(v);
2770}
2771
2772inline void QOpenGLFunctions_3_0::glTexCoord1i(GLint s)
2773{
2774 d_1_0_Deprecated->f.TexCoord1i(s);
2775}
2776
2777inline void QOpenGLFunctions_3_0::glTexCoord1fv(const GLfloat *v)
2778{
2779 d_1_0_Deprecated->f.TexCoord1fv(v);
2780}
2781
2782inline void QOpenGLFunctions_3_0::glTexCoord1f(GLfloat s)
2783{
2784 d_1_0_Deprecated->f.TexCoord1f(s);
2785}
2786
2787inline void QOpenGLFunctions_3_0::glTexCoord1dv(const GLdouble *v)
2788{
2789 d_1_0_Deprecated->f.TexCoord1dv(v);
2790}
2791
2792inline void QOpenGLFunctions_3_0::glTexCoord1d(GLdouble s)
2793{
2794 d_1_0_Deprecated->f.TexCoord1d(s);
2795}
2796
2797inline void QOpenGLFunctions_3_0::glRectsv(const GLshort *v1, const GLshort *v2)
2798{
2799 d_1_0_Deprecated->f.Rectsv(v1, v2);
2800}
2801
2802inline void QOpenGLFunctions_3_0::glRects(GLshort x1, GLshort y1, GLshort x2, GLshort y2)
2803{
2804 d_1_0_Deprecated->f.Rects(x1, y1, x2, y2);
2805}
2806
2807inline void QOpenGLFunctions_3_0::glRectiv(const GLint *v1, const GLint *v2)
2808{
2809 d_1_0_Deprecated->f.Rectiv(v1, v2);
2810}
2811
2812inline void QOpenGLFunctions_3_0::glRecti(GLint x1, GLint y1, GLint x2, GLint y2)
2813{
2814 d_1_0_Deprecated->f.Recti(x1, y1, x2, y2);
2815}
2816
2817inline void QOpenGLFunctions_3_0::glRectfv(const GLfloat *v1, const GLfloat *v2)
2818{
2819 d_1_0_Deprecated->f.Rectfv(v1, v2);
2820}
2821
2822inline void QOpenGLFunctions_3_0::glRectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)
2823{
2824 d_1_0_Deprecated->f.Rectf(x1, y1, x2, y2);
2825}
2826
2827inline void QOpenGLFunctions_3_0::glRectdv(const GLdouble *v1, const GLdouble *v2)
2828{
2829 d_1_0_Deprecated->f.Rectdv(v1, v2);
2830}
2831
2832inline void QOpenGLFunctions_3_0::glRectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2)
2833{
2834 d_1_0_Deprecated->f.Rectd(x1, y1, x2, y2);
2835}
2836
2837inline void QOpenGLFunctions_3_0::glRasterPos4sv(const GLshort *v)
2838{
2839 d_1_0_Deprecated->f.RasterPos4sv(v);
2840}
2841
2842inline void QOpenGLFunctions_3_0::glRasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w)
2843{
2844 d_1_0_Deprecated->f.RasterPos4s(x, y, z, w);
2845}
2846
2847inline void QOpenGLFunctions_3_0::glRasterPos4iv(const GLint *v)
2848{
2849 d_1_0_Deprecated->f.RasterPos4iv(v);
2850}
2851
2852inline void QOpenGLFunctions_3_0::glRasterPos4i(GLint x, GLint y, GLint z, GLint w)
2853{
2854 d_1_0_Deprecated->f.RasterPos4i(x, y, z, w);
2855}
2856
2857inline void QOpenGLFunctions_3_0::glRasterPos4fv(const GLfloat *v)
2858{
2859 d_1_0_Deprecated->f.RasterPos4fv(v);
2860}
2861
2862inline void QOpenGLFunctions_3_0::glRasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w)
2863{
2864 d_1_0_Deprecated->f.RasterPos4f(x, y, z, w);
2865}
2866
2867inline void QOpenGLFunctions_3_0::glRasterPos4dv(const GLdouble *v)
2868{
2869 d_1_0_Deprecated->f.RasterPos4dv(v);
2870}
2871
2872inline void QOpenGLFunctions_3_0::glRasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w)
2873{
2874 d_1_0_Deprecated->f.RasterPos4d(x, y, z, w);
2875}
2876
2877inline void QOpenGLFunctions_3_0::glRasterPos3sv(const GLshort *v)
2878{
2879 d_1_0_Deprecated->f.RasterPos3sv(v);
2880}
2881
2882inline void QOpenGLFunctions_3_0::glRasterPos3s(GLshort x, GLshort y, GLshort z)
2883{
2884 d_1_0_Deprecated->f.RasterPos3s(x, y, z);
2885}
2886
2887inline void QOpenGLFunctions_3_0::glRasterPos3iv(const GLint *v)
2888{
2889 d_1_0_Deprecated->f.RasterPos3iv(v);
2890}
2891
2892inline void QOpenGLFunctions_3_0::glRasterPos3i(GLint x, GLint y, GLint z)
2893{
2894 d_1_0_Deprecated->f.RasterPos3i(x, y, z);
2895}
2896
2897inline void QOpenGLFunctions_3_0::glRasterPos3fv(const GLfloat *v)
2898{
2899 d_1_0_Deprecated->f.RasterPos3fv(v);
2900}
2901
2902inline void QOpenGLFunctions_3_0::glRasterPos3f(GLfloat x, GLfloat y, GLfloat z)
2903{
2904 d_1_0_Deprecated->f.RasterPos3f(x, y, z);
2905}
2906
2907inline void QOpenGLFunctions_3_0::glRasterPos3dv(const GLdouble *v)
2908{
2909 d_1_0_Deprecated->f.RasterPos3dv(v);
2910}
2911
2912inline void QOpenGLFunctions_3_0::glRasterPos3d(GLdouble x, GLdouble y, GLdouble z)
2913{
2914 d_1_0_Deprecated->f.RasterPos3d(x, y, z);
2915}
2916
2917inline void QOpenGLFunctions_3_0::glRasterPos2sv(const GLshort *v)
2918{
2919 d_1_0_Deprecated->f.RasterPos2sv(v);
2920}
2921
2922inline void QOpenGLFunctions_3_0::glRasterPos2s(GLshort x, GLshort y)
2923{
2924 d_1_0_Deprecated->f.RasterPos2s(x, y);
2925}
2926
2927inline void QOpenGLFunctions_3_0::glRasterPos2iv(const GLint *v)
2928{
2929 d_1_0_Deprecated->f.RasterPos2iv(v);
2930}
2931
2932inline void QOpenGLFunctions_3_0::glRasterPos2i(GLint x, GLint y)
2933{
2934 d_1_0_Deprecated->f.RasterPos2i(x, y);
2935}
2936
2937inline void QOpenGLFunctions_3_0::glRasterPos2fv(const GLfloat *v)
2938{
2939 d_1_0_Deprecated->f.RasterPos2fv(v);
2940}
2941
2942inline void QOpenGLFunctions_3_0::glRasterPos2f(GLfloat x, GLfloat y)
2943{
2944 d_1_0_Deprecated->f.RasterPos2f(x, y);
2945}
2946
2947inline void QOpenGLFunctions_3_0::glRasterPos2dv(const GLdouble *v)
2948{
2949 d_1_0_Deprecated->f.RasterPos2dv(v);
2950}
2951
2952inline void QOpenGLFunctions_3_0::glRasterPos2d(GLdouble x, GLdouble y)
2953{
2954 d_1_0_Deprecated->f.RasterPos2d(x, y);
2955}
2956
2957inline void QOpenGLFunctions_3_0::glNormal3sv(const GLshort *v)
2958{
2959 d_1_0_Deprecated->f.Normal3sv(v);
2960}
2961
2962inline void QOpenGLFunctions_3_0::glNormal3s(GLshort nx, GLshort ny, GLshort nz)
2963{
2964 d_1_0_Deprecated->f.Normal3s(nx, ny, nz);
2965}
2966
2967inline void QOpenGLFunctions_3_0::glNormal3iv(const GLint *v)
2968{
2969 d_1_0_Deprecated->f.Normal3iv(v);
2970}
2971
2972inline void QOpenGLFunctions_3_0::glNormal3i(GLint nx, GLint ny, GLint nz)
2973{
2974 d_1_0_Deprecated->f.Normal3i(nx, ny, nz);
2975}
2976
2977inline void QOpenGLFunctions_3_0::glNormal3fv(const GLfloat *v)
2978{
2979 d_1_0_Deprecated->f.Normal3fv(v);
2980}
2981
2982inline void QOpenGLFunctions_3_0::glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz)
2983{
2984 d_1_0_Deprecated->f.Normal3f(nx, ny, nz);
2985}
2986
2987inline void QOpenGLFunctions_3_0::glNormal3dv(const GLdouble *v)
2988{
2989 d_1_0_Deprecated->f.Normal3dv(v);
2990}
2991
2992inline void QOpenGLFunctions_3_0::glNormal3d(GLdouble nx, GLdouble ny, GLdouble nz)
2993{
2994 d_1_0_Deprecated->f.Normal3d(nx, ny, nz);
2995}
2996
2997inline void QOpenGLFunctions_3_0::glNormal3bv(const GLbyte *v)
2998{
2999 d_1_0_Deprecated->f.Normal3bv(v);
3000}
3001
3002inline void QOpenGLFunctions_3_0::glNormal3b(GLbyte nx, GLbyte ny, GLbyte nz)
3003{
3004 d_1_0_Deprecated->f.Normal3b(nx, ny, nz);
3005}
3006
3007inline void QOpenGLFunctions_3_0::glIndexsv(const GLshort *c)
3008{
3009 d_1_0_Deprecated->f.Indexsv(c);
3010}
3011
3012inline void QOpenGLFunctions_3_0::glIndexs(GLshort c)
3013{
3014 d_1_0_Deprecated->f.Indexs(c);
3015}
3016
3017inline void QOpenGLFunctions_3_0::glIndexiv(const GLint *c)
3018{
3019 d_1_0_Deprecated->f.Indexiv(c);
3020}
3021
3022inline void QOpenGLFunctions_3_0::glIndexi(GLint c)
3023{
3024 d_1_0_Deprecated->f.Indexi(c);
3025}
3026
3027inline void QOpenGLFunctions_3_0::glIndexfv(const GLfloat *c)
3028{
3029 d_1_0_Deprecated->f.Indexfv(c);
3030}
3031
3032inline void QOpenGLFunctions_3_0::glIndexf(GLfloat c)
3033{
3034 d_1_0_Deprecated->f.Indexf(c);
3035}
3036
3037inline void QOpenGLFunctions_3_0::glIndexdv(const GLdouble *c)
3038{
3039 d_1_0_Deprecated->f.Indexdv(c);
3040}
3041
3042inline void QOpenGLFunctions_3_0::glIndexd(GLdouble c)
3043{
3044 d_1_0_Deprecated->f.Indexd(c);
3045}
3046
3047inline void QOpenGLFunctions_3_0::glEnd()
3048{
3049 d_1_0_Deprecated->f.End();
3050}
3051
3052inline void QOpenGLFunctions_3_0::glEdgeFlagv(const GLboolean *flag)
3053{
3054 d_1_0_Deprecated->f.EdgeFlagv(flag);
3055}
3056
3057inline void QOpenGLFunctions_3_0::glEdgeFlag(GLboolean flag)
3058{
3059 d_1_0_Deprecated->f.EdgeFlag(flag);
3060}
3061
3062inline void QOpenGLFunctions_3_0::glColor4usv(const GLushort *v)
3063{
3064 d_1_0_Deprecated->f.Color4usv(v);
3065}
3066
3067inline void QOpenGLFunctions_3_0::glColor4us(GLushort red, GLushort green, GLushort blue, GLushort alpha)
3068{
3069 d_1_0_Deprecated->f.Color4us(red, green, blue, alpha);
3070}
3071
3072inline void QOpenGLFunctions_3_0::glColor4uiv(const GLuint *v)
3073{
3074 d_1_0_Deprecated->f.Color4uiv(v);
3075}
3076
3077inline void QOpenGLFunctions_3_0::glColor4ui(GLuint red, GLuint green, GLuint blue, GLuint alpha)
3078{
3079 d_1_0_Deprecated->f.Color4ui(red, green, blue, alpha);
3080}
3081
3082inline void QOpenGLFunctions_3_0::glColor4ubv(const GLubyte *v)
3083{
3084 d_1_0_Deprecated->f.Color4ubv(v);
3085}
3086
3087inline void QOpenGLFunctions_3_0::glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha)
3088{
3089 d_1_0_Deprecated->f.Color4ub(red, green, blue, alpha);
3090}
3091
3092inline void QOpenGLFunctions_3_0::glColor4sv(const GLshort *v)
3093{
3094 d_1_0_Deprecated->f.Color4sv(v);
3095}
3096
3097inline void QOpenGLFunctions_3_0::glColor4s(GLshort red, GLshort green, GLshort blue, GLshort alpha)
3098{
3099 d_1_0_Deprecated->f.Color4s(red, green, blue, alpha);
3100}
3101
3102inline void QOpenGLFunctions_3_0::glColor4iv(const GLint *v)
3103{
3104 d_1_0_Deprecated->f.Color4iv(v);
3105}
3106
3107inline void QOpenGLFunctions_3_0::glColor4i(GLint red, GLint green, GLint blue, GLint alpha)
3108{
3109 d_1_0_Deprecated->f.Color4i(red, green, blue, alpha);
3110}
3111
3112inline void QOpenGLFunctions_3_0::glColor4fv(const GLfloat *v)
3113{
3114 d_1_0_Deprecated->f.Color4fv(v);
3115}
3116
3117inline void QOpenGLFunctions_3_0::glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
3118{
3119 d_1_0_Deprecated->f.Color4f(red, green, blue, alpha);
3120}
3121
3122inline void QOpenGLFunctions_3_0::glColor4dv(const GLdouble *v)
3123{
3124 d_1_0_Deprecated->f.Color4dv(v);
3125}
3126
3127inline void QOpenGLFunctions_3_0::glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha)
3128{
3129 d_1_0_Deprecated->f.Color4d(red, green, blue, alpha);
3130}
3131
3132inline void QOpenGLFunctions_3_0::glColor4bv(const GLbyte *v)
3133{
3134 d_1_0_Deprecated->f.Color4bv(v);
3135}
3136
3137inline void QOpenGLFunctions_3_0::glColor4b(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha)
3138{
3139 d_1_0_Deprecated->f.Color4b(red, green, blue, alpha);
3140}
3141
3142inline void QOpenGLFunctions_3_0::glColor3usv(const GLushort *v)
3143{
3144 d_1_0_Deprecated->f.Color3usv(v);
3145}
3146
3147inline void QOpenGLFunctions_3_0::glColor3us(GLushort red, GLushort green, GLushort blue)
3148{
3149 d_1_0_Deprecated->f.Color3us(red, green, blue);
3150}
3151
3152inline void QOpenGLFunctions_3_0::glColor3uiv(const GLuint *v)
3153{
3154 d_1_0_Deprecated->f.Color3uiv(v);
3155}
3156
3157inline void QOpenGLFunctions_3_0::glColor3ui(GLuint red, GLuint green, GLuint blue)
3158{
3159 d_1_0_Deprecated->f.Color3ui(red, green, blue);
3160}
3161
3162inline void QOpenGLFunctions_3_0::glColor3ubv(const GLubyte *v)
3163{
3164 d_1_0_Deprecated->f.Color3ubv(v);
3165}
3166
3167inline void QOpenGLFunctions_3_0::glColor3ub(GLubyte red, GLubyte green, GLubyte blue)
3168{
3169 d_1_0_Deprecated->f.Color3ub(red, green, blue);
3170}
3171
3172inline void QOpenGLFunctions_3_0::glColor3sv(const GLshort *v)
3173{
3174 d_1_0_Deprecated->f.Color3sv(v);
3175}
3176
3177inline void QOpenGLFunctions_3_0::glColor3s(GLshort red, GLshort green, GLshort blue)
3178{
3179 d_1_0_Deprecated->f.Color3s(red, green, blue);
3180}
3181
3182inline void QOpenGLFunctions_3_0::glColor3iv(const GLint *v)
3183{
3184 d_1_0_Deprecated->f.Color3iv(v);
3185}
3186
3187inline void QOpenGLFunctions_3_0::glColor3i(GLint red, GLint green, GLint blue)
3188{
3189 d_1_0_Deprecated->f.Color3i(red, green, blue);
3190}
3191
3192inline void QOpenGLFunctions_3_0::glColor3fv(const GLfloat *v)
3193{
3194 d_1_0_Deprecated->f.Color3fv(v);
3195}
3196
3197inline void QOpenGLFunctions_3_0::glColor3f(GLfloat red, GLfloat green, GLfloat blue)
3198{
3199 d_1_0_Deprecated->f.Color3f(red, green, blue);
3200}
3201
3202inline void QOpenGLFunctions_3_0::glColor3dv(const GLdouble *v)
3203{
3204 d_1_0_Deprecated->f.Color3dv(v);
3205}
3206
3207inline void QOpenGLFunctions_3_0::glColor3d(GLdouble red, GLdouble green, GLdouble blue)
3208{
3209 d_1_0_Deprecated->f.Color3d(red, green, blue);
3210}
3211
3212inline void QOpenGLFunctions_3_0::glColor3bv(const GLbyte *v)
3213{
3214 d_1_0_Deprecated->f.Color3bv(v);
3215}
3216
3217inline void QOpenGLFunctions_3_0::glColor3b(GLbyte red, GLbyte green, GLbyte blue)
3218{
3219 d_1_0_Deprecated->f.Color3b(red, green, blue);
3220}
3221
3222inline void QOpenGLFunctions_3_0::glBitmap(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap)
3223{
3224 d_1_0_Deprecated->f.Bitmap(width, height, xorig, yorig, xmove, ymove, bitmap);
3225}
3226
3227inline void QOpenGLFunctions_3_0::glBegin(GLenum mode)
3228{
3229 d_1_0_Deprecated->f.Begin(mode);
3230}
3231
3232inline void QOpenGLFunctions_3_0::glListBase(GLuint base)
3233{
3234 d_1_0_Deprecated->f.ListBase(base);
3235}
3236
3237inline GLuint QOpenGLFunctions_3_0::glGenLists(GLsizei range)
3238{
3239 return d_1_0_Deprecated->f.GenLists(range);
3240}
3241
3242inline void QOpenGLFunctions_3_0::glDeleteLists(GLuint list, GLsizei range)
3243{
3244 d_1_0_Deprecated->f.DeleteLists(list, range);
3245}
3246
3247inline void QOpenGLFunctions_3_0::glCallLists(GLsizei n, GLenum type, const GLvoid *lists)
3248{
3249 d_1_0_Deprecated->f.CallLists(n, type, lists);
3250}
3251
3252inline void QOpenGLFunctions_3_0::glCallList(GLuint list)
3253{
3254 d_1_0_Deprecated->f.CallList(list);
3255}
3256
3257inline void QOpenGLFunctions_3_0::glEndList()
3258{
3259 d_1_0_Deprecated->f.EndList();
3260}
3261
3262inline void QOpenGLFunctions_3_0::glNewList(GLuint list, GLenum mode)
3263{
3264 d_1_0_Deprecated->f.NewList(list, mode);
3265}
3266
3267
3268// OpenGL 1.1 deprecated functions
3269inline void QOpenGLFunctions_3_0::glPushClientAttrib(GLbitfield mask)
3270{
3271 d_1_1_Deprecated->f.PushClientAttrib(mask);
3272}
3273
3274inline void QOpenGLFunctions_3_0::glPopClientAttrib()
3275{
3276 d_1_1_Deprecated->f.PopClientAttrib();
3277}
3278
3279inline void QOpenGLFunctions_3_0::glPrioritizeTextures(GLsizei n, const GLuint *textures, const GLfloat *priorities)
3280{
3281 d_1_1_Deprecated->f.PrioritizeTextures(n, textures, priorities);
3282}
3283
3284inline GLboolean QOpenGLFunctions_3_0::glAreTexturesResident(GLsizei n, const GLuint *textures, GLboolean *residences)
3285{
3286 return d_1_1_Deprecated->f.AreTexturesResident(n, textures, residences);
3287}
3288
3289inline void QOpenGLFunctions_3_0::glVertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
3290{
3291 d_1_1_Deprecated->f.VertexPointer(size, type, stride, pointer);
3292}
3293
3294inline void QOpenGLFunctions_3_0::glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
3295{
3296 d_1_1_Deprecated->f.TexCoordPointer(size, type, stride, pointer);
3297}
3298
3299inline void QOpenGLFunctions_3_0::glNormalPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
3300{
3301 d_1_1_Deprecated->f.NormalPointer(type, stride, pointer);
3302}
3303
3304inline void QOpenGLFunctions_3_0::glInterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer)
3305{
3306 d_1_1_Deprecated->f.InterleavedArrays(format, stride, pointer);
3307}
3308
3309inline void QOpenGLFunctions_3_0::glIndexPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
3310{
3311 d_1_1_Deprecated->f.IndexPointer(type, stride, pointer);
3312}
3313
3314inline void QOpenGLFunctions_3_0::glEnableClientState(GLenum array)
3315{
3316 d_1_1_Deprecated->f.EnableClientState(array);
3317}
3318
3319inline void QOpenGLFunctions_3_0::glEdgeFlagPointer(GLsizei stride, const GLvoid *pointer)
3320{
3321 d_1_1_Deprecated->f.EdgeFlagPointer(stride, pointer);
3322}
3323
3324inline void QOpenGLFunctions_3_0::glDisableClientState(GLenum array)
3325{
3326 d_1_1_Deprecated->f.DisableClientState(array);
3327}
3328
3329inline void QOpenGLFunctions_3_0::glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
3330{
3331 d_1_1_Deprecated->f.ColorPointer(size, type, stride, pointer);
3332}
3333
3334inline void QOpenGLFunctions_3_0::glArrayElement(GLint i)
3335{
3336 d_1_1_Deprecated->f.ArrayElement(i);
3337}
3338
3339
3340// OpenGL 1.2 deprecated functions
3341inline void QOpenGLFunctions_3_0::glResetMinmax(GLenum target)
3342{
3343 d_1_2_Deprecated->f.ResetMinmax(target);
3344}
3345
3346inline void QOpenGLFunctions_3_0::glResetHistogram(GLenum target)
3347{
3348 d_1_2_Deprecated->f.ResetHistogram(target);
3349}
3350
3351inline void QOpenGLFunctions_3_0::glMinmax(GLenum target, GLenum internalformat, GLboolean sink)
3352{
3353 d_1_2_Deprecated->f.Minmax(target, internalformat, sink);
3354}
3355
3356inline void QOpenGLFunctions_3_0::glHistogram(GLenum target, GLsizei width, GLenum internalformat, GLboolean sink)
3357{
3358 d_1_2_Deprecated->f.Histogram(target, width, internalformat, sink);
3359}
3360
3361inline void QOpenGLFunctions_3_0::glGetMinmaxParameteriv(GLenum target, GLenum pname, GLint *params)
3362{
3363 d_1_2_Deprecated->f.GetMinmaxParameteriv(target, pname, params);
3364}
3365
3366inline void QOpenGLFunctions_3_0::glGetMinmaxParameterfv(GLenum target, GLenum pname, GLfloat *params)
3367{
3368 d_1_2_Deprecated->f.GetMinmaxParameterfv(target, pname, params);
3369}
3370
3371inline void QOpenGLFunctions_3_0::glGetMinmax(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
3372{
3373 d_1_2_Deprecated->f.GetMinmax(target, reset, format, type, values);
3374}
3375
3376inline void QOpenGLFunctions_3_0::glGetHistogramParameteriv(GLenum target, GLenum pname, GLint *params)
3377{
3378 d_1_2_Deprecated->f.GetHistogramParameteriv(target, pname, params);
3379}
3380
3381inline void QOpenGLFunctions_3_0::glGetHistogramParameterfv(GLenum target, GLenum pname, GLfloat *params)
3382{
3383 d_1_2_Deprecated->f.GetHistogramParameterfv(target, pname, params);
3384}
3385
3386inline void QOpenGLFunctions_3_0::glGetHistogram(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid *values)
3387{
3388 d_1_2_Deprecated->f.GetHistogram(target, reset, format, type, values);
3389}
3390
3391inline void QOpenGLFunctions_3_0::glSeparableFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
3392{
3393 d_1_2_Deprecated->f.SeparableFilter2D(target, internalformat, width, height, format, type, row, column);
3394}
3395
3396inline void QOpenGLFunctions_3_0::glGetSeparableFilter(GLenum target, GLenum format, GLenum type, GLvoid *row, GLvoid *column, GLvoid *span)
3397{
3398 d_1_2_Deprecated->f.GetSeparableFilter(target, format, type, row, column, span);
3399}
3400
3401inline void QOpenGLFunctions_3_0::glGetConvolutionParameteriv(GLenum target, GLenum pname, GLint *params)
3402{
3403 d_1_2_Deprecated->f.GetConvolutionParameteriv(target, pname, params);
3404}
3405
3406inline void QOpenGLFunctions_3_0::glGetConvolutionParameterfv(GLenum target, GLenum pname, GLfloat *params)
3407{
3408 d_1_2_Deprecated->f.GetConvolutionParameterfv(target, pname, params);
3409}
3410
3411inline void QOpenGLFunctions_3_0::glGetConvolutionFilter(GLenum target, GLenum format, GLenum type, GLvoid *image)
3412{
3413 d_1_2_Deprecated->f.GetConvolutionFilter(target, format, type, image);
3414}
3415
3416inline void QOpenGLFunctions_3_0::glCopyConvolutionFilter2D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height)
3417{
3418 d_1_2_Deprecated->f.CopyConvolutionFilter2D(target, internalformat, x, y, width, height);
3419}
3420
3421inline void QOpenGLFunctions_3_0::glCopyConvolutionFilter1D(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width)
3422{
3423 d_1_2_Deprecated->f.CopyConvolutionFilter1D(target, internalformat, x, y, width);
3424}
3425
3426inline void QOpenGLFunctions_3_0::glConvolutionParameteriv(GLenum target, GLenum pname, const GLint *params)
3427{
3428 d_1_2_Deprecated->f.ConvolutionParameteriv(target, pname, params);
3429}
3430
3431inline void QOpenGLFunctions_3_0::glConvolutionParameteri(GLenum target, GLenum pname, GLint params)
3432{
3433 d_1_2_Deprecated->f.ConvolutionParameteri(target, pname, params);
3434}
3435
3436inline void QOpenGLFunctions_3_0::glConvolutionParameterfv(GLenum target, GLenum pname, const GLfloat *params)
3437{
3438 d_1_2_Deprecated->f.ConvolutionParameterfv(target, pname, params);
3439}
3440
3441inline void QOpenGLFunctions_3_0::glConvolutionParameterf(GLenum target, GLenum pname, GLfloat params)
3442{
3443 d_1_2_Deprecated->f.ConvolutionParameterf(target, pname, params);
3444}
3445
3446inline void QOpenGLFunctions_3_0::glConvolutionFilter2D(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *image)
3447{
3448 d_1_2_Deprecated->f.ConvolutionFilter2D(target, internalformat, width, height, format, type, image);
3449}
3450
3451inline void QOpenGLFunctions_3_0::glConvolutionFilter1D(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *image)
3452{
3453 d_1_2_Deprecated->f.ConvolutionFilter1D(target, internalformat, width, format, type, image);
3454}
3455
3456inline void QOpenGLFunctions_3_0::glCopyColorSubTable(GLenum target, GLsizei start, GLint x, GLint y, GLsizei width)
3457{
3458 d_1_2_Deprecated->f.CopyColorSubTable(target, start, x, y, width);
3459}
3460
3461inline void QOpenGLFunctions_3_0::glColorSubTable(GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const GLvoid *data)
3462{
3463 d_1_2_Deprecated->f.ColorSubTable(target, start, count, format, type, data);
3464}
3465
3466inline void QOpenGLFunctions_3_0::glGetColorTableParameteriv(GLenum target, GLenum pname, GLint *params)
3467{
3468 d_1_2_Deprecated->f.GetColorTableParameteriv(target, pname, params);
3469}
3470
3471inline void QOpenGLFunctions_3_0::glGetColorTableParameterfv(GLenum target, GLenum pname, GLfloat *params)
3472{
3473 d_1_2_Deprecated->f.GetColorTableParameterfv(target, pname, params);
3474}
3475
3476inline void QOpenGLFunctions_3_0::glGetColorTable(GLenum target, GLenum format, GLenum type, GLvoid *table)
3477{
3478 d_1_2_Deprecated->f.GetColorTable(target, format, type, table);
3479}
3480
3481inline void QOpenGLFunctions_3_0::glCopyColorTable(GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width)
3482{
3483 d_1_2_Deprecated->f.CopyColorTable(target, internalformat, x, y, width);
3484}
3485
3486inline void QOpenGLFunctions_3_0::glColorTableParameteriv(GLenum target, GLenum pname, const GLint *params)
3487{
3488 d_1_2_Deprecated->f.ColorTableParameteriv(target, pname, params);
3489}
3490
3491inline void QOpenGLFunctions_3_0::glColorTableParameterfv(GLenum target, GLenum pname, const GLfloat *params)
3492{
3493 d_1_2_Deprecated->f.ColorTableParameterfv(target, pname, params);
3494}
3495
3496inline void QOpenGLFunctions_3_0::glColorTable(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table)
3497{
3498 d_1_2_Deprecated->f.ColorTable(target, internalformat, width, format, type, table);
3499}
3500
3501
3502// OpenGL 1.3 deprecated functions
3503inline void QOpenGLFunctions_3_0::glMultTransposeMatrixd(const GLdouble *m)
3504{
3505 d_1_3_Deprecated->f.MultTransposeMatrixd(m);
3506}
3507
3508inline void QOpenGLFunctions_3_0::glMultTransposeMatrixf(const GLfloat *m)
3509{
3510 d_1_3_Deprecated->f.MultTransposeMatrixf(m);
3511}
3512
3513inline void QOpenGLFunctions_3_0::glLoadTransposeMatrixd(const GLdouble *m)
3514{
3515 d_1_3_Deprecated->f.LoadTransposeMatrixd(m);
3516}
3517
3518inline void QOpenGLFunctions_3_0::glLoadTransposeMatrixf(const GLfloat *m)
3519{
3520 d_1_3_Deprecated->f.LoadTransposeMatrixf(m);
3521}
3522
3523inline void QOpenGLFunctions_3_0::glMultiTexCoord4sv(GLenum target, const GLshort *v)
3524{
3525 d_1_3_Deprecated->f.MultiTexCoord4sv(target, v);
3526}
3527
3528inline void QOpenGLFunctions_3_0::glMultiTexCoord4s(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q)
3529{
3530 d_1_3_Deprecated->f.MultiTexCoord4s(target, s, t, r, q);
3531}
3532
3533inline void QOpenGLFunctions_3_0::glMultiTexCoord4iv(GLenum target, const GLint *v)
3534{
3535 d_1_3_Deprecated->f.MultiTexCoord4iv(target, v);
3536}
3537
3538inline void QOpenGLFunctions_3_0::glMultiTexCoord4i(GLenum target, GLint s, GLint t, GLint r, GLint q)
3539{
3540 d_1_3_Deprecated->f.MultiTexCoord4i(target, s, t, r, q);
3541}
3542
3543inline void QOpenGLFunctions_3_0::glMultiTexCoord4fv(GLenum target, const GLfloat *v)
3544{
3545 d_1_3_Deprecated->f.MultiTexCoord4fv(target, v);
3546}
3547
3548inline void QOpenGLFunctions_3_0::glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q)
3549{
3550 d_1_3_Deprecated->f.MultiTexCoord4f(target, s, t, r, q);
3551}
3552
3553inline void QOpenGLFunctions_3_0::glMultiTexCoord4dv(GLenum target, const GLdouble *v)
3554{
3555 d_1_3_Deprecated->f.MultiTexCoord4dv(target, v);
3556}
3557
3558inline void QOpenGLFunctions_3_0::glMultiTexCoord4d(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q)
3559{
3560 d_1_3_Deprecated->f.MultiTexCoord4d(target, s, t, r, q);
3561}
3562
3563inline void QOpenGLFunctions_3_0::glMultiTexCoord3sv(GLenum target, const GLshort *v)
3564{
3565 d_1_3_Deprecated->f.MultiTexCoord3sv(target, v);
3566}
3567
3568inline void QOpenGLFunctions_3_0::glMultiTexCoord3s(GLenum target, GLshort s, GLshort t, GLshort r)
3569{
3570 d_1_3_Deprecated->f.MultiTexCoord3s(target, s, t, r);
3571}
3572
3573inline void QOpenGLFunctions_3_0::glMultiTexCoord3iv(GLenum target, const GLint *v)
3574{
3575 d_1_3_Deprecated->f.MultiTexCoord3iv(target, v);
3576}
3577
3578inline void QOpenGLFunctions_3_0::glMultiTexCoord3i(GLenum target, GLint s, GLint t, GLint r)
3579{
3580 d_1_3_Deprecated->f.MultiTexCoord3i(target, s, t, r);
3581}
3582
3583inline void QOpenGLFunctions_3_0::glMultiTexCoord3fv(GLenum target, const GLfloat *v)
3584{
3585 d_1_3_Deprecated->f.MultiTexCoord3fv(target, v);
3586}
3587
3588inline void QOpenGLFunctions_3_0::glMultiTexCoord3f(GLenum target, GLfloat s, GLfloat t, GLfloat r)
3589{
3590 d_1_3_Deprecated->f.MultiTexCoord3f(target, s, t, r);
3591}
3592
3593inline void QOpenGLFunctions_3_0::glMultiTexCoord3dv(GLenum target, const GLdouble *v)
3594{
3595 d_1_3_Deprecated->f.MultiTexCoord3dv(target, v);
3596}
3597
3598inline void QOpenGLFunctions_3_0::glMultiTexCoord3d(GLenum target, GLdouble s, GLdouble t, GLdouble r)
3599{
3600 d_1_3_Deprecated->f.MultiTexCoord3d(target, s, t, r);
3601}
3602
3603inline void QOpenGLFunctions_3_0::glMultiTexCoord2sv(GLenum target, const GLshort *v)
3604{
3605 d_1_3_Deprecated->f.MultiTexCoord2sv(target, v);
3606}
3607
3608inline void QOpenGLFunctions_3_0::glMultiTexCoord2s(GLenum target, GLshort s, GLshort t)
3609{
3610 d_1_3_Deprecated->f.MultiTexCoord2s(target, s, t);
3611}
3612
3613inline void QOpenGLFunctions_3_0::glMultiTexCoord2iv(GLenum target, const GLint *v)
3614{
3615 d_1_3_Deprecated->f.MultiTexCoord2iv(target, v);
3616}
3617
3618inline void QOpenGLFunctions_3_0::glMultiTexCoord2i(GLenum target, GLint s, GLint t)
3619{
3620 d_1_3_Deprecated->f.MultiTexCoord2i(target, s, t);
3621}
3622
3623inline void QOpenGLFunctions_3_0::glMultiTexCoord2fv(GLenum target, const GLfloat *v)
3624{
3625 d_1_3_Deprecated->f.MultiTexCoord2fv(target, v);
3626}
3627
3628inline void QOpenGLFunctions_3_0::glMultiTexCoord2f(GLenum target, GLfloat s, GLfloat t)
3629{
3630 d_1_3_Deprecated->f.MultiTexCoord2f(target, s, t);
3631}
3632
3633inline void QOpenGLFunctions_3_0::glMultiTexCoord2dv(GLenum target, const GLdouble *v)
3634{
3635 d_1_3_Deprecated->f.MultiTexCoord2dv(target, v);
3636}
3637
3638inline void QOpenGLFunctions_3_0::glMultiTexCoord2d(GLenum target, GLdouble s, GLdouble t)
3639{
3640 d_1_3_Deprecated->f.MultiTexCoord2d(target, s, t);
3641}
3642
3643inline void QOpenGLFunctions_3_0::glMultiTexCoord1sv(GLenum target, const GLshort *v)
3644{
3645 d_1_3_Deprecated->f.MultiTexCoord1sv(target, v);
3646}
3647
3648inline void QOpenGLFunctions_3_0::glMultiTexCoord1s(GLenum target, GLshort s)
3649{
3650 d_1_3_Deprecated->f.MultiTexCoord1s(target, s);
3651}
3652
3653inline void QOpenGLFunctions_3_0::glMultiTexCoord1iv(GLenum target, const GLint *v)
3654{
3655 d_1_3_Deprecated->f.MultiTexCoord1iv(target, v);
3656}
3657
3658inline void QOpenGLFunctions_3_0::glMultiTexCoord1i(GLenum target, GLint s)
3659{
3660 d_1_3_Deprecated->f.MultiTexCoord1i(target, s);
3661}
3662
3663inline void QOpenGLFunctions_3_0::glMultiTexCoord1fv(GLenum target, const GLfloat *v)
3664{
3665 d_1_3_Deprecated->f.MultiTexCoord1fv(target, v);
3666}
3667
3668inline void QOpenGLFunctions_3_0::glMultiTexCoord1f(GLenum target, GLfloat s)
3669{
3670 d_1_3_Deprecated->f.MultiTexCoord1f(target, s);
3671}
3672
3673inline void QOpenGLFunctions_3_0::glMultiTexCoord1dv(GLenum target, const GLdouble *v)
3674{
3675 d_1_3_Deprecated->f.MultiTexCoord1dv(target, v);
3676}
3677
3678inline void QOpenGLFunctions_3_0::glMultiTexCoord1d(GLenum target, GLdouble s)
3679{
3680 d_1_3_Deprecated->f.MultiTexCoord1d(target, s);
3681}
3682
3683inline void QOpenGLFunctions_3_0::glClientActiveTexture(GLenum texture)
3684{
3685 d_1_3_Deprecated->f.ClientActiveTexture(texture);
3686}
3687
3688
3689// OpenGL 1.4 deprecated functions
3690inline void QOpenGLFunctions_3_0::glWindowPos3sv(const GLshort *v)
3691{
3692 d_1_4_Deprecated->f.WindowPos3sv(v);
3693}
3694
3695inline void QOpenGLFunctions_3_0::glWindowPos3s(GLshort x, GLshort y, GLshort z)
3696{
3697 d_1_4_Deprecated->f.WindowPos3s(x, y, z);
3698}
3699
3700inline void QOpenGLFunctions_3_0::glWindowPos3iv(const GLint *v)
3701{
3702 d_1_4_Deprecated->f.WindowPos3iv(v);
3703}
3704
3705inline void QOpenGLFunctions_3_0::glWindowPos3i(GLint x, GLint y, GLint z)
3706{
3707 d_1_4_Deprecated->f.WindowPos3i(x, y, z);
3708}
3709
3710inline void QOpenGLFunctions_3_0::glWindowPos3fv(const GLfloat *v)
3711{
3712 d_1_4_Deprecated->f.WindowPos3fv(v);
3713}
3714
3715inline void QOpenGLFunctions_3_0::glWindowPos3f(GLfloat x, GLfloat y, GLfloat z)
3716{
3717 d_1_4_Deprecated->f.WindowPos3f(x, y, z);
3718}
3719
3720inline void QOpenGLFunctions_3_0::glWindowPos3dv(const GLdouble *v)
3721{
3722 d_1_4_Deprecated->f.WindowPos3dv(v);
3723}
3724
3725inline void QOpenGLFunctions_3_0::glWindowPos3d(GLdouble x, GLdouble y, GLdouble z)
3726{
3727 d_1_4_Deprecated->f.WindowPos3d(x, y, z);
3728}
3729
3730inline void QOpenGLFunctions_3_0::glWindowPos2sv(const GLshort *v)
3731{
3732 d_1_4_Deprecated->f.WindowPos2sv(v);
3733}
3734
3735inline void QOpenGLFunctions_3_0::glWindowPos2s(GLshort x, GLshort y)
3736{
3737 d_1_4_Deprecated->f.WindowPos2s(x, y);
3738}
3739
3740inline void QOpenGLFunctions_3_0::glWindowPos2iv(const GLint *v)
3741{
3742 d_1_4_Deprecated->f.WindowPos2iv(v);
3743}
3744
3745inline void QOpenGLFunctions_3_0::glWindowPos2i(GLint x, GLint y)
3746{
3747 d_1_4_Deprecated->f.WindowPos2i(x, y);
3748}
3749
3750inline void QOpenGLFunctions_3_0::glWindowPos2fv(const GLfloat *v)
3751{
3752 d_1_4_Deprecated->f.WindowPos2fv(v);
3753}
3754
3755inline void QOpenGLFunctions_3_0::glWindowPos2f(GLfloat x, GLfloat y)
3756{
3757 d_1_4_Deprecated->f.WindowPos2f(x, y);
3758}
3759
3760inline void QOpenGLFunctions_3_0::glWindowPos2dv(const GLdouble *v)
3761{
3762 d_1_4_Deprecated->f.WindowPos2dv(v);
3763}
3764
3765inline void QOpenGLFunctions_3_0::glWindowPos2d(GLdouble x, GLdouble y)
3766{
3767 d_1_4_Deprecated->f.WindowPos2d(x, y);
3768}
3769
3770inline void QOpenGLFunctions_3_0::glSecondaryColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
3771{
3772 d_1_4_Deprecated->f.SecondaryColorPointer(size, type, stride, pointer);
3773}
3774
3775inline void QOpenGLFunctions_3_0::glSecondaryColor3usv(const GLushort *v)
3776{
3777 d_1_4_Deprecated->f.SecondaryColor3usv(v);
3778}
3779
3780inline void QOpenGLFunctions_3_0::glSecondaryColor3us(GLushort red, GLushort green, GLushort blue)
3781{
3782 d_1_4_Deprecated->f.SecondaryColor3us(red, green, blue);
3783}
3784
3785inline void QOpenGLFunctions_3_0::glSecondaryColor3uiv(const GLuint *v)
3786{
3787 d_1_4_Deprecated->f.SecondaryColor3uiv(v);
3788}
3789
3790inline void QOpenGLFunctions_3_0::glSecondaryColor3ui(GLuint red, GLuint green, GLuint blue)
3791{
3792 d_1_4_Deprecated->f.SecondaryColor3ui(red, green, blue);
3793}
3794
3795inline void QOpenGLFunctions_3_0::glSecondaryColor3ubv(const GLubyte *v)
3796{
3797 d_1_4_Deprecated->f.SecondaryColor3ubv(v);
3798}
3799
3800inline void QOpenGLFunctions_3_0::glSecondaryColor3ub(GLubyte red, GLubyte green, GLubyte blue)
3801{
3802 d_1_4_Deprecated->f.SecondaryColor3ub(red, green, blue);
3803}
3804
3805inline void QOpenGLFunctions_3_0::glSecondaryColor3sv(const GLshort *v)
3806{
3807 d_1_4_Deprecated->f.SecondaryColor3sv(v);
3808}
3809
3810inline void QOpenGLFunctions_3_0::glSecondaryColor3s(GLshort red, GLshort green, GLshort blue)
3811{
3812 d_1_4_Deprecated->f.SecondaryColor3s(red, green, blue);
3813}
3814
3815inline void QOpenGLFunctions_3_0::glSecondaryColor3iv(const GLint *v)
3816{
3817 d_1_4_Deprecated->f.SecondaryColor3iv(v);
3818}
3819
3820inline void QOpenGLFunctions_3_0::glSecondaryColor3i(GLint red, GLint green, GLint blue)
3821{
3822 d_1_4_Deprecated->f.SecondaryColor3i(red, green, blue);
3823}
3824
3825inline void QOpenGLFunctions_3_0::glSecondaryColor3fv(const GLfloat *v)
3826{
3827 d_1_4_Deprecated->f.SecondaryColor3fv(v);
3828}
3829
3830inline void QOpenGLFunctions_3_0::glSecondaryColor3f(GLfloat red, GLfloat green, GLfloat blue)
3831{
3832 d_1_4_Deprecated->f.SecondaryColor3f(red, green, blue);
3833}
3834
3835inline void QOpenGLFunctions_3_0::glSecondaryColor3dv(const GLdouble *v)
3836{
3837 d_1_4_Deprecated->f.SecondaryColor3dv(v);
3838}
3839
3840inline void QOpenGLFunctions_3_0::glSecondaryColor3d(GLdouble red, GLdouble green, GLdouble blue)
3841{
3842 d_1_4_Deprecated->f.SecondaryColor3d(red, green, blue);
3843}
3844
3845inline void QOpenGLFunctions_3_0::glSecondaryColor3bv(const GLbyte *v)
3846{
3847 d_1_4_Deprecated->f.SecondaryColor3bv(v);
3848}
3849
3850inline void QOpenGLFunctions_3_0::glSecondaryColor3b(GLbyte red, GLbyte green, GLbyte blue)
3851{
3852 d_1_4_Deprecated->f.SecondaryColor3b(red, green, blue);
3853}
3854
3855inline void QOpenGLFunctions_3_0::glFogCoordPointer(GLenum type, GLsizei stride, const GLvoid *pointer)
3856{
3857 d_1_4_Deprecated->f.FogCoordPointer(type, stride, pointer);
3858}
3859
3860inline void QOpenGLFunctions_3_0::glFogCoorddv(const GLdouble *coord)
3861{
3862 d_1_4_Deprecated->f.FogCoorddv(coord);
3863}
3864
3865inline void QOpenGLFunctions_3_0::glFogCoordd(GLdouble coord)
3866{
3867 d_1_4_Deprecated->f.FogCoordd(coord);
3868}
3869
3870inline void QOpenGLFunctions_3_0::glFogCoordfv(const GLfloat *coord)
3871{
3872 d_1_4_Deprecated->f.FogCoordfv(coord);
3873}
3874
3875inline void QOpenGLFunctions_3_0::glFogCoordf(GLfloat coord)
3876{
3877 d_1_4_Deprecated->f.FogCoordf(coord);
3878}
3879
3880
3881// OpenGL 1.5 deprecated functions
3882
3883// OpenGL 2.0 deprecated functions
3884inline void QOpenGLFunctions_3_0::glVertexAttrib4usv(GLuint index, const GLushort *v)
3885{
3886 d_2_0_Core->f.VertexAttrib4usv(index, v);
3887}
3888
3889inline void QOpenGLFunctions_3_0::glVertexAttrib4uiv(GLuint index, const GLuint *v)
3890{
3891 d_2_0_Core->f.VertexAttrib4uiv(index, v);
3892}
3893
3894inline void QOpenGLFunctions_3_0::glVertexAttrib4ubv(GLuint index, const GLubyte *v)
3895{
3896 d_2_0_Core->f.VertexAttrib4ubv(index, v);
3897}
3898
3899inline void QOpenGLFunctions_3_0::glVertexAttrib4sv(GLuint index, const GLshort *v)
3900{
3901 d_2_0_Core->f.VertexAttrib4sv(index, v);
3902}
3903
3904inline void QOpenGLFunctions_3_0::glVertexAttrib4s(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w)
3905{
3906 d_2_0_Core->f.VertexAttrib4s(index, x, y, z, w);
3907}
3908
3909inline void QOpenGLFunctions_3_0::glVertexAttrib4iv(GLuint index, const GLint *v)
3910{
3911 d_2_0_Core->f.VertexAttrib4iv(index, v);
3912}
3913
3914inline void QOpenGLFunctions_3_0::glVertexAttrib4fv(GLuint index, const GLfloat *v)
3915{
3916 d_2_0_Core->f.VertexAttrib4fv(index, v);
3917}
3918
3919inline void QOpenGLFunctions_3_0::glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
3920{
3921 d_2_0_Core->f.VertexAttrib4f(index, x, y, z, w);
3922}
3923
3924inline void QOpenGLFunctions_3_0::glVertexAttrib4dv(GLuint index, const GLdouble *v)
3925{
3926 d_2_0_Core->f.VertexAttrib4dv(index, v);
3927}
3928
3929inline void QOpenGLFunctions_3_0::glVertexAttrib4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)
3930{
3931 d_2_0_Core->f.VertexAttrib4d(index, x, y, z, w);
3932}
3933
3934inline void QOpenGLFunctions_3_0::glVertexAttrib4bv(GLuint index, const GLbyte *v)
3935{
3936 d_2_0_Core->f.VertexAttrib4bv(index, v);
3937}
3938
3939inline void QOpenGLFunctions_3_0::glVertexAttrib4Nusv(GLuint index, const GLushort *v)
3940{
3941 d_2_0_Core->f.VertexAttrib4Nusv(index, v);
3942}
3943
3944inline void QOpenGLFunctions_3_0::glVertexAttrib4Nuiv(GLuint index, const GLuint *v)
3945{
3946 d_2_0_Core->f.VertexAttrib4Nuiv(index, v);
3947}
3948
3949inline void QOpenGLFunctions_3_0::glVertexAttrib4Nubv(GLuint index, const GLubyte *v)
3950{
3951 d_2_0_Core->f.VertexAttrib4Nubv(index, v);
3952}
3953
3954inline void QOpenGLFunctions_3_0::glVertexAttrib4Nub(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w)
3955{
3956 d_2_0_Core->f.VertexAttrib4Nub(index, x, y, z, w);
3957}
3958
3959inline void QOpenGLFunctions_3_0::glVertexAttrib4Nsv(GLuint index, const GLshort *v)
3960{
3961 d_2_0_Core->f.VertexAttrib4Nsv(index, v);
3962}
3963
3964inline void QOpenGLFunctions_3_0::glVertexAttrib4Niv(GLuint index, const GLint *v)
3965{
3966 d_2_0_Core->f.VertexAttrib4Niv(index, v);
3967}
3968
3969inline void QOpenGLFunctions_3_0::glVertexAttrib4Nbv(GLuint index, const GLbyte *v)
3970{
3971 d_2_0_Core->f.VertexAttrib4Nbv(index, v);
3972}
3973
3974inline void QOpenGLFunctions_3_0::glVertexAttrib3sv(GLuint index, const GLshort *v)
3975{
3976 d_2_0_Core->f.VertexAttrib3sv(index, v);
3977}
3978
3979inline void QOpenGLFunctions_3_0::glVertexAttrib3s(GLuint index, GLshort x, GLshort y, GLshort z)
3980{
3981 d_2_0_Core->f.VertexAttrib3s(index, x, y, z);
3982}
3983
3984inline void QOpenGLFunctions_3_0::glVertexAttrib3fv(GLuint index, const GLfloat *v)
3985{
3986 d_2_0_Core->f.VertexAttrib3fv(index, v);
3987}
3988
3989inline void QOpenGLFunctions_3_0::glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z)
3990{
3991 d_2_0_Core->f.VertexAttrib3f(index, x, y, z);
3992}
3993
3994inline void QOpenGLFunctions_3_0::glVertexAttrib3dv(GLuint index, const GLdouble *v)
3995{
3996 d_2_0_Core->f.VertexAttrib3dv(index, v);
3997}
3998
3999inline void QOpenGLFunctions_3_0::glVertexAttrib3d(GLuint index, GLdouble x, GLdouble y, GLdouble z)
4000{
4001 d_2_0_Core->f.VertexAttrib3d(index, x, y, z);
4002}
4003
4004inline void QOpenGLFunctions_3_0::glVertexAttrib2sv(GLuint index, const GLshort *v)
4005{
4006 d_2_0_Core->f.VertexAttrib2sv(index, v);
4007}
4008
4009inline void QOpenGLFunctions_3_0::glVertexAttrib2s(GLuint index, GLshort x, GLshort y)
4010{
4011 d_2_0_Core->f.VertexAttrib2s(index, x, y);
4012}
4013
4014inline void QOpenGLFunctions_3_0::glVertexAttrib2fv(GLuint index, const GLfloat *v)
4015{
4016 d_2_0_Core->f.VertexAttrib2fv(index, v);
4017}
4018
4019inline void QOpenGLFunctions_3_0::glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y)
4020{
4021 d_2_0_Core->f.VertexAttrib2f(index, x, y);
4022}
4023
4024inline void QOpenGLFunctions_3_0::glVertexAttrib2dv(GLuint index, const GLdouble *v)
4025{
4026 d_2_0_Core->f.VertexAttrib2dv(index, v);
4027}
4028
4029inline void QOpenGLFunctions_3_0::glVertexAttrib2d(GLuint index, GLdouble x, GLdouble y)
4030{
4031 d_2_0_Core->f.VertexAttrib2d(index, x, y);
4032}
4033
4034inline void QOpenGLFunctions_3_0::glVertexAttrib1sv(GLuint index, const GLshort *v)
4035{
4036 d_2_0_Core->f.VertexAttrib1sv(index, v);
4037}
4038
4039inline void QOpenGLFunctions_3_0::glVertexAttrib1s(GLuint index, GLshort x)
4040{
4041 d_2_0_Core->f.VertexAttrib1s(index, x);
4042}
4043
4044inline void QOpenGLFunctions_3_0::glVertexAttrib1fv(GLuint index, const GLfloat *v)
4045{
4046 d_2_0_Core->f.VertexAttrib1fv(index, v);
4047}
4048
4049inline void QOpenGLFunctions_3_0::glVertexAttrib1f(GLuint index, GLfloat x)
4050{
4051 d_2_0_Core->f.VertexAttrib1f(index, x);
4052}
4053
4054inline void QOpenGLFunctions_3_0::glVertexAttrib1dv(GLuint index, const GLdouble *v)
4055{
4056 d_2_0_Core->f.VertexAttrib1dv(index, v);
4057}
4058
4059inline void QOpenGLFunctions_3_0::glVertexAttrib1d(GLuint index, GLdouble x)
4060{
4061 d_2_0_Core->f.VertexAttrib1d(index, x);
4062}
4063
4064
4065// OpenGL 2.1 deprecated functions
4066
4067// OpenGL 3.0 deprecated functions
4068inline void QOpenGLFunctions_3_0::glVertexAttribI4usv(GLuint index, const GLushort *v)
4069{
4070 d_3_0_Core->f.VertexAttribI4usv(index, v);
4071}
4072
4073inline void QOpenGLFunctions_3_0::glVertexAttribI4ubv(GLuint index, const GLubyte *v)
4074{
4075 d_3_0_Core->f.VertexAttribI4ubv(index, v);
4076}
4077
4078inline void QOpenGLFunctions_3_0::glVertexAttribI4sv(GLuint index, const GLshort *v)
4079{
4080 d_3_0_Core->f.VertexAttribI4sv(index, v);
4081}
4082
4083inline void QOpenGLFunctions_3_0::glVertexAttribI4bv(GLuint index, const GLbyte *v)
4084{
4085 d_3_0_Core->f.VertexAttribI4bv(index, v);
4086}
4087
4088inline void QOpenGLFunctions_3_0::glVertexAttribI4uiv(GLuint index, const GLuint *v)
4089{
4090 d_3_0_Core->f.VertexAttribI4uiv(index, v);
4091}
4092
4093inline void QOpenGLFunctions_3_0::glVertexAttribI3uiv(GLuint index, const GLuint *v)
4094{
4095 d_3_0_Core->f.VertexAttribI3uiv(index, v);
4096}
4097
4098inline void QOpenGLFunctions_3_0::glVertexAttribI2uiv(GLuint index, const GLuint *v)
4099{
4100 d_3_0_Core->f.VertexAttribI2uiv(index, v);
4101}
4102
4103inline void QOpenGLFunctions_3_0::glVertexAttribI1uiv(GLuint index, const GLuint *v)
4104{
4105 d_3_0_Core->f.VertexAttribI1uiv(index, v);
4106}
4107
4108inline void QOpenGLFunctions_3_0::glVertexAttribI4iv(GLuint index, const GLint *v)
4109{
4110 d_3_0_Core->f.VertexAttribI4iv(index, v);
4111}
4112
4113inline void QOpenGLFunctions_3_0::glVertexAttribI3iv(GLuint index, const GLint *v)
4114{
4115 d_3_0_Core->f.VertexAttribI3iv(index, v);
4116}
4117
4118inline void QOpenGLFunctions_3_0::glVertexAttribI2iv(GLuint index, const GLint *v)
4119{
4120 d_3_0_Core->f.VertexAttribI2iv(index, v);
4121}
4122
4123inline void QOpenGLFunctions_3_0::glVertexAttribI1iv(GLuint index, const GLint *v)
4124{
4125 d_3_0_Core->f.VertexAttribI1iv(index, v);
4126}
4127
4128inline void QOpenGLFunctions_3_0::glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)
4129{
4130 d_3_0_Core->f.VertexAttribI4ui(index, x, y, z, w);
4131}
4132
4133inline void QOpenGLFunctions_3_0::glVertexAttribI3ui(GLuint index, GLuint x, GLuint y, GLuint z)
4134{
4135 d_3_0_Core->f.VertexAttribI3ui(index, x, y, z);
4136}
4137
4138inline void QOpenGLFunctions_3_0::glVertexAttribI2ui(GLuint index, GLuint x, GLuint y)
4139{
4140 d_3_0_Core->f.VertexAttribI2ui(index, x, y);
4141}
4142
4143inline void QOpenGLFunctions_3_0::glVertexAttribI1ui(GLuint index, GLuint x)
4144{
4145 d_3_0_Core->f.VertexAttribI1ui(index, x);
4146}
4147
4148inline void QOpenGLFunctions_3_0::glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w)
4149{
4150 d_3_0_Core->f.VertexAttribI4i(index, x, y, z, w);
4151}
4152
4153inline void QOpenGLFunctions_3_0::glVertexAttribI3i(GLuint index, GLint x, GLint y, GLint z)
4154{
4155 d_3_0_Core->f.VertexAttribI3i(index, x, y, z);
4156}
4157
4158inline void QOpenGLFunctions_3_0::glVertexAttribI2i(GLuint index, GLint x, GLint y)
4159{
4160 d_3_0_Core->f.VertexAttribI2i(index, x, y);
4161}
4162
4163inline void QOpenGLFunctions_3_0::glVertexAttribI1i(GLuint index, GLint x)
4164{
4165 d_3_0_Core->f.VertexAttribI1i(index, x);
4166}
4167
4168
4169
4170QT_END_NAMESPACE
4171
4172#endif // QT_NO_OPENGL && !QT_CONFIG(opengles2)
4173
4174#endif
4175