blob: 5dd0855f90addad45754b5dad89068377cffe9e7 [file] [log] [blame]
shannon.woods@transgaming.combdf2d802013-02-28 23:16:20 +00001#include "precompiled.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002//
Geoff Lang48dcae72014-02-05 16:28:24 -05003// Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved.
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004// Use of this source code is governed by a BSD-style license that can be
5// found in the LICENSE file.
6//
7
8// libGLESv2.cpp: Implements the exported OpenGL ES 2.0 functions.
9
daniel@transgaming.coma0ce7e62011-01-25 14:47:16 +000010#include "common/version.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000011
12#include "libGLESv2/main.h"
shannonwoods@chromium.orga2ecfcc2013-05-30 00:11:59 +000013#include "common/utilities.h"
shannonwoods@chromium.org8dcfc6a2013-05-30 00:09:48 +000014#include "libGLESv2/formatutils.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000015#include "libGLESv2/Buffer.h"
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +000016#include "libGLESv2/Fence.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000017#include "libGLESv2/Framebuffer.h"
shannon.woods@transgaming.com486d9e92013-02-28 23:15:41 +000018#include "libGLESv2/Renderbuffer.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000019#include "libGLESv2/Program.h"
apatrick@chromium.orgea09f9b2012-06-08 00:45:32 +000020#include "libGLESv2/ProgramBinary.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000021#include "libGLESv2/Texture.h"
daniel@transgaming.com86bdb822012-01-20 18:24:39 +000022#include "libGLESv2/Query.h"
shannon.woods@transgaming.com486d9e92013-02-28 23:15:41 +000023#include "libGLESv2/Context.h"
Jamie Madill57a89722013-07-02 11:57:03 -040024#include "libGLESv2/VertexArray.h"
Brandon Jones5bf98292014-06-06 17:19:38 -070025#include "libGLESv2/VertexAttribute.h"
Geoff Langc8058452014-02-03 12:04:11 -050026#include "libGLESv2/TransformFeedback.h"
Jamie Madille261b442014-06-25 12:42:21 -040027#include "libGLESv2/FramebufferAttachment.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000028
Geoff Lange8ebe7f2013-08-05 15:03:13 -040029#include "libGLESv2/validationES.h"
30#include "libGLESv2/validationES2.h"
31#include "libGLESv2/validationES3.h"
Jamie Madill55856b12014-01-02 13:59:50 -050032#include "libGLESv2/queryconversions.h"
Jamie Madill478fdb22013-07-19 16:36:59 -040033
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000034extern "C"
35{
36
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +000037// OpenGL ES 2.0 functions
38
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000039void __stdcall glActiveTexture(GLenum texture)
40{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +000041 EVENT("(GLenum texture = 0x%X)", texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000042
Geoff Langbfdea662014-07-23 14:16:32 -040043 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000044
Geoff Langbfdea662014-07-23 14:16:32 -040045 if (context)
46 {
47 if (texture < GL_TEXTURE0 || texture > GL_TEXTURE0 + context->getMaximumCombinedTextureImageUnits() - 1)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000048 {
Geoff Langbfdea662014-07-23 14:16:32 -040049 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000050 }
Geoff Langbfdea662014-07-23 14:16:32 -040051
52 context->getState().setActiveSampler(texture - GL_TEXTURE0);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000053 }
54}
55
56void __stdcall glAttachShader(GLuint program, GLuint shader)
57{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +000058 EVENT("(GLuint program = %d, GLuint shader = %d)", program, shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000059
Geoff Langbfdea662014-07-23 14:16:32 -040060 gl::Context *context = gl::getNonLostContext();
61
62 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000063 {
Geoff Langbfdea662014-07-23 14:16:32 -040064 gl::Program *programObject = context->getProgram(program);
65 gl::Shader *shaderObject = context->getShader(shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000066
Geoff Langbfdea662014-07-23 14:16:32 -040067 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000068 {
Geoff Langbfdea662014-07-23 14:16:32 -040069 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000070 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +000071 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000072 }
Geoff Langbfdea662014-07-23 14:16:32 -040073 else
74 {
75 return gl::error(GL_INVALID_VALUE);
76 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000077 }
Geoff Langbfdea662014-07-23 14:16:32 -040078
79 if (!shaderObject)
80 {
81 if (context->getProgram(shader))
82 {
83 return gl::error(GL_INVALID_OPERATION);
84 }
85 else
86 {
87 return gl::error(GL_INVALID_VALUE);
88 }
89 }
90
91 if (!programObject->attachShader(shaderObject))
92 {
93 return gl::error(GL_INVALID_OPERATION);
94 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000095 }
96}
97
daniel@transgaming.com86bdb822012-01-20 18:24:39 +000098void __stdcall glBeginQueryEXT(GLenum target, GLuint id)
99{
100 EVENT("(GLenum target = 0x%X, GLuint %d)", target, id);
101
Geoff Langbfdea662014-07-23 14:16:32 -0400102 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000103
Geoff Langbfdea662014-07-23 14:16:32 -0400104 if (context)
105 {
106 if (!ValidateBeginQuery(context, target, id))
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000107 {
Geoff Langbfdea662014-07-23 14:16:32 -0400108 return;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000109 }
Geoff Langbfdea662014-07-23 14:16:32 -0400110
111 context->beginQuery(target, id);
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000112 }
113}
114
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000115void __stdcall glBindAttribLocation(GLuint program, GLuint index, const GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000116{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000117 EVENT("(GLuint program = %d, GLuint index = %d, const GLchar* name = 0x%0.8p)", program, index, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000118
Geoff Langbfdea662014-07-23 14:16:32 -0400119 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000120 {
Geoff Langbfdea662014-07-23 14:16:32 -0400121 return gl::error(GL_INVALID_VALUE);
122 }
123
124 gl::Context *context = gl::getNonLostContext();
125
126 if (context)
127 {
128 gl::Program *programObject = context->getProgram(program);
129
130 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000131 {
Geoff Langbfdea662014-07-23 14:16:32 -0400132 if (context->getShader(program))
daniel@transgaming.com98079832010-04-13 03:26:29 +0000133 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +0000134 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000135 }
Geoff Langbfdea662014-07-23 14:16:32 -0400136 else
137 {
138 return gl::error(GL_INVALID_VALUE);
139 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000140 }
Geoff Langbfdea662014-07-23 14:16:32 -0400141
142 if (strncmp(name, "gl_", 3) == 0)
143 {
144 return gl::error(GL_INVALID_OPERATION);
145 }
146
147 programObject->bindAttributeLocation(index, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000148 }
149}
150
151void __stdcall glBindBuffer(GLenum target, GLuint buffer)
152{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000153 EVENT("(GLenum target = 0x%X, GLuint buffer = %d)", target, buffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000154
Geoff Langbfdea662014-07-23 14:16:32 -0400155 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000156
Geoff Langbfdea662014-07-23 14:16:32 -0400157 if (context)
158 {
159 if (!gl::ValidBufferTarget(context, target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000160 {
Geoff Langbfdea662014-07-23 14:16:32 -0400161 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000162 }
Geoff Langbfdea662014-07-23 14:16:32 -0400163
164 switch (target)
165 {
166 case GL_ARRAY_BUFFER:
167 context->bindArrayBuffer(buffer);
168 return;
169 case GL_ELEMENT_ARRAY_BUFFER:
170 context->bindElementArrayBuffer(buffer);
171 return;
172 case GL_COPY_READ_BUFFER:
173 context->bindCopyReadBuffer(buffer);
174 return;
175 case GL_COPY_WRITE_BUFFER:
176 context->bindCopyWriteBuffer(buffer);
177 return;
178 case GL_PIXEL_PACK_BUFFER:
179 context->bindPixelPackBuffer(buffer);
180 return;
181 case GL_PIXEL_UNPACK_BUFFER:
182 context->bindPixelUnpackBuffer(buffer);
183 return;
184 case GL_UNIFORM_BUFFER:
185 context->bindGenericUniformBuffer(buffer);
186 return;
187 case GL_TRANSFORM_FEEDBACK_BUFFER:
188 context->bindGenericTransformFeedbackBuffer(buffer);
189 return;
190 default:
191 return gl::error(GL_INVALID_ENUM);
192 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000193 }
194}
195
196void __stdcall glBindFramebuffer(GLenum target, GLuint framebuffer)
197{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000198 EVENT("(GLenum target = 0x%X, GLuint framebuffer = %d)", target, framebuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000199
Geoff Langbfdea662014-07-23 14:16:32 -0400200 if (!gl::ValidFramebufferTarget(target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000201 {
Geoff Langbfdea662014-07-23 14:16:32 -0400202 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000203 }
Geoff Langbfdea662014-07-23 14:16:32 -0400204
205 gl::Context *context = gl::getNonLostContext();
206
207 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000208 {
Geoff Langbfdea662014-07-23 14:16:32 -0400209 if (target == GL_READ_FRAMEBUFFER_ANGLE || target == GL_FRAMEBUFFER)
210 {
211 context->bindReadFramebuffer(framebuffer);
212 }
213
214 if (target == GL_DRAW_FRAMEBUFFER_ANGLE || target == GL_FRAMEBUFFER)
215 {
216 context->bindDrawFramebuffer(framebuffer);
217 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000218 }
219}
220
221void __stdcall glBindRenderbuffer(GLenum target, GLuint renderbuffer)
222{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000223 EVENT("(GLenum target = 0x%X, GLuint renderbuffer = %d)", target, renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000224
Geoff Langbfdea662014-07-23 14:16:32 -0400225 if (target != GL_RENDERBUFFER)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000226 {
Geoff Langbfdea662014-07-23 14:16:32 -0400227 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000228 }
Geoff Langbfdea662014-07-23 14:16:32 -0400229
230 gl::Context *context = gl::getNonLostContext();
231
232 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000233 {
Geoff Langbfdea662014-07-23 14:16:32 -0400234 context->bindRenderbuffer(renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000235 }
236}
237
238void __stdcall glBindTexture(GLenum target, GLuint texture)
239{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000240 EVENT("(GLenum target = 0x%X, GLuint texture = %d)", target, texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000241
Geoff Langbfdea662014-07-23 14:16:32 -0400242 gl::Context *context = gl::getNonLostContext();
243
244 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000245 {
Geoff Langbfdea662014-07-23 14:16:32 -0400246 gl::Texture *textureObject = context->getTexture(texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000247
Geoff Langbfdea662014-07-23 14:16:32 -0400248 if (textureObject && textureObject->getTarget() != target && texture != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000249 {
Geoff Langbfdea662014-07-23 14:16:32 -0400250 return gl::error(GL_INVALID_OPERATION);
251 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000252
Geoff Langbfdea662014-07-23 14:16:32 -0400253 switch (target)
254 {
255 case GL_TEXTURE_2D:
256 context->bindTexture2D(texture);
257 return;
258 case GL_TEXTURE_CUBE_MAP:
259 context->bindTextureCubeMap(texture);
260 return;
261 case GL_TEXTURE_3D:
262 if (context->getClientVersion() < 3)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000263 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +0000264 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000265 }
Geoff Langbfdea662014-07-23 14:16:32 -0400266 context->bindTexture3D(texture);
267 return;
268 case GL_TEXTURE_2D_ARRAY:
269 if (context->getClientVersion() < 3)
270 {
271 return gl::error(GL_INVALID_ENUM);
272 }
273 context->bindTexture2DArray(texture);
274 return;
275 default:
276 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000277 }
278 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000279}
280
281void __stdcall glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
282{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000283 EVENT("(GLclampf red = %f, GLclampf green = %f, GLclampf blue = %f, GLclampf alpha = %f)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000284 red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000285
Geoff Langbfdea662014-07-23 14:16:32 -0400286 gl::Context* context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000287
Geoff Langbfdea662014-07-23 14:16:32 -0400288 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000289 {
Geoff Langbfdea662014-07-23 14:16:32 -0400290 context->getState().setBlendColor(gl::clamp01(red), gl::clamp01(green), gl::clamp01(blue), gl::clamp01(alpha));
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000291 }
292}
293
294void __stdcall glBlendEquation(GLenum mode)
295{
296 glBlendEquationSeparate(mode, mode);
297}
298
299void __stdcall glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha)
300{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000301 EVENT("(GLenum modeRGB = 0x%X, GLenum modeAlpha = 0x%X)", modeRGB, modeAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000302
Geoff Langbfdea662014-07-23 14:16:32 -0400303 gl::Context *context = gl::getNonLostContext();
304
305 switch (modeRGB)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000306 {
Geoff Langbfdea662014-07-23 14:16:32 -0400307 case GL_FUNC_ADD:
308 case GL_FUNC_SUBTRACT:
309 case GL_FUNC_REVERSE_SUBTRACT:
310 case GL_MIN:
311 case GL_MAX:
312 break;
shannon.woods%transgaming.com@gtempaccount.com00b6a0e2013-04-13 03:38:00 +0000313
Geoff Langbfdea662014-07-23 14:16:32 -0400314 default:
315 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000316 }
Geoff Langbfdea662014-07-23 14:16:32 -0400317
318 switch (modeAlpha)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000319 {
Geoff Langbfdea662014-07-23 14:16:32 -0400320 case GL_FUNC_ADD:
321 case GL_FUNC_SUBTRACT:
322 case GL_FUNC_REVERSE_SUBTRACT:
323 case GL_MIN:
324 case GL_MAX:
325 break;
326
327 default:
328 return gl::error(GL_INVALID_ENUM);
329 }
330
331 if (context)
332 {
333 context->getState().setBlendEquation(modeRGB, modeAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000334 }
335}
336
337void __stdcall glBlendFunc(GLenum sfactor, GLenum dfactor)
338{
339 glBlendFuncSeparate(sfactor, dfactor, sfactor, dfactor);
340}
341
342void __stdcall glBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha)
343{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000344 EVENT("(GLenum srcRGB = 0x%X, GLenum dstRGB = 0x%X, GLenum srcAlpha = 0x%X, GLenum dstAlpha = 0x%X)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000345 srcRGB, dstRGB, srcAlpha, dstAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000346
Geoff Langbfdea662014-07-23 14:16:32 -0400347 gl::Context *context = gl::getNonLostContext();
348
349 switch (srcRGB)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000350 {
Geoff Langbfdea662014-07-23 14:16:32 -0400351 case GL_ZERO:
352 case GL_ONE:
353 case GL_SRC_COLOR:
354 case GL_ONE_MINUS_SRC_COLOR:
355 case GL_DST_COLOR:
356 case GL_ONE_MINUS_DST_COLOR:
357 case GL_SRC_ALPHA:
358 case GL_ONE_MINUS_SRC_ALPHA:
359 case GL_DST_ALPHA:
360 case GL_ONE_MINUS_DST_ALPHA:
361 case GL_CONSTANT_COLOR:
362 case GL_ONE_MINUS_CONSTANT_COLOR:
363 case GL_CONSTANT_ALPHA:
364 case GL_ONE_MINUS_CONSTANT_ALPHA:
365 case GL_SRC_ALPHA_SATURATE:
366 break;
367 default:
368 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000369 }
Geoff Langbfdea662014-07-23 14:16:32 -0400370
371 switch (dstRGB)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000372 {
Geoff Langbfdea662014-07-23 14:16:32 -0400373 case GL_ZERO:
374 case GL_ONE:
375 case GL_SRC_COLOR:
376 case GL_ONE_MINUS_SRC_COLOR:
377 case GL_DST_COLOR:
378 case GL_ONE_MINUS_DST_COLOR:
379 case GL_SRC_ALPHA:
380 case GL_ONE_MINUS_SRC_ALPHA:
381 case GL_DST_ALPHA:
382 case GL_ONE_MINUS_DST_ALPHA:
383 case GL_CONSTANT_COLOR:
384 case GL_ONE_MINUS_CONSTANT_COLOR:
385 case GL_CONSTANT_ALPHA:
386 case GL_ONE_MINUS_CONSTANT_ALPHA:
387 break;
388
389 case GL_SRC_ALPHA_SATURATE:
390 if (!context || context->getClientVersion() < 3)
391 {
392 return gl::error(GL_INVALID_ENUM);
393 }
394 break;
395
396 default:
397 return gl::error(GL_INVALID_ENUM);
398 }
399
400 switch (srcAlpha)
401 {
402 case GL_ZERO:
403 case GL_ONE:
404 case GL_SRC_COLOR:
405 case GL_ONE_MINUS_SRC_COLOR:
406 case GL_DST_COLOR:
407 case GL_ONE_MINUS_DST_COLOR:
408 case GL_SRC_ALPHA:
409 case GL_ONE_MINUS_SRC_ALPHA:
410 case GL_DST_ALPHA:
411 case GL_ONE_MINUS_DST_ALPHA:
412 case GL_CONSTANT_COLOR:
413 case GL_ONE_MINUS_CONSTANT_COLOR:
414 case GL_CONSTANT_ALPHA:
415 case GL_ONE_MINUS_CONSTANT_ALPHA:
416 case GL_SRC_ALPHA_SATURATE:
417 break;
418 default:
419 return gl::error(GL_INVALID_ENUM);
420 }
421
422 switch (dstAlpha)
423 {
424 case GL_ZERO:
425 case GL_ONE:
426 case GL_SRC_COLOR:
427 case GL_ONE_MINUS_SRC_COLOR:
428 case GL_DST_COLOR:
429 case GL_ONE_MINUS_DST_COLOR:
430 case GL_SRC_ALPHA:
431 case GL_ONE_MINUS_SRC_ALPHA:
432 case GL_DST_ALPHA:
433 case GL_ONE_MINUS_DST_ALPHA:
434 case GL_CONSTANT_COLOR:
435 case GL_ONE_MINUS_CONSTANT_COLOR:
436 case GL_CONSTANT_ALPHA:
437 case GL_ONE_MINUS_CONSTANT_ALPHA:
438 break;
439
440 case GL_SRC_ALPHA_SATURATE:
441 if (!context || context->getClientVersion() < 3)
442 {
443 return gl::error(GL_INVALID_ENUM);
444 }
445 break;
446
447 default:
448 return gl::error(GL_INVALID_ENUM);
449 }
450
451 bool constantColorUsed = (srcRGB == GL_CONSTANT_COLOR || srcRGB == GL_ONE_MINUS_CONSTANT_COLOR ||
452 dstRGB == GL_CONSTANT_COLOR || dstRGB == GL_ONE_MINUS_CONSTANT_COLOR);
453
454 bool constantAlphaUsed = (srcRGB == GL_CONSTANT_ALPHA || srcRGB == GL_ONE_MINUS_CONSTANT_ALPHA ||
455 dstRGB == GL_CONSTANT_ALPHA || dstRGB == GL_ONE_MINUS_CONSTANT_ALPHA);
456
457 if (constantColorUsed && constantAlphaUsed)
458 {
459 ERR("Simultaneous use of GL_CONSTANT_ALPHA/GL_ONE_MINUS_CONSTANT_ALPHA and GL_CONSTANT_COLOR/GL_ONE_MINUS_CONSTANT_COLOR invalid under WebGL");
460 return gl::error(GL_INVALID_OPERATION);
461 }
462
463 if (context)
464 {
465 context->getState().setBlendFactors(srcRGB, dstRGB, srcAlpha, dstAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000466 }
467}
468
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000469void __stdcall glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000470{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000471 EVENT("(GLenum target = 0x%X, GLsizeiptr size = %d, const GLvoid* data = 0x%0.8p, GLenum usage = %d)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000472 target, size, data, usage);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000473
Geoff Langbfdea662014-07-23 14:16:32 -0400474 if (size < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000475 {
Geoff Langbfdea662014-07-23 14:16:32 -0400476 return gl::error(GL_INVALID_VALUE);
477 }
478
479 gl::Context *context = gl::getNonLostContext();
480
481 switch (usage)
482 {
483 case GL_STREAM_DRAW:
484 case GL_STATIC_DRAW:
485 case GL_DYNAMIC_DRAW:
486 break;
487
488 case GL_STREAM_READ:
489 case GL_STREAM_COPY:
490 case GL_STATIC_READ:
491 case GL_STATIC_COPY:
492 case GL_DYNAMIC_READ:
493 case GL_DYNAMIC_COPY:
494 if (context && context->getClientVersion() < 3)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000495 {
Geoff Langbfdea662014-07-23 14:16:32 -0400496 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000497 }
Geoff Langbfdea662014-07-23 14:16:32 -0400498 break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000499
Geoff Langbfdea662014-07-23 14:16:32 -0400500 default:
501 return gl::error(GL_INVALID_ENUM);
502 }
shannon.woods%transgaming.com@gtempaccount.comf2db40b2013-04-13 03:37:09 +0000503
Geoff Langbfdea662014-07-23 14:16:32 -0400504 if (context)
505 {
506 if (!gl::ValidBufferTarget(context, target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000507 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +0000508 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000509 }
510
Geoff Langbfdea662014-07-23 14:16:32 -0400511 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
512
513 if (!buffer)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000514 {
Geoff Langbfdea662014-07-23 14:16:32 -0400515 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000516 }
Geoff Langbfdea662014-07-23 14:16:32 -0400517
518 buffer->bufferData(data, size, usage);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000519 }
520}
521
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000522void __stdcall glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000523{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000524 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr size = %d, const GLvoid* data = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000525 target, offset, size, data);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000526
Geoff Langbfdea662014-07-23 14:16:32 -0400527 if (size < 0 || offset < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000528 {
Geoff Langbfdea662014-07-23 14:16:32 -0400529 return gl::error(GL_INVALID_VALUE);
530 }
531
532 if (data == NULL)
533 {
534 return;
535 }
536
537 gl::Context *context = gl::getNonLostContext();
538
539 if (context)
540 {
541 if (!gl::ValidBufferTarget(context, target))
542 {
543 return gl::error(GL_INVALID_ENUM);
544 }
545
546 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
547
548 if (!buffer)
549 {
550 return gl::error(GL_INVALID_OPERATION);
551 }
552
553 if (buffer->isMapped())
554 {
555 return gl::error(GL_INVALID_OPERATION);
556 }
557
558 // Check for possible overflow of size + offset
559 if (!rx::IsUnsignedAdditionSafe<size_t>(size, offset))
560 {
561 return gl::error(GL_OUT_OF_MEMORY);
562 }
563
564 if (size + offset > buffer->getSize())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000565 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +0000566 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000567 }
568
Geoff Langbfdea662014-07-23 14:16:32 -0400569 buffer->bufferSubData(data, size, offset);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000570 }
571}
572
573GLenum __stdcall glCheckFramebufferStatus(GLenum target)
574{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000575 EVENT("(GLenum target = 0x%X)", target);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000576
Geoff Langbfdea662014-07-23 14:16:32 -0400577 if (!gl::ValidFramebufferTarget(target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000578 {
Geoff Langbfdea662014-07-23 14:16:32 -0400579 return gl::error(GL_INVALID_ENUM, 0);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000580 }
Geoff Langbfdea662014-07-23 14:16:32 -0400581
582 gl::Context *context = gl::getNonLostContext();
583
584 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000585 {
Geoff Langbfdea662014-07-23 14:16:32 -0400586 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
587 ASSERT(framebuffer);
588 return framebuffer->completeness();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000589 }
590
591 return 0;
592}
593
594void __stdcall glClear(GLbitfield mask)
595{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +0000596 EVENT("(GLbitfield mask = 0x%X)", mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000597
Geoff Langbfdea662014-07-23 14:16:32 -0400598 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000599
Geoff Langbfdea662014-07-23 14:16:32 -0400600 if (context)
601 {
602 gl::Framebuffer *framebufferObject = context->getState().getDrawFramebuffer();
603
604 if (!framebufferObject || framebufferObject->completeness() != GL_FRAMEBUFFER_COMPLETE)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000605 {
Geoff Langbfdea662014-07-23 14:16:32 -0400606 return gl::error(GL_INVALID_FRAMEBUFFER_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000607 }
Geoff Langbfdea662014-07-23 14:16:32 -0400608
609 if ((mask & ~(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT)) != 0)
610 {
611 return gl::error(GL_INVALID_VALUE);
612 }
613
614 context->clear(mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000615 }
616}
617
618void __stdcall glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
619{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000620 EVENT("(GLclampf red = %f, GLclampf green = %f, GLclampf blue = %f, GLclampf alpha = %f)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000621 red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000622
Geoff Langbfdea662014-07-23 14:16:32 -0400623 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000624
Geoff Langbfdea662014-07-23 14:16:32 -0400625 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000626 {
Geoff Langbfdea662014-07-23 14:16:32 -0400627 context->getState().setClearColor(red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000628 }
629}
630
631void __stdcall glClearDepthf(GLclampf depth)
632{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000633 EVENT("(GLclampf depth = %f)", depth);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000634
Geoff Langbfdea662014-07-23 14:16:32 -0400635 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000636
Geoff Langbfdea662014-07-23 14:16:32 -0400637 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000638 {
Geoff Langbfdea662014-07-23 14:16:32 -0400639 context->getState().setClearDepth(depth);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000640 }
641}
642
643void __stdcall glClearStencil(GLint s)
644{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000645 EVENT("(GLint s = %d)", s);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000646
Geoff Langbfdea662014-07-23 14:16:32 -0400647 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000648
Geoff Langbfdea662014-07-23 14:16:32 -0400649 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000650 {
Geoff Langbfdea662014-07-23 14:16:32 -0400651 context->getState().setClearStencil(s);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000652 }
653}
654
655void __stdcall glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
656{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +0000657 EVENT("(GLboolean red = %d, GLboolean green = %u, GLboolean blue = %u, GLboolean alpha = %u)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000658 red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000659
Geoff Langbfdea662014-07-23 14:16:32 -0400660 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000661
Geoff Langbfdea662014-07-23 14:16:32 -0400662 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000663 {
Geoff Langbfdea662014-07-23 14:16:32 -0400664 context->getState().setColorMask(red == GL_TRUE, green == GL_TRUE, blue == GL_TRUE, alpha == GL_TRUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000665 }
666}
667
668void __stdcall glCompileShader(GLuint shader)
669{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000670 EVENT("(GLuint shader = %d)", shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000671
Geoff Langbfdea662014-07-23 14:16:32 -0400672 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000673
Geoff Langbfdea662014-07-23 14:16:32 -0400674 if (context)
675 {
676 gl::Shader *shaderObject = context->getShader(shader);
677
678 if (!shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000679 {
Geoff Langbfdea662014-07-23 14:16:32 -0400680 if (context->getProgram(shader))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000681 {
Geoff Langbfdea662014-07-23 14:16:32 -0400682 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000683 }
Geoff Langbfdea662014-07-23 14:16:32 -0400684 else
daniel@transgaming.com5d752f22010-10-07 13:37:20 +0000685 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +0000686 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com5d752f22010-10-07 13:37:20 +0000687 }
daniel@transgaming.com01868132010-08-24 19:21:17 +0000688 }
Geoff Langbfdea662014-07-23 14:16:32 -0400689
690 shaderObject->compile();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000691 }
Geoff Langbfdea662014-07-23 14:16:32 -0400692}
693
694void __stdcall glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height,
695 GLint border, GLsizei imageSize, const GLvoid* data)
696{
697 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, GLsizei width = %d, "
698 "GLsizei height = %d, GLint border = %d, GLsizei imageSize = %d, const GLvoid* data = 0x%0.8p)",
699 target, level, internalformat, width, height, border, imageSize, data);
700
701 gl::Context *context = gl::getNonLostContext();
702
703 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000704 {
Geoff Langbfdea662014-07-23 14:16:32 -0400705 if (context->getClientVersion() < 3 &&
706 !ValidateES2TexImageParameters(context, target, level, internalformat, true, false,
707 0, 0, width, height, border, GL_NONE, GL_NONE, data))
708 {
709 return;
710 }
711
712 if (context->getClientVersion() >= 3 &&
713 !ValidateES3TexImageParameters(context, target, level, internalformat, true, false,
714 0, 0, 0, width, height, 1, border, GL_NONE, GL_NONE, data))
715 {
716 return;
717 }
718
Geoff Lang5d601382014-07-22 15:14:06 -0400719 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(internalformat);
720 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -0400721 {
722 return gl::error(GL_INVALID_VALUE);
723 }
724
725 switch (target)
726 {
727 case GL_TEXTURE_2D:
728 {
729 gl::Texture2D *texture = context->getTexture2D();
730 texture->setCompressedImage(level, internalformat, width, height, imageSize, data);
731 }
732 break;
733
734 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
735 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
736 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
737 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
738 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
739 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
740 {
741 gl::TextureCubeMap *texture = context->getTextureCubeMap();
742 texture->setCompressedImage(target, level, internalformat, width, height, imageSize, data);
743 }
744 break;
745
746 default:
747 return gl::error(GL_INVALID_ENUM);
748 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000749 }
750}
751
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000752void __stdcall glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
753 GLenum format, GLsizei imageSize, const GLvoid* data)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000754{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000755 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000756 "GLsizei width = %d, GLsizei height = %d, GLenum format = 0x%X, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000757 "GLsizei imageSize = %d, const GLvoid* data = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000758 target, level, xoffset, yoffset, width, height, format, imageSize, data);
759
Geoff Langbfdea662014-07-23 14:16:32 -0400760 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com01868132010-08-24 19:21:17 +0000761
Geoff Langbfdea662014-07-23 14:16:32 -0400762 if (context)
763 {
764 if (context->getClientVersion() < 3 &&
765 !ValidateES2TexImageParameters(context, target, level, GL_NONE, true, true,
766 xoffset, yoffset, width, height, 0, GL_NONE, GL_NONE, data))
daniel@transgaming.com01868132010-08-24 19:21:17 +0000767 {
Geoff Langbfdea662014-07-23 14:16:32 -0400768 return;
daniel@transgaming.com01868132010-08-24 19:21:17 +0000769 }
Geoff Langbfdea662014-07-23 14:16:32 -0400770
771 if (context->getClientVersion() >= 3 &&
772 !ValidateES3TexImageParameters(context, target, level, GL_NONE, true, true,
773 xoffset, yoffset, 0, width, height, 1, 0, GL_NONE, GL_NONE, data))
774 {
775 return;
776 }
777
Geoff Lang5d601382014-07-22 15:14:06 -0400778 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(format);
779 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -0400780 {
781 return gl::error(GL_INVALID_VALUE);
782 }
783
784 switch (target)
785 {
786 case GL_TEXTURE_2D:
787 {
788 gl::Texture2D *texture = context->getTexture2D();
789 texture->subImageCompressed(level, xoffset, yoffset, width, height, format, imageSize, data);
790 }
791 break;
792
793 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
794 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
795 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
796 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
797 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
798 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
799 {
800 gl::TextureCubeMap *texture = context->getTextureCubeMap();
801 texture->subImageCompressed(target, level, xoffset, yoffset, width, height, format, imageSize, data);
802 }
803 break;
804
805 default:
806 return gl::error(GL_INVALID_ENUM);
807 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000808 }
809}
810
811void __stdcall glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
812{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000813 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000814 "GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d, GLint border = %d)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000815 target, level, internalformat, x, y, width, height, border);
816
Geoff Langbfdea662014-07-23 14:16:32 -0400817 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000818
Geoff Langbfdea662014-07-23 14:16:32 -0400819 if (context)
820 {
821 if (context->getClientVersion() < 3 &&
822 !ValidateES2CopyTexImageParameters(context, target, level, internalformat, false,
823 0, 0, x, y, width, height, border))
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000824 {
Geoff Langbfdea662014-07-23 14:16:32 -0400825 return;
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000826 }
Geoff Langbfdea662014-07-23 14:16:32 -0400827
828 if (context->getClientVersion() >= 3 &&
829 !ValidateES3CopyTexImageParameters(context, target, level, internalformat, false,
830 0, 0, 0, x, y, width, height, border))
831 {
832 return;
833 }
834
835 gl::Framebuffer *framebuffer = context->getState().getReadFramebuffer();
836
837 switch (target)
838 {
839 case GL_TEXTURE_2D:
840 {
841 gl::Texture2D *texture = context->getTexture2D();
842 texture->copyImage(level, internalformat, x, y, width, height, framebuffer);
843 }
844 break;
845
846 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
847 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
848 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
849 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
850 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
851 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
852 {
853 gl::TextureCubeMap *texture = context->getTextureCubeMap();
854 texture->copyImage(target, level, internalformat, x, y, width, height, framebuffer);
855 }
856 break;
857
858 default:
859 return gl::error(GL_INVALID_ENUM);
860 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000861 }
862}
863
864void __stdcall glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
865{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000866 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000867 "GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000868 target, level, xoffset, yoffset, x, y, width, height);
869
Geoff Langbfdea662014-07-23 14:16:32 -0400870 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000871
Geoff Langbfdea662014-07-23 14:16:32 -0400872 if (context)
873 {
874 if (context->getClientVersion() < 3 &&
875 !ValidateES2CopyTexImageParameters(context, target, level, GL_NONE, true,
876 xoffset, yoffset, x, y, width, height, 0))
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000877 {
Geoff Langbfdea662014-07-23 14:16:32 -0400878 return;
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000879 }
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000880
Geoff Langbfdea662014-07-23 14:16:32 -0400881 if (context->getClientVersion() >= 3 &&
882 !ValidateES3CopyTexImageParameters(context, target, level, GL_NONE, true,
883 xoffset, yoffset, 0, x, y, width, height, 0))
884 {
885 return;
886 }
887
888 gl::Framebuffer *framebuffer = context->getState().getReadFramebuffer();
889
890 switch (target)
891 {
892 case GL_TEXTURE_2D:
893 {
894 gl::Texture2D *texture = context->getTexture2D();
895 texture->copySubImage(target, level, xoffset, yoffset, 0, x, y, width, height, framebuffer);
896 }
897 break;
898
899 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
900 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
901 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
902 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
903 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
904 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
905 {
906 gl::TextureCubeMap *texture = context->getTextureCubeMap();
907 texture->copySubImage(target, level, xoffset, yoffset, 0, x, y, width, height, framebuffer);
908 }
909 break;
910
911 default:
912 return gl::error(GL_INVALID_ENUM);
913 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000914 }
915}
916
917GLuint __stdcall glCreateProgram(void)
918{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000919 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000920
Geoff Langbfdea662014-07-23 14:16:32 -0400921 gl::Context *context = gl::getNonLostContext();
922 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000923 {
Geoff Langbfdea662014-07-23 14:16:32 -0400924 return context->createProgram();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000925 }
926
927 return 0;
928}
929
930GLuint __stdcall glCreateShader(GLenum type)
931{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000932 EVENT("(GLenum type = 0x%X)", type);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000933
Geoff Langbfdea662014-07-23 14:16:32 -0400934 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000935
Geoff Langbfdea662014-07-23 14:16:32 -0400936 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000937 {
Geoff Langbfdea662014-07-23 14:16:32 -0400938 switch (type)
939 {
940 case GL_FRAGMENT_SHADER:
941 case GL_VERTEX_SHADER:
942 return context->createShader(type);
943 default:
944 return gl::error(GL_INVALID_ENUM, 0);
945 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000946 }
947
948 return 0;
949}
950
951void __stdcall glCullFace(GLenum mode)
952{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000953 EVENT("(GLenum mode = 0x%X)", mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000954
Geoff Langbfdea662014-07-23 14:16:32 -0400955 switch (mode)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000956 {
Geoff Langbfdea662014-07-23 14:16:32 -0400957 case GL_FRONT:
958 case GL_BACK:
959 case GL_FRONT_AND_BACK:
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000960 {
Geoff Langbfdea662014-07-23 14:16:32 -0400961 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000962
Geoff Langbfdea662014-07-23 14:16:32 -0400963 if (context)
964 {
965 context->getState().setCullMode(mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000966 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000967 }
Geoff Langbfdea662014-07-23 14:16:32 -0400968 break;
969 default:
970 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000971 }
972}
973
974void __stdcall glDeleteBuffers(GLsizei n, const GLuint* buffers)
975{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000976 EVENT("(GLsizei n = %d, const GLuint* buffers = 0x%0.8p)", n, buffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000977
Geoff Langbfdea662014-07-23 14:16:32 -0400978 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000979 {
Geoff Langbfdea662014-07-23 14:16:32 -0400980 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000981 }
Geoff Langbfdea662014-07-23 14:16:32 -0400982
983 gl::Context *context = gl::getNonLostContext();
984
985 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000986 {
Geoff Langbfdea662014-07-23 14:16:32 -0400987 for (int i = 0; i < n; i++)
988 {
989 context->deleteBuffer(buffers[i]);
990 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000991 }
992}
993
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +0000994void __stdcall glDeleteFencesNV(GLsizei n, const GLuint* fences)
995{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000996 EVENT("(GLsizei n = %d, const GLuint* fences = 0x%0.8p)", n, fences);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +0000997
Geoff Langbfdea662014-07-23 14:16:32 -0400998 if (n < 0)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +0000999 {
Geoff Langbfdea662014-07-23 14:16:32 -04001000 return gl::error(GL_INVALID_VALUE);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001001 }
Geoff Langbfdea662014-07-23 14:16:32 -04001002
1003 gl::Context *context = gl::getNonLostContext();
1004
1005 if (context)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001006 {
Geoff Langbfdea662014-07-23 14:16:32 -04001007 for (int i = 0; i < n; i++)
1008 {
1009 context->deleteFenceNV(fences[i]);
1010 }
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001011 }
1012}
1013
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001014void __stdcall glDeleteFramebuffers(GLsizei n, const GLuint* framebuffers)
1015{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001016 EVENT("(GLsizei n = %d, const GLuint* framebuffers = 0x%0.8p)", n, framebuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001017
Geoff Langbfdea662014-07-23 14:16:32 -04001018 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001019 {
Geoff Langbfdea662014-07-23 14:16:32 -04001020 return gl::error(GL_INVALID_VALUE);
1021 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001022
Geoff Langbfdea662014-07-23 14:16:32 -04001023 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001024
Geoff Langbfdea662014-07-23 14:16:32 -04001025 if (context)
1026 {
1027 for (int i = 0; i < n; i++)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001028 {
Geoff Langbfdea662014-07-23 14:16:32 -04001029 if (framebuffers[i] != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001030 {
Geoff Langbfdea662014-07-23 14:16:32 -04001031 context->deleteFramebuffer(framebuffers[i]);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001032 }
1033 }
1034 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001035}
1036
1037void __stdcall glDeleteProgram(GLuint program)
1038{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001039 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001040
Geoff Langbfdea662014-07-23 14:16:32 -04001041 if (program == 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001042 {
Geoff Langbfdea662014-07-23 14:16:32 -04001043 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001044 }
Geoff Langbfdea662014-07-23 14:16:32 -04001045
1046 gl::Context *context = gl::getNonLostContext();
1047
1048 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001049 {
Geoff Langbfdea662014-07-23 14:16:32 -04001050 if (!context->getProgram(program))
1051 {
1052 if(context->getShader(program))
1053 {
1054 return gl::error(GL_INVALID_OPERATION);
1055 }
1056 else
1057 {
1058 return gl::error(GL_INVALID_VALUE);
1059 }
1060 }
1061
1062 context->deleteProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001063 }
1064}
1065
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001066void __stdcall glDeleteQueriesEXT(GLsizei n, const GLuint *ids)
1067{
1068 EVENT("(GLsizei n = %d, const GLuint *ids = 0x%0.8p)", n, ids);
1069
Geoff Langbfdea662014-07-23 14:16:32 -04001070 if (n < 0)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001071 {
Geoff Langbfdea662014-07-23 14:16:32 -04001072 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001073 }
Geoff Langbfdea662014-07-23 14:16:32 -04001074
1075 gl::Context *context = gl::getNonLostContext();
1076
1077 if (context)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001078 {
Geoff Langbfdea662014-07-23 14:16:32 -04001079 for (int i = 0; i < n; i++)
1080 {
1081 context->deleteQuery(ids[i]);
1082 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001083 }
1084}
1085
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001086void __stdcall glDeleteRenderbuffers(GLsizei n, const GLuint* renderbuffers)
1087{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001088 EVENT("(GLsizei n = %d, const GLuint* renderbuffers = 0x%0.8p)", n, renderbuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001089
Geoff Langbfdea662014-07-23 14:16:32 -04001090 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001091 {
Geoff Langbfdea662014-07-23 14:16:32 -04001092 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001093 }
Geoff Langbfdea662014-07-23 14:16:32 -04001094
1095 gl::Context *context = gl::getNonLostContext();
1096
1097 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001098 {
Geoff Langbfdea662014-07-23 14:16:32 -04001099 for (int i = 0; i < n; i++)
1100 {
1101 context->deleteRenderbuffer(renderbuffers[i]);
1102 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001103 }
1104}
1105
1106void __stdcall glDeleteShader(GLuint shader)
1107{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001108 EVENT("(GLuint shader = %d)", shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001109
Geoff Langbfdea662014-07-23 14:16:32 -04001110 if (shader == 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001111 {
Geoff Langbfdea662014-07-23 14:16:32 -04001112 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001113 }
Geoff Langbfdea662014-07-23 14:16:32 -04001114
1115 gl::Context *context = gl::getNonLostContext();
1116
1117 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001118 {
Geoff Langbfdea662014-07-23 14:16:32 -04001119 if (!context->getShader(shader))
1120 {
1121 if(context->getProgram(shader))
1122 {
1123 return gl::error(GL_INVALID_OPERATION);
1124 }
1125 else
1126 {
1127 return gl::error(GL_INVALID_VALUE);
1128 }
1129 }
1130
1131 context->deleteShader(shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001132 }
1133}
1134
1135void __stdcall glDeleteTextures(GLsizei n, const GLuint* textures)
1136{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001137 EVENT("(GLsizei n = %d, const GLuint* textures = 0x%0.8p)", n, textures);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001138
Geoff Langbfdea662014-07-23 14:16:32 -04001139 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001140 {
Geoff Langbfdea662014-07-23 14:16:32 -04001141 return gl::error(GL_INVALID_VALUE);
1142 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001143
Geoff Langbfdea662014-07-23 14:16:32 -04001144 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001145
Geoff Langbfdea662014-07-23 14:16:32 -04001146 if (context)
1147 {
1148 for (int i = 0; i < n; i++)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001149 {
Geoff Langbfdea662014-07-23 14:16:32 -04001150 if (textures[i] != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001151 {
Geoff Langbfdea662014-07-23 14:16:32 -04001152 context->deleteTexture(textures[i]);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001153 }
1154 }
1155 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001156}
1157
1158void __stdcall glDepthFunc(GLenum func)
1159{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001160 EVENT("(GLenum func = 0x%X)", func);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001161
Geoff Langbfdea662014-07-23 14:16:32 -04001162 switch (func)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001163 {
Geoff Langbfdea662014-07-23 14:16:32 -04001164 case GL_NEVER:
1165 case GL_ALWAYS:
1166 case GL_LESS:
1167 case GL_LEQUAL:
1168 case GL_EQUAL:
1169 case GL_GREATER:
1170 case GL_GEQUAL:
1171 case GL_NOTEQUAL:
1172 break;
1173 default:
1174 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001175 }
Geoff Langbfdea662014-07-23 14:16:32 -04001176
1177 gl::Context *context = gl::getNonLostContext();
1178
1179 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001180 {
Geoff Langbfdea662014-07-23 14:16:32 -04001181 context->getState().setDepthFunc(func);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001182 }
1183}
1184
1185void __stdcall glDepthMask(GLboolean flag)
1186{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00001187 EVENT("(GLboolean flag = %u)", flag);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001188
Geoff Langbfdea662014-07-23 14:16:32 -04001189 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001190
Geoff Langbfdea662014-07-23 14:16:32 -04001191 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001192 {
Geoff Langbfdea662014-07-23 14:16:32 -04001193 context->getState().setDepthMask(flag != GL_FALSE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001194 }
1195}
1196
1197void __stdcall glDepthRangef(GLclampf zNear, GLclampf zFar)
1198{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001199 EVENT("(GLclampf zNear = %f, GLclampf zFar = %f)", zNear, zFar);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001200
Geoff Langbfdea662014-07-23 14:16:32 -04001201 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001202
Geoff Langbfdea662014-07-23 14:16:32 -04001203 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001204 {
Geoff Langbfdea662014-07-23 14:16:32 -04001205 context->getState().setDepthRange(zNear, zFar);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001206 }
1207}
1208
1209void __stdcall glDetachShader(GLuint program, GLuint shader)
1210{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001211 EVENT("(GLuint program = %d, GLuint shader = %d)", program, shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001212
Geoff Langbfdea662014-07-23 14:16:32 -04001213 gl::Context *context = gl::getNonLostContext();
1214
1215 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001216 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001217
Geoff Langbfdea662014-07-23 14:16:32 -04001218 gl::Program *programObject = context->getProgram(program);
1219 gl::Shader *shaderObject = context->getShader(shader);
1220
1221 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001222 {
Geoff Langbfdea662014-07-23 14:16:32 -04001223 gl::Shader *shaderByProgramHandle;
1224 shaderByProgramHandle = context->getShader(program);
1225 if (!shaderByProgramHandle)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001226 {
Geoff Langbfdea662014-07-23 14:16:32 -04001227 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com73c2c2e2010-04-13 03:26:11 +00001228 }
Geoff Langbfdea662014-07-23 14:16:32 -04001229 else
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001230 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00001231 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001232 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001233 }
Geoff Langbfdea662014-07-23 14:16:32 -04001234
1235 if (!shaderObject)
1236 {
1237 gl::Program *programByShaderHandle = context->getProgram(shader);
1238 if (!programByShaderHandle)
1239 {
1240 return gl::error(GL_INVALID_VALUE);
1241 }
1242 else
1243 {
1244 return gl::error(GL_INVALID_OPERATION);
1245 }
1246 }
1247
1248 if (!programObject->detachShader(shaderObject))
1249 {
1250 return gl::error(GL_INVALID_OPERATION);
1251 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001252 }
1253}
1254
1255void __stdcall glDisable(GLenum cap)
1256{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001257 EVENT("(GLenum cap = 0x%X)", cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001258
Geoff Langbfdea662014-07-23 14:16:32 -04001259 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001260
Geoff Langbfdea662014-07-23 14:16:32 -04001261 if (context)
1262 {
1263 if (!ValidCap(context, cap))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001264 {
Geoff Langbfdea662014-07-23 14:16:32 -04001265 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001266 }
Geoff Langbfdea662014-07-23 14:16:32 -04001267
1268 context->getState().setEnableFeature(cap, false);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001269 }
1270}
1271
1272void __stdcall glDisableVertexAttribArray(GLuint index)
1273{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001274 EVENT("(GLuint index = %d)", index);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001275
Geoff Langbfdea662014-07-23 14:16:32 -04001276 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001277 {
Geoff Langbfdea662014-07-23 14:16:32 -04001278 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001279 }
Geoff Langbfdea662014-07-23 14:16:32 -04001280
1281 gl::Context *context = gl::getNonLostContext();
1282
1283 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001284 {
Geoff Langbfdea662014-07-23 14:16:32 -04001285 context->getState().setEnableVertexAttribArray(index, false);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001286 }
1287}
1288
1289void __stdcall glDrawArrays(GLenum mode, GLint first, GLsizei count)
1290{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001291 EVENT("(GLenum mode = 0x%X, GLint first = %d, GLsizei count = %d)", mode, first, count);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001292
Geoff Langbfdea662014-07-23 14:16:32 -04001293 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001294
Geoff Langbfdea662014-07-23 14:16:32 -04001295 if (context)
1296 {
Jamie Madill2b976812014-08-25 15:47:49 -04001297 if (!ValidateDrawArrays(context, mode, first, count, 0))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001298 {
Geoff Langbfdea662014-07-23 14:16:32 -04001299 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001300 }
Geoff Langbfdea662014-07-23 14:16:32 -04001301
1302 context->drawArrays(mode, first, count, 0);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001303 }
1304}
1305
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001306void __stdcall glDrawArraysInstancedANGLE(GLenum mode, GLint first, GLsizei count, GLsizei primcount)
1307{
1308 EVENT("(GLenum mode = 0x%X, GLint first = %d, GLsizei count = %d, GLsizei primcount = %d)", mode, first, count, primcount);
1309
Geoff Langbfdea662014-07-23 14:16:32 -04001310 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001311
Geoff Langbfdea662014-07-23 14:16:32 -04001312 if (context)
1313 {
1314 if (!ValidateDrawArraysInstanced(context, mode, first, count, primcount))
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001315 {
Geoff Langbfdea662014-07-23 14:16:32 -04001316 return;
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001317 }
Geoff Langbfdea662014-07-23 14:16:32 -04001318
1319 context->drawArrays(mode, first, count, primcount);
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001320 }
1321}
1322
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00001323void __stdcall glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001324{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001325 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00001326 mode, count, type, indices);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001327
Geoff Langbfdea662014-07-23 14:16:32 -04001328 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001329
Geoff Langbfdea662014-07-23 14:16:32 -04001330 if (context)
1331 {
Jamie Madill2b976812014-08-25 15:47:49 -04001332 rx::RangeUI indexRange;
1333 if (!ValidateDrawElements(context, mode, count, type, indices, 0, &indexRange))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001334 {
Geoff Langbfdea662014-07-23 14:16:32 -04001335 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001336 }
Geoff Langbfdea662014-07-23 14:16:32 -04001337
Jamie Madill2b976812014-08-25 15:47:49 -04001338 context->drawElements(mode, count, type, indices, 0, indexRange);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001339 }
1340}
1341
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001342void __stdcall glDrawElementsInstancedANGLE(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount)
1343{
1344 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p, GLsizei primcount = %d)",
1345 mode, count, type, indices, primcount);
1346
Geoff Langbfdea662014-07-23 14:16:32 -04001347 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001348
Geoff Langbfdea662014-07-23 14:16:32 -04001349 if (context)
1350 {
Jamie Madill2b976812014-08-25 15:47:49 -04001351 rx::RangeUI indexRange;
1352 if (!ValidateDrawElementsInstanced(context, mode, count, type, indices, primcount, &indexRange))
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001353 {
Geoff Langbfdea662014-07-23 14:16:32 -04001354 return;
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001355 }
Geoff Langbfdea662014-07-23 14:16:32 -04001356
Jamie Madill2b976812014-08-25 15:47:49 -04001357 context->drawElements(mode, count, type, indices, primcount, indexRange);
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001358 }
1359}
1360
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001361void __stdcall glEnable(GLenum cap)
1362{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001363 EVENT("(GLenum cap = 0x%X)", cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001364
Geoff Langbfdea662014-07-23 14:16:32 -04001365 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001366
Geoff Langbfdea662014-07-23 14:16:32 -04001367 if (context)
1368 {
1369 if (!ValidCap(context, cap))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001370 {
Geoff Langbfdea662014-07-23 14:16:32 -04001371 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001372 }
Geoff Langbfdea662014-07-23 14:16:32 -04001373
1374 context->getState().setEnableFeature(cap, true);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001375 }
1376}
1377
1378void __stdcall glEnableVertexAttribArray(GLuint index)
1379{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001380 EVENT("(GLuint index = %d)", index);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001381
Geoff Langbfdea662014-07-23 14:16:32 -04001382 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001383 {
Geoff Langbfdea662014-07-23 14:16:32 -04001384 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001385 }
Geoff Langbfdea662014-07-23 14:16:32 -04001386
1387 gl::Context *context = gl::getNonLostContext();
1388
1389 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001390 {
Geoff Langbfdea662014-07-23 14:16:32 -04001391 context->getState().setEnableVertexAttribArray(index, true);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001392 }
1393}
1394
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001395void __stdcall glEndQueryEXT(GLenum target)
1396{
1397 EVENT("GLenum target = 0x%X)", target);
1398
Geoff Langbfdea662014-07-23 14:16:32 -04001399 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001400
Geoff Langbfdea662014-07-23 14:16:32 -04001401 if (context)
1402 {
1403 if (!ValidateEndQuery(context, target))
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001404 {
Geoff Langbfdea662014-07-23 14:16:32 -04001405 return;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001406 }
Geoff Langbfdea662014-07-23 14:16:32 -04001407
1408 context->endQuery(target);
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001409 }
1410}
1411
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001412void __stdcall glFinishFenceNV(GLuint fence)
1413{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001414 EVENT("(GLuint fence = %d)", fence);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001415
Geoff Langbfdea662014-07-23 14:16:32 -04001416 gl::Context *context = gl::getNonLostContext();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001417
Geoff Langbfdea662014-07-23 14:16:32 -04001418 if (context)
1419 {
1420 gl::FenceNV *fenceObject = context->getFenceNV(fence);
1421
1422 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001423 {
Geoff Langbfdea662014-07-23 14:16:32 -04001424 return gl::error(GL_INVALID_OPERATION);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001425 }
Geoff Langbfdea662014-07-23 14:16:32 -04001426
1427 if (fenceObject->isFence() != GL_TRUE)
1428 {
1429 return gl::error(GL_INVALID_OPERATION);
1430 }
1431
1432 fenceObject->finishFence();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001433 }
1434}
1435
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001436void __stdcall glFinish(void)
1437{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001438 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001439
Geoff Langbfdea662014-07-23 14:16:32 -04001440 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001441
Geoff Langbfdea662014-07-23 14:16:32 -04001442 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001443 {
Geoff Langbfdea662014-07-23 14:16:32 -04001444 context->sync(true);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001445 }
1446}
1447
1448void __stdcall glFlush(void)
1449{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001450 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001451
Geoff Langbfdea662014-07-23 14:16:32 -04001452 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001453
Geoff Langbfdea662014-07-23 14:16:32 -04001454 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001455 {
Geoff Langbfdea662014-07-23 14:16:32 -04001456 context->sync(false);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001457 }
1458}
1459
1460void __stdcall glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)
1461{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001462 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLenum renderbuffertarget = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00001463 "GLuint renderbuffer = %d)", target, attachment, renderbuffertarget, renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001464
Geoff Langbfdea662014-07-23 14:16:32 -04001465 if (!gl::ValidFramebufferTarget(target) || (renderbuffertarget != GL_RENDERBUFFER && renderbuffer != 0))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001466 {
Geoff Langbfdea662014-07-23 14:16:32 -04001467 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001468 }
Geoff Langbfdea662014-07-23 14:16:32 -04001469
1470 gl::Context *context = gl::getNonLostContext();
1471
1472 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001473 {
Geoff Langbfdea662014-07-23 14:16:32 -04001474 if (!gl::ValidateFramebufferRenderbufferParameters(context, target, attachment, renderbuffertarget, renderbuffer))
1475 {
1476 return;
1477 }
1478
1479 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
1480 ASSERT(framebuffer);
1481
1482 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
1483 {
1484 unsigned int colorAttachment = (attachment - GL_COLOR_ATTACHMENT0_EXT);
1485 framebuffer->setColorbuffer(colorAttachment, GL_RENDERBUFFER, renderbuffer, 0, 0);
1486 }
1487 else
1488 {
1489 switch (attachment)
1490 {
1491 case GL_DEPTH_ATTACHMENT:
1492 framebuffer->setDepthbuffer(GL_RENDERBUFFER, renderbuffer, 0, 0);
1493 break;
1494 case GL_STENCIL_ATTACHMENT:
1495 framebuffer->setStencilbuffer(GL_RENDERBUFFER, renderbuffer, 0, 0);
1496 break;
1497 case GL_DEPTH_STENCIL_ATTACHMENT:
1498 framebuffer->setDepthStencilBuffer(GL_RENDERBUFFER, renderbuffer, 0, 0);
1499 break;
1500 default:
1501 UNREACHABLE();
1502 break;
1503 }
1504 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001505 }
1506}
1507
1508void __stdcall glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
1509{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001510 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLenum textarget = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00001511 "GLuint texture = %d, GLint level = %d)", target, attachment, textarget, texture, level);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001512
Geoff Langbfdea662014-07-23 14:16:32 -04001513 gl::Context *context = gl::getNonLostContext();
1514 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001515 {
Geoff Langbfdea662014-07-23 14:16:32 -04001516 if (!ValidateFramebufferTexture2D(context, target, attachment, textarget, texture, level))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001517 {
Geoff Langbfdea662014-07-23 14:16:32 -04001518 return;
1519 }
shannon.woods%transgaming.com@gtempaccount.com89ae1132013-04-13 03:28:43 +00001520
Geoff Langbfdea662014-07-23 14:16:32 -04001521 if (texture == 0)
1522 {
1523 textarget = GL_NONE;
1524 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001525
Geoff Langbfdea662014-07-23 14:16:32 -04001526 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001527
Geoff Langbfdea662014-07-23 14:16:32 -04001528 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
1529 {
1530 const unsigned int colorAttachment = (attachment - GL_COLOR_ATTACHMENT0_EXT);
1531 framebuffer->setColorbuffer(colorAttachment, textarget, texture, level, 0);
1532 }
1533 else
1534 {
1535 switch (attachment)
daniel@transgaming.comfbc09532010-04-26 15:33:41 +00001536 {
Geoff Langbfdea662014-07-23 14:16:32 -04001537 case GL_DEPTH_ATTACHMENT: framebuffer->setDepthbuffer(textarget, texture, level, 0); break;
1538 case GL_STENCIL_ATTACHMENT: framebuffer->setStencilbuffer(textarget, texture, level, 0); break;
1539 case GL_DEPTH_STENCIL_ATTACHMENT: framebuffer->setDepthStencilBuffer(textarget, texture, level, 0); break;
daniel@transgaming.comfbc09532010-04-26 15:33:41 +00001540 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001541 }
1542 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001543}
1544
1545void __stdcall glFrontFace(GLenum mode)
1546{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001547 EVENT("(GLenum mode = 0x%X)", mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001548
Geoff Langbfdea662014-07-23 14:16:32 -04001549 switch (mode)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001550 {
Geoff Langbfdea662014-07-23 14:16:32 -04001551 case GL_CW:
1552 case GL_CCW:
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001553 {
Geoff Langbfdea662014-07-23 14:16:32 -04001554 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001555
Geoff Langbfdea662014-07-23 14:16:32 -04001556 if (context)
1557 {
1558 context->getState().setFrontFace(mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001559 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001560 }
Geoff Langbfdea662014-07-23 14:16:32 -04001561 break;
1562 default:
1563 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001564 }
1565}
1566
1567void __stdcall glGenBuffers(GLsizei n, GLuint* buffers)
1568{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001569 EVENT("(GLsizei n = %d, GLuint* buffers = 0x%0.8p)", n, buffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001570
Geoff Langbfdea662014-07-23 14:16:32 -04001571 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001572 {
Geoff Langbfdea662014-07-23 14:16:32 -04001573 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001574 }
Geoff Langbfdea662014-07-23 14:16:32 -04001575
1576 gl::Context *context = gl::getNonLostContext();
1577
1578 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001579 {
Geoff Langbfdea662014-07-23 14:16:32 -04001580 for (int i = 0; i < n; i++)
1581 {
1582 buffers[i] = context->createBuffer();
1583 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001584 }
1585}
1586
1587void __stdcall glGenerateMipmap(GLenum target)
1588{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001589 EVENT("(GLenum target = 0x%X)", target);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001590
Geoff Langbfdea662014-07-23 14:16:32 -04001591 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com8fd99e22010-04-20 18:52:00 +00001592
Geoff Langbfdea662014-07-23 14:16:32 -04001593 if (context)
1594 {
1595 if (!ValidTextureTarget(context, target))
daniel@transgaming.com8fd99e22010-04-20 18:52:00 +00001596 {
Geoff Langbfdea662014-07-23 14:16:32 -04001597 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com8fd99e22010-04-20 18:52:00 +00001598 }
Geoff Langbfdea662014-07-23 14:16:32 -04001599
1600 gl::Texture *texture = context->getTargetTexture(target);
1601
1602 if (texture == NULL)
1603 {
1604 return gl::error(GL_INVALID_OPERATION);
1605 }
1606
1607 GLenum internalFormat = texture->getBaseLevelInternalFormat();
1608 const gl::TextureCaps &formatCaps = context->getTextureCaps().get(internalFormat);
Geoff Lang5d601382014-07-22 15:14:06 -04001609 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(internalFormat);
Geoff Langbfdea662014-07-23 14:16:32 -04001610
1611 // GenerateMipmap should not generate an INVALID_OPERATION for textures created with
1612 // unsized formats or that are color renderable and filterable. Since we do not track if
1613 // the texture was created with sized or unsized format (only sized formats are stored),
1614 // it is not possible to make sure the the LUMA formats can generate mipmaps (they should
1615 // be able to) because they aren't color renderable. Simply do a special case for LUMA
1616 // textures since they're the only texture format that can be created with unsized formats
1617 // that is not color renderable. New unsized formats are unlikely to be added, since ES2
1618 // was the last version to use add them.
1619 bool isLUMA = internalFormat == GL_LUMINANCE8_EXT ||
1620 internalFormat == GL_LUMINANCE8_ALPHA8_EXT ||
1621 internalFormat == GL_ALPHA8_EXT;
1622
Geoff Lang5d601382014-07-22 15:14:06 -04001623 if (formatInfo.depthBits > 0 || formatInfo.stencilBits > 0 || !formatCaps.filterable ||
1624 (!formatCaps.renderable && !isLUMA) || formatInfo.compressed)
Geoff Langbfdea662014-07-23 14:16:32 -04001625 {
1626 return gl::error(GL_INVALID_OPERATION);
1627 }
1628
1629 // GL_EXT_sRGB does not support mipmap generation on sRGB textures
Geoff Lang5d601382014-07-22 15:14:06 -04001630 if (context->getClientVersion() == 2 && formatInfo.colorEncoding == GL_SRGB)
Geoff Langbfdea662014-07-23 14:16:32 -04001631 {
1632 return gl::error(GL_INVALID_OPERATION);
1633 }
1634
1635 // Non-power of 2 ES2 check
1636 if (!context->getExtensions().textureNPOT && (!gl::isPow2(texture->getBaseLevelWidth()) || !gl::isPow2(texture->getBaseLevelHeight())))
1637 {
1638 ASSERT(context->getClientVersion() <= 2 && (target == GL_TEXTURE_2D || target == GL_TEXTURE_CUBE_MAP));
1639 return gl::error(GL_INVALID_OPERATION);
1640 }
1641
1642 // Cube completeness check
1643 if (target == GL_TEXTURE_CUBE_MAP)
1644 {
1645 gl::TextureCubeMap *textureCube = static_cast<gl::TextureCubeMap *>(texture);
1646 if (!textureCube->isCubeComplete())
1647 {
1648 return gl::error(GL_INVALID_OPERATION);
1649 }
1650 }
1651
1652 texture->generateMipmaps();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001653 }
1654}
1655
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001656void __stdcall glGenFencesNV(GLsizei n, GLuint* fences)
1657{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001658 EVENT("(GLsizei n = %d, GLuint* fences = 0x%0.8p)", n, fences);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001659
Geoff Langbfdea662014-07-23 14:16:32 -04001660 if (n < 0)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001661 {
Geoff Langbfdea662014-07-23 14:16:32 -04001662 return gl::error(GL_INVALID_VALUE);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001663 }
Geoff Langbfdea662014-07-23 14:16:32 -04001664
1665 gl::Context *context = gl::getNonLostContext();
1666
1667 if (context)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001668 {
Geoff Langbfdea662014-07-23 14:16:32 -04001669 for (int i = 0; i < n; i++)
1670 {
1671 fences[i] = context->createFenceNV();
1672 }
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001673 }
1674}
1675
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001676void __stdcall glGenFramebuffers(GLsizei n, GLuint* framebuffers)
1677{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001678 EVENT("(GLsizei n = %d, GLuint* framebuffers = 0x%0.8p)", n, framebuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001679
Geoff Langbfdea662014-07-23 14:16:32 -04001680 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001681 {
Geoff Langbfdea662014-07-23 14:16:32 -04001682 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001683 }
Geoff Langbfdea662014-07-23 14:16:32 -04001684
1685 gl::Context *context = gl::getNonLostContext();
1686
1687 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001688 {
Geoff Langbfdea662014-07-23 14:16:32 -04001689 for (int i = 0; i < n; i++)
1690 {
1691 framebuffers[i] = context->createFramebuffer();
1692 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001693 }
1694}
1695
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001696void __stdcall glGenQueriesEXT(GLsizei n, GLuint* ids)
1697{
1698 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
1699
Geoff Langbfdea662014-07-23 14:16:32 -04001700 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001701
Geoff Langbfdea662014-07-23 14:16:32 -04001702 if (context)
1703 {
1704 if (n < 0)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001705 {
Geoff Langbfdea662014-07-23 14:16:32 -04001706 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001707 }
Geoff Langbfdea662014-07-23 14:16:32 -04001708
1709 for (GLsizei i = 0; i < n; i++)
1710 {
1711 ids[i] = context->createQuery();
1712 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001713 }
1714}
1715
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001716void __stdcall glGenRenderbuffers(GLsizei n, GLuint* renderbuffers)
1717{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001718 EVENT("(GLsizei n = %d, GLuint* renderbuffers = 0x%0.8p)", n, renderbuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001719
Geoff Langbfdea662014-07-23 14:16:32 -04001720 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001721 {
Geoff Langbfdea662014-07-23 14:16:32 -04001722 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001723 }
Geoff Langbfdea662014-07-23 14:16:32 -04001724
1725 gl::Context *context = gl::getNonLostContext();
1726
1727 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001728 {
Geoff Langbfdea662014-07-23 14:16:32 -04001729 for (int i = 0; i < n; i++)
1730 {
1731 renderbuffers[i] = context->createRenderbuffer();
1732 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001733 }
1734}
1735
1736void __stdcall glGenTextures(GLsizei n, GLuint* textures)
1737{
Jamie Madill1fc7e2c2014-01-21 16:47:10 -05001738 EVENT("(GLsizei n = %d, GLuint* textures = 0x%0.8p)", n, textures);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001739
Geoff Langbfdea662014-07-23 14:16:32 -04001740 if (n < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001741 {
Geoff Langbfdea662014-07-23 14:16:32 -04001742 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001743 }
Geoff Langbfdea662014-07-23 14:16:32 -04001744
1745 gl::Context *context = gl::getNonLostContext();
1746
1747 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001748 {
Geoff Langbfdea662014-07-23 14:16:32 -04001749 for (int i = 0; i < n; i++)
1750 {
1751 textures[i] = context->createTexture();
1752 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001753 }
1754}
1755
daniel@transgaming.com85423182010-04-22 13:35:27 +00001756void __stdcall glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, GLchar *name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001757{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001758 EVENT("(GLuint program = %d, GLuint index = %d, GLsizei bufsize = %d, GLsizei *length = 0x%0.8p, "
daniel@transgaming.com85423182010-04-22 13:35:27 +00001759 "GLint *size = 0x%0.8p, GLenum *type = %0.8p, GLchar *name = %0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001760 program, index, bufsize, length, size, type, name);
1761
Geoff Langbfdea662014-07-23 14:16:32 -04001762 if (bufsize < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001763 {
Geoff Langbfdea662014-07-23 14:16:32 -04001764 return gl::error(GL_INVALID_VALUE);
1765 }
1766
1767 gl::Context *context = gl::getNonLostContext();
1768
1769 if (context)
1770 {
1771 gl::Program *programObject = context->getProgram(program);
1772
1773 if (!programObject)
1774 {
1775 if (context->getShader(program))
1776 {
1777 return gl::error(GL_INVALID_OPERATION);
1778 }
1779 else
1780 {
1781 return gl::error(GL_INVALID_VALUE);
1782 }
1783 }
1784
1785 if (index >= (GLuint)programObject->getActiveAttributeCount())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001786 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00001787 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001788 }
1789
Geoff Langbfdea662014-07-23 14:16:32 -04001790 programObject->getActiveAttribute(index, bufsize, length, size, type, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001791 }
1792}
1793
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00001794void __stdcall glGetActiveUniform(GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001795{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001796 EVENT("(GLuint program = %d, GLuint index = %d, GLsizei bufsize = %d, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00001797 "GLsizei* length = 0x%0.8p, GLint* size = 0x%0.8p, GLenum* type = 0x%0.8p, GLchar* name = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001798 program, index, bufsize, length, size, type, name);
1799
Geoff Langbfdea662014-07-23 14:16:32 -04001800 if (bufsize < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001801 {
Geoff Langbfdea662014-07-23 14:16:32 -04001802 return gl::error(GL_INVALID_VALUE);
1803 }
1804
1805 gl::Context *context = gl::getNonLostContext();
1806
1807 if (context)
1808 {
1809 gl::Program *programObject = context->getProgram(program);
1810
1811 if (!programObject)
1812 {
1813 if (context->getShader(program))
1814 {
1815 return gl::error(GL_INVALID_OPERATION);
1816 }
1817 else
1818 {
1819 return gl::error(GL_INVALID_VALUE);
1820 }
1821 }
1822
1823 if (index >= (GLuint)programObject->getActiveUniformCount())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001824 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00001825 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001826 }
1827
Geoff Langbfdea662014-07-23 14:16:32 -04001828 programObject->getActiveUniform(index, bufsize, length, size, type, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001829 }
1830}
1831
1832void __stdcall glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders)
1833{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001834 EVENT("(GLuint program = %d, GLsizei maxcount = %d, GLsizei* count = 0x%0.8p, GLuint* shaders = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00001835 program, maxcount, count, shaders);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001836
Geoff Langbfdea662014-07-23 14:16:32 -04001837 if (maxcount < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001838 {
Geoff Langbfdea662014-07-23 14:16:32 -04001839 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001840 }
Geoff Langbfdea662014-07-23 14:16:32 -04001841
1842 gl::Context *context = gl::getNonLostContext();
1843
1844 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001845 {
Geoff Langbfdea662014-07-23 14:16:32 -04001846 gl::Program *programObject = context->getProgram(program);
1847
1848 if (!programObject)
1849 {
1850 if (context->getShader(program))
1851 {
1852 return gl::error(GL_INVALID_OPERATION);
1853 }
1854 else
1855 {
1856 return gl::error(GL_INVALID_VALUE);
1857 }
1858 }
1859
1860 return programObject->getAttachedShaders(maxcount, count, shaders);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001861 }
1862}
1863
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00001864int __stdcall glGetAttribLocation(GLuint program, const GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001865{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001866 EVENT("(GLuint program = %d, const GLchar* name = %s)", program, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001867
Geoff Langbfdea662014-07-23 14:16:32 -04001868 gl::Context *context = gl::getNonLostContext();
1869
1870 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001871 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001872
Geoff Langbfdea662014-07-23 14:16:32 -04001873 gl::Program *programObject = context->getProgram(program);
1874
1875 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001876 {
Geoff Langbfdea662014-07-23 14:16:32 -04001877 if (context->getShader(program))
daniel@transgaming.comcf4aa872010-04-13 03:26:27 +00001878 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00001879 return gl::error(GL_INVALID_OPERATION, -1);
daniel@transgaming.comcf4aa872010-04-13 03:26:27 +00001880 }
Geoff Langbfdea662014-07-23 14:16:32 -04001881 else
1882 {
1883 return gl::error(GL_INVALID_VALUE, -1);
1884 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001885 }
Geoff Langbfdea662014-07-23 14:16:32 -04001886
1887 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
1888 if (!programObject->isLinked() || !programBinary)
1889 {
1890 return gl::error(GL_INVALID_OPERATION, -1);
1891 }
1892
1893 return programBinary->getAttributeLocation(name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001894 }
1895
1896 return -1;
1897}
1898
1899void __stdcall glGetBooleanv(GLenum pname, GLboolean* params)
1900{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001901 EVENT("(GLenum pname = 0x%X, GLboolean* params = 0x%0.8p)", pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001902
Geoff Langbfdea662014-07-23 14:16:32 -04001903 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com777f2672010-04-07 03:25:16 +00001904
Geoff Langbfdea662014-07-23 14:16:32 -04001905 if (context)
1906 {
1907 GLenum nativeType;
1908 unsigned int numParams = 0;
1909 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001910 {
Geoff Langbfdea662014-07-23 14:16:32 -04001911 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001912 }
Geoff Langbfdea662014-07-23 14:16:32 -04001913
1914 if (nativeType == GL_BOOL)
1915 {
1916 context->getBooleanv(pname, params);
1917 }
1918 else
1919 {
1920 CastStateValues(context, nativeType, pname, numParams, params);
1921 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001922 }
1923}
1924
1925void __stdcall glGetBufferParameteriv(GLenum target, GLenum pname, GLint* params)
1926{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001927 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", target, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001928
Geoff Langbfdea662014-07-23 14:16:32 -04001929 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.comaa0ccbd2010-04-15 20:45:05 +00001930
Geoff Langbfdea662014-07-23 14:16:32 -04001931 if (context)
1932 {
1933 if (!gl::ValidBufferTarget(context, target))
daniel@transgaming.comaa0ccbd2010-04-15 20:45:05 +00001934 {
Geoff Langbfdea662014-07-23 14:16:32 -04001935 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.comaa0ccbd2010-04-15 20:45:05 +00001936 }
Geoff Langbfdea662014-07-23 14:16:32 -04001937
1938 if (!gl::ValidBufferParameter(context, pname))
1939 {
1940 return gl::error(GL_INVALID_ENUM);
1941 }
1942
1943 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
1944
1945 if (!buffer)
1946 {
1947 // A null buffer means that "0" is bound to the requested buffer target
1948 return gl::error(GL_INVALID_OPERATION);
1949 }
1950
1951 switch (pname)
1952 {
1953 case GL_BUFFER_USAGE:
1954 *params = static_cast<GLint>(buffer->getUsage());
1955 break;
1956 case GL_BUFFER_SIZE:
1957 *params = gl::clampCast<GLint>(buffer->getSize());
1958 break;
1959 case GL_BUFFER_ACCESS_FLAGS:
1960 *params = buffer->getAccessFlags();
1961 break;
1962 case GL_BUFFER_MAPPED:
1963 *params = static_cast<GLint>(buffer->isMapped());
1964 break;
1965 case GL_BUFFER_MAP_OFFSET:
1966 *params = gl::clampCast<GLint>(buffer->getMapOffset());
1967 break;
1968 case GL_BUFFER_MAP_LENGTH:
1969 *params = gl::clampCast<GLint>(buffer->getMapLength());
1970 break;
1971 default: UNREACHABLE(); break;
1972 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001973 }
1974}
1975
1976GLenum __stdcall glGetError(void)
1977{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001978 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001979
1980 gl::Context *context = gl::getContext();
1981
1982 if (context)
1983 {
daniel@transgaming.com82b28912011-12-12 21:01:35 +00001984 return context->getError();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001985 }
1986
1987 return GL_NO_ERROR;
1988}
1989
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001990void __stdcall glGetFenceivNV(GLuint fence, GLenum pname, GLint *params)
1991{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001992 EVENT("(GLuint fence = %d, GLenum pname = 0x%X, GLint *params = 0x%0.8p)", fence, pname, params);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001993
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001994
Geoff Langbfdea662014-07-23 14:16:32 -04001995 gl::Context *context = gl::getNonLostContext();
1996
1997 if (context)
1998 {
1999 gl::FenceNV *fenceObject = context->getFenceNV(fence);
2000
2001 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002002 {
Geoff Langbfdea662014-07-23 14:16:32 -04002003 return gl::error(GL_INVALID_OPERATION);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002004 }
Geoff Langbfdea662014-07-23 14:16:32 -04002005
2006 if (fenceObject->isFence() != GL_TRUE)
2007 {
2008 return gl::error(GL_INVALID_OPERATION);
2009 }
2010
2011 switch (pname)
2012 {
2013 case GL_FENCE_STATUS_NV:
2014 case GL_FENCE_CONDITION_NV:
2015 break;
2016
2017 default: return gl::error(GL_INVALID_ENUM);
2018 }
2019
2020 params[0] = fenceObject->getFencei(pname);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002021 }
2022}
2023
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002024void __stdcall glGetFloatv(GLenum pname, GLfloat* params)
2025{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002026 EVENT("(GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002027
Geoff Langbfdea662014-07-23 14:16:32 -04002028 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com32e58cd2010-03-24 09:44:10 +00002029
Geoff Langbfdea662014-07-23 14:16:32 -04002030 if (context)
2031 {
2032 GLenum nativeType;
2033 unsigned int numParams = 0;
2034 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
daniel@transgaming.com32e58cd2010-03-24 09:44:10 +00002035 {
Geoff Langbfdea662014-07-23 14:16:32 -04002036 return;
daniel@transgaming.com32e58cd2010-03-24 09:44:10 +00002037 }
Geoff Langbfdea662014-07-23 14:16:32 -04002038
2039 if (nativeType == GL_FLOAT)
2040 {
2041 context->getFloatv(pname, params);
2042 }
2043 else
2044 {
2045 CastStateValues(context, nativeType, pname, numParams, params);
2046 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002047 }
2048}
2049
2050void __stdcall glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint* params)
2051{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002052 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00002053 target, attachment, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002054
Geoff Langbfdea662014-07-23 14:16:32 -04002055 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002056
Geoff Langbfdea662014-07-23 14:16:32 -04002057 if (context)
2058 {
2059 if (!gl::ValidFramebufferTarget(target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002060 {
Geoff Langbfdea662014-07-23 14:16:32 -04002061 return gl::error(GL_INVALID_ENUM);
2062 }
2063
2064 int clientVersion = context->getClientVersion();
2065
2066 switch (pname)
2067 {
2068 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
2069 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:
2070 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:
2071 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:
2072 break;
2073 case GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:
2074 if (clientVersion < 3 && !context->getExtensions().sRGB)
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002075 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00002076 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002077 }
Geoff Langbfdea662014-07-23 14:16:32 -04002078 break;
2079 case GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE:
2080 case GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:
2081 case GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:
2082 case GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:
2083 case GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:
2084 case GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:
2085 case GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:
2086 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:
2087 if (clientVersion < 3)
2088 {
2089 return gl::error(GL_INVALID_ENUM);
2090 }
2091 break;
2092 default:
2093 return gl::error(GL_INVALID_ENUM);
2094 }
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002095
Geoff Langbfdea662014-07-23 14:16:32 -04002096 // Determine if the attachment is a valid enum
2097 switch (attachment)
2098 {
2099 case GL_BACK:
2100 case GL_FRONT:
2101 case GL_DEPTH:
2102 case GL_STENCIL:
2103 case GL_DEPTH_STENCIL_ATTACHMENT:
2104 if (clientVersion < 3)
2105 {
2106 return gl::error(GL_INVALID_ENUM);
2107 }
2108 break;
2109
2110 case GL_DEPTH_ATTACHMENT:
2111 case GL_STENCIL_ATTACHMENT:
2112 break;
2113
2114 default:
2115 if (attachment < GL_COLOR_ATTACHMENT0_EXT ||
2116 (attachment - GL_COLOR_ATTACHMENT0_EXT) >= context->getCaps().maxColorAttachments)
2117 {
2118 return gl::error(GL_INVALID_ENUM);
2119 }
2120 break;
2121 }
2122
2123 GLuint framebufferHandle = context->getState().getTargetFramebuffer(target)->id();
2124 gl::Framebuffer *framebuffer = context->getFramebuffer(framebufferHandle);
2125
2126 if (framebufferHandle == 0)
2127 {
2128 if (clientVersion < 3)
2129 {
2130 return gl::error(GL_INVALID_OPERATION);
2131 }
2132
2133 switch (attachment)
2134 {
2135 case GL_BACK:
2136 case GL_DEPTH:
2137 case GL_STENCIL:
2138 break;
2139 default:
2140 return gl::error(GL_INVALID_OPERATION);
2141 }
2142 }
2143 else
2144 {
2145 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
2146 {
2147 // Valid attachment query
2148 }
2149 else
2150 {
2151 switch (attachment)
2152 {
2153 case GL_DEPTH_ATTACHMENT:
2154 case GL_STENCIL_ATTACHMENT:
2155 break;
2156 case GL_DEPTH_STENCIL_ATTACHMENT:
2157 if (framebuffer->hasValidDepthStencil())
2158 {
2159 return gl::error(GL_INVALID_OPERATION);
2160 }
2161 break;
2162 default:
2163 return gl::error(GL_INVALID_OPERATION);
2164 }
2165 }
2166 }
2167
2168 GLenum attachmentType = GL_NONE;
2169 GLuint attachmentHandle = 0;
2170 GLuint attachmentLevel = 0;
2171 GLuint attachmentLayer = 0;
2172
2173 const gl::FramebufferAttachment *attachmentObject = framebuffer->getAttachment(attachment);
2174
2175 if (attachmentObject)
2176 {
2177 attachmentType = attachmentObject->type();
2178 attachmentHandle = attachmentObject->id();
2179 attachmentLevel = attachmentObject->mipLevel();
2180 attachmentLayer = attachmentObject->layer();
2181 }
2182
2183 GLenum attachmentObjectType; // Type category
2184 if (framebufferHandle == 0)
2185 {
2186 attachmentObjectType = GL_FRAMEBUFFER_DEFAULT;
2187 }
2188 else if (attachmentType == GL_NONE || attachmentType == GL_RENDERBUFFER)
2189 {
2190 attachmentObjectType = attachmentType;
2191 }
2192 else if (gl::ValidTexture2DDestinationTarget(context, attachmentType))
2193 {
2194 attachmentObjectType = GL_TEXTURE;
2195 }
2196 else
2197 {
2198 UNREACHABLE();
2199 return;
2200 }
2201
2202 if (attachmentObjectType == GL_NONE)
2203 {
2204 // ES 2.0.25 spec pg 127 states that if the value of FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE
2205 // is NONE, then querying any other pname will generate INVALID_ENUM.
2206
2207 // ES 3.0.2 spec pg 235 states that if the attachment type is none,
2208 // GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME will return zero and be an
2209 // INVALID_OPERATION for all other pnames
Jamie Madill1e3fa742014-06-16 10:34:00 -04002210
Geoff Lang646559f2013-08-15 11:08:15 -04002211 switch (pname)
daniel@transgaming.coma27ff1e2010-08-24 19:20:11 +00002212 {
Geoff Lang646559f2013-08-15 11:08:15 -04002213 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
Geoff Langbfdea662014-07-23 14:16:32 -04002214 *params = attachmentObjectType;
2215 break;
2216
Geoff Lang646559f2013-08-15 11:08:15 -04002217 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:
Geoff Lang05b05022014-06-11 15:31:45 -04002218 if (clientVersion < 3)
daniel@transgaming.coma27ff1e2010-08-24 19:20:11 +00002219 {
Geoff Lang05b05022014-06-11 15:31:45 -04002220 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.coma27ff1e2010-08-24 19:20:11 +00002221 }
Geoff Langbfdea662014-07-23 14:16:32 -04002222 *params = 0;
Geoff Lang646559f2013-08-15 11:08:15 -04002223 break;
2224
2225 default:
Jamie Madill1e3fa742014-06-16 10:34:00 -04002226 if (clientVersion < 3)
shannon.woods%transgaming.com@gtempaccount.com89ae1132013-04-13 03:28:43 +00002227 {
Geoff Langbfdea662014-07-23 14:16:32 -04002228 return gl::error(GL_INVALID_ENUM);
Geoff Lang646559f2013-08-15 11:08:15 -04002229 }
2230 else
2231 {
Geoff Langbfdea662014-07-23 14:16:32 -04002232 gl::error(GL_INVALID_OPERATION);
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002233 }
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002234 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002235 }
Geoff Langbfdea662014-07-23 14:16:32 -04002236 else
2237 {
2238 ASSERT(attachmentObjectType == GL_RENDERBUFFER || attachmentObjectType == GL_TEXTURE ||
2239 attachmentObjectType == GL_FRAMEBUFFER_DEFAULT);
2240 ASSERT(attachmentObject != NULL);
2241
2242 switch (pname)
2243 {
2244 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
2245 *params = attachmentObjectType;
2246 break;
2247
2248 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:
2249 if (attachmentObjectType != GL_RENDERBUFFER && attachmentObjectType != GL_TEXTURE)
2250 {
2251 return gl::error(GL_INVALID_ENUM);
2252 }
2253 *params = attachmentHandle;
2254 break;
2255
2256 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:
2257 if (attachmentObjectType != GL_TEXTURE)
2258 {
2259 return gl::error(GL_INVALID_ENUM);
2260 }
2261 *params = attachmentLevel;
2262 break;
2263
2264 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:
2265 if (attachmentObjectType != GL_TEXTURE)
2266 {
2267 return gl::error(GL_INVALID_ENUM);
2268 }
2269 *params = gl::IsCubemapTextureTarget(attachmentType) ? attachmentType : 0;
2270 break;
2271
2272 case GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE:
2273 *params = attachmentObject->getRedSize();
2274 break;
2275
2276 case GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:
2277 *params = attachmentObject->getGreenSize();
2278 break;
2279
2280 case GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:
2281 *params = attachmentObject->getBlueSize();
2282 break;
2283
2284 case GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:
2285 *params = attachmentObject->getAlphaSize();
2286 break;
2287
2288 case GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:
2289 *params = attachmentObject->getDepthSize();
2290 break;
2291
2292 case GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:
2293 *params = attachmentObject->getStencilSize();
2294 break;
2295
2296 case GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:
2297 if (attachment == GL_DEPTH_STENCIL)
2298 {
2299 gl::error(GL_INVALID_OPERATION);
2300 }
2301 *params = attachmentObject->getComponentType();
2302 break;
2303
2304 case GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:
2305 *params = attachmentObject->getColorEncoding();
2306 break;
2307
2308 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:
2309 if (attachmentObjectType != GL_TEXTURE)
2310 {
2311 return gl::error(GL_INVALID_ENUM);
2312 }
2313 *params = attachmentLayer;
2314 break;
2315
2316 default:
2317 UNREACHABLE();
2318 break;
2319 }
2320 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002321 }
2322}
2323
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002324GLenum __stdcall glGetGraphicsResetStatusEXT(void)
2325{
2326 EVENT("()");
2327
Geoff Langbfdea662014-07-23 14:16:32 -04002328 gl::Context *context = gl::getContext();
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002329
Geoff Langbfdea662014-07-23 14:16:32 -04002330 if (context)
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002331 {
Geoff Langbfdea662014-07-23 14:16:32 -04002332 return context->getResetStatus();
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002333 }
Geoff Langbfdea662014-07-23 14:16:32 -04002334
2335 return GL_NO_ERROR;
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002336}
2337
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002338void __stdcall glGetIntegerv(GLenum pname, GLint* params)
2339{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002340 EVENT("(GLenum pname = 0x%X, GLint* params = 0x%0.8p)", pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002341
Geoff Langbfdea662014-07-23 14:16:32 -04002342 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002343
Geoff Langbfdea662014-07-23 14:16:32 -04002344 if (context)
2345 {
2346 GLenum nativeType;
2347 unsigned int numParams = 0;
2348
2349 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002350 {
Geoff Langbfdea662014-07-23 14:16:32 -04002351 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002352 }
Geoff Langbfdea662014-07-23 14:16:32 -04002353
2354 if (nativeType == GL_INT)
2355 {
2356 context->getIntegerv(pname, params);
2357 }
2358 else
2359 {
2360 CastStateValues(context, nativeType, pname, numParams, params);
2361 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002362 }
2363}
2364
2365void __stdcall glGetProgramiv(GLuint program, GLenum pname, GLint* params)
2366{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002367 EVENT("(GLuint program = %d, GLenum pname = %d, GLint* params = 0x%0.8p)", program, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002368
Geoff Langbfdea662014-07-23 14:16:32 -04002369 gl::Context *context = gl::getNonLostContext();
2370
2371 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002372 {
Geoff Langbfdea662014-07-23 14:16:32 -04002373 gl::Program *programObject = context->getProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002374
Geoff Langbfdea662014-07-23 14:16:32 -04002375 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002376 {
Geoff Langbfdea662014-07-23 14:16:32 -04002377 return gl::error(GL_INVALID_VALUE);
2378 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002379
Geoff Langbfdea662014-07-23 14:16:32 -04002380 if (context->getClientVersion() < 3)
2381 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002382 switch (pname)
2383 {
shannonwoods@chromium.orge684b582013-05-30 00:07:42 +00002384 case GL_ACTIVE_UNIFORM_BLOCKS:
shannonwoods@chromium.orge684b582013-05-30 00:07:42 +00002385 case GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH:
Geoff Lang1b6edcb2014-02-03 14:27:56 -05002386 case GL_TRANSFORM_FEEDBACK_BUFFER_MODE:
Geoff Lang1b6edcb2014-02-03 14:27:56 -05002387 case GL_TRANSFORM_FEEDBACK_VARYINGS:
Geoff Lang1b6edcb2014-02-03 14:27:56 -05002388 case GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH:
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00002389 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002390 }
2391 }
Geoff Langbfdea662014-07-23 14:16:32 -04002392
2393 switch (pname)
2394 {
2395 case GL_DELETE_STATUS:
2396 *params = programObject->isFlaggedForDeletion();
2397 return;
2398 case GL_LINK_STATUS:
2399 *params = programObject->isLinked();
2400 return;
2401 case GL_VALIDATE_STATUS:
2402 *params = programObject->isValidated();
2403 return;
2404 case GL_INFO_LOG_LENGTH:
2405 *params = programObject->getInfoLogLength();
2406 return;
2407 case GL_ATTACHED_SHADERS:
2408 *params = programObject->getAttachedShadersCount();
2409 return;
2410 case GL_ACTIVE_ATTRIBUTES:
2411 *params = programObject->getActiveAttributeCount();
2412 return;
2413 case GL_ACTIVE_ATTRIBUTE_MAX_LENGTH:
2414 *params = programObject->getActiveAttributeMaxLength();
2415 return;
2416 case GL_ACTIVE_UNIFORMS:
2417 *params = programObject->getActiveUniformCount();
2418 return;
2419 case GL_ACTIVE_UNIFORM_MAX_LENGTH:
2420 *params = programObject->getActiveUniformMaxLength();
2421 return;
2422 case GL_PROGRAM_BINARY_LENGTH_OES:
2423 *params = programObject->getProgramBinaryLength();
2424 return;
2425 case GL_ACTIVE_UNIFORM_BLOCKS:
2426 *params = programObject->getActiveUniformBlockCount();
2427 return;
2428 case GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH:
2429 *params = programObject->getActiveUniformBlockMaxLength();
2430 break;
2431 case GL_TRANSFORM_FEEDBACK_BUFFER_MODE:
2432 *params = programObject->getTransformFeedbackBufferMode();
2433 break;
2434 case GL_TRANSFORM_FEEDBACK_VARYINGS:
2435 *params = programObject->getTransformFeedbackVaryingCount();
2436 break;
2437 case GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH:
2438 *params = programObject->getTransformFeedbackVaryingMaxLength();
2439 break;
2440 default:
2441 return gl::error(GL_INVALID_ENUM);
2442 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002443 }
2444}
2445
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00002446void __stdcall glGetProgramInfoLog(GLuint program, GLsizei bufsize, GLsizei* length, GLchar* infolog)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002447{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002448 EVENT("(GLuint program = %d, GLsizei bufsize = %d, GLsizei* length = 0x%0.8p, GLchar* infolog = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00002449 program, bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002450
Geoff Langbfdea662014-07-23 14:16:32 -04002451 if (bufsize < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002452 {
Geoff Langbfdea662014-07-23 14:16:32 -04002453 return gl::error(GL_INVALID_VALUE);
2454 }
2455
2456 gl::Context *context = gl::getNonLostContext();
2457
2458 if (context)
2459 {
2460 gl::Program *programObject = context->getProgram(program);
2461
2462 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002463 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00002464 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002465 }
2466
Geoff Langbfdea662014-07-23 14:16:32 -04002467 programObject->getInfoLog(bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002468 }
2469}
2470
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002471void __stdcall glGetQueryivEXT(GLenum target, GLenum pname, GLint *params)
2472{
2473 EVENT("GLenum target = 0x%X, GLenum pname = 0x%X, GLint *params = 0x%0.8p)", target, pname, params);
2474
Geoff Langbfdea662014-07-23 14:16:32 -04002475 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002476
Geoff Langbfdea662014-07-23 14:16:32 -04002477 if (context)
2478 {
2479 if (!ValidQueryType(context, target))
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002480 {
Geoff Langbfdea662014-07-23 14:16:32 -04002481 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002482 }
Geoff Langbfdea662014-07-23 14:16:32 -04002483
2484 switch (pname)
2485 {
2486 case GL_CURRENT_QUERY_EXT:
2487 params[0] = context->getState().getActiveQueryId(target);
2488 break;
2489
2490 default:
2491 return gl::error(GL_INVALID_ENUM);
2492 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002493 }
2494}
2495
2496void __stdcall glGetQueryObjectuivEXT(GLuint id, GLenum pname, GLuint *params)
2497{
2498 EVENT("(GLuint id = %d, GLenum pname = 0x%X, GLuint *params = 0x%0.8p)", id, pname, params);
2499
Geoff Langbfdea662014-07-23 14:16:32 -04002500 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002501
Geoff Langbfdea662014-07-23 14:16:32 -04002502 if (context)
2503 {
2504 gl::Query *queryObject = context->getQuery(id, false, GL_NONE);
2505
2506 if (!queryObject)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002507 {
Geoff Langbfdea662014-07-23 14:16:32 -04002508 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002509 }
Geoff Langbfdea662014-07-23 14:16:32 -04002510
2511 if (context->getState().getActiveQueryId(queryObject->getType()) == id)
2512 {
2513 return gl::error(GL_INVALID_OPERATION);
2514 }
2515
2516 switch(pname)
2517 {
2518 case GL_QUERY_RESULT_EXT:
2519 params[0] = queryObject->getResult();
2520 break;
2521 case GL_QUERY_RESULT_AVAILABLE_EXT:
2522 params[0] = queryObject->isResultAvailable();
2523 break;
2524 default:
2525 return gl::error(GL_INVALID_ENUM);
2526 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002527 }
2528}
2529
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002530void __stdcall glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint* params)
2531{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002532 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", target, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002533
Geoff Langbfdea662014-07-23 14:16:32 -04002534 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4901fca2010-04-20 18:52:41 +00002535
Geoff Langbfdea662014-07-23 14:16:32 -04002536 if (context)
2537 {
2538 if (target != GL_RENDERBUFFER)
daniel@transgaming.com4901fca2010-04-20 18:52:41 +00002539 {
Geoff Langbfdea662014-07-23 14:16:32 -04002540 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4901fca2010-04-20 18:52:41 +00002541 }
Geoff Langbfdea662014-07-23 14:16:32 -04002542
2543 if (context->getState().getRenderbufferId() == 0)
2544 {
2545 return gl::error(GL_INVALID_OPERATION);
2546 }
2547
2548 gl::Renderbuffer *renderbuffer = context->getRenderbuffer(context->getState().getRenderbufferId());
2549
2550 switch (pname)
2551 {
2552 case GL_RENDERBUFFER_WIDTH: *params = renderbuffer->getWidth(); break;
2553 case GL_RENDERBUFFER_HEIGHT: *params = renderbuffer->getHeight(); break;
2554 case GL_RENDERBUFFER_INTERNAL_FORMAT: *params = renderbuffer->getInternalFormat(); break;
2555 case GL_RENDERBUFFER_RED_SIZE: *params = renderbuffer->getRedSize(); break;
2556 case GL_RENDERBUFFER_GREEN_SIZE: *params = renderbuffer->getGreenSize(); break;
2557 case GL_RENDERBUFFER_BLUE_SIZE: *params = renderbuffer->getBlueSize(); break;
2558 case GL_RENDERBUFFER_ALPHA_SIZE: *params = renderbuffer->getAlphaSize(); break;
2559 case GL_RENDERBUFFER_DEPTH_SIZE: *params = renderbuffer->getDepthSize(); break;
2560 case GL_RENDERBUFFER_STENCIL_SIZE: *params = renderbuffer->getStencilSize(); break;
2561 case GL_RENDERBUFFER_SAMPLES_ANGLE:
2562 if (!context->getExtensions().framebufferMultisample)
2563 {
2564 return gl::error(GL_INVALID_ENUM);
2565 }
2566 *params = renderbuffer->getSamples();
2567 break;
2568 default:
2569 return gl::error(GL_INVALID_ENUM);
2570 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002571 }
2572}
2573
2574void __stdcall glGetShaderiv(GLuint shader, GLenum pname, GLint* params)
2575{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002576 EVENT("(GLuint shader = %d, GLenum pname = %d, GLint* params = 0x%0.8p)", shader, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002577
Geoff Langbfdea662014-07-23 14:16:32 -04002578 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002579
Geoff Langbfdea662014-07-23 14:16:32 -04002580 if (context)
2581 {
2582 gl::Shader *shaderObject = context->getShader(shader);
2583
2584 if (!shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002585 {
Geoff Langbfdea662014-07-23 14:16:32 -04002586 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002587 }
Geoff Langbfdea662014-07-23 14:16:32 -04002588
2589 switch (pname)
2590 {
2591 case GL_SHADER_TYPE:
2592 *params = shaderObject->getType();
2593 return;
2594 case GL_DELETE_STATUS:
2595 *params = shaderObject->isFlaggedForDeletion();
2596 return;
2597 case GL_COMPILE_STATUS:
2598 *params = shaderObject->isCompiled() ? GL_TRUE : GL_FALSE;
2599 return;
2600 case GL_INFO_LOG_LENGTH:
2601 *params = shaderObject->getInfoLogLength();
2602 return;
2603 case GL_SHADER_SOURCE_LENGTH:
2604 *params = shaderObject->getSourceLength();
2605 return;
2606 case GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE:
2607 *params = shaderObject->getTranslatedSourceLength();
2608 return;
2609 default:
2610 return gl::error(GL_INVALID_ENUM);
2611 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002612 }
2613}
2614
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00002615void __stdcall glGetShaderInfoLog(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* infolog)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002616{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002617 EVENT("(GLuint shader = %d, GLsizei bufsize = %d, GLsizei* length = 0x%0.8p, GLchar* infolog = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00002618 shader, bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002619
Geoff Langbfdea662014-07-23 14:16:32 -04002620 if (bufsize < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002621 {
Geoff Langbfdea662014-07-23 14:16:32 -04002622 return gl::error(GL_INVALID_VALUE);
2623 }
2624
2625 gl::Context *context = gl::getNonLostContext();
2626
2627 if (context)
2628 {
2629 gl::Shader *shaderObject = context->getShader(shader);
2630
2631 if (!shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002632 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00002633 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002634 }
2635
Geoff Langbfdea662014-07-23 14:16:32 -04002636 shaderObject->getInfoLog(bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002637 }
2638}
2639
2640void __stdcall glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision)
2641{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002642 EVENT("(GLenum shadertype = 0x%X, GLenum precisiontype = 0x%X, GLint* range = 0x%0.8p, GLint* precision = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00002643 shadertype, precisiontype, range, precision);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002644
Geoff Langbfdea662014-07-23 14:16:32 -04002645 switch (shadertype)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002646 {
Geoff Langbfdea662014-07-23 14:16:32 -04002647 case GL_VERTEX_SHADER:
2648 case GL_FRAGMENT_SHADER:
2649 break;
2650 default:
2651 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002652 }
Geoff Langbfdea662014-07-23 14:16:32 -04002653
2654 switch (precisiontype)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002655 {
Geoff Langbfdea662014-07-23 14:16:32 -04002656 case GL_LOW_FLOAT:
2657 case GL_MEDIUM_FLOAT:
2658 case GL_HIGH_FLOAT:
2659 // Assume IEEE 754 precision
2660 range[0] = 127;
2661 range[1] = 127;
2662 *precision = 23;
2663 break;
2664 case GL_LOW_INT:
2665 case GL_MEDIUM_INT:
2666 case GL_HIGH_INT:
2667 // Some (most) hardware only supports single-precision floating-point numbers,
2668 // which can accurately represent integers up to +/-16777216
2669 range[0] = 24;
2670 range[1] = 24;
2671 *precision = 0;
2672 break;
2673 default:
2674 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002675 }
2676}
2677
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00002678void __stdcall glGetShaderSource(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002679{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002680 EVENT("(GLuint shader = %d, GLsizei bufsize = %d, GLsizei* length = 0x%0.8p, GLchar* source = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00002681 shader, bufsize, length, source);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002682
Geoff Langbfdea662014-07-23 14:16:32 -04002683 if (bufsize < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002684 {
Geoff Langbfdea662014-07-23 14:16:32 -04002685 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002686 }
Geoff Langbfdea662014-07-23 14:16:32 -04002687
2688 gl::Context *context = gl::getNonLostContext();
2689
2690 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002691 {
Geoff Langbfdea662014-07-23 14:16:32 -04002692 gl::Shader *shaderObject = context->getShader(shader);
2693
2694 if (!shaderObject)
2695 {
2696 return gl::error(GL_INVALID_OPERATION);
2697 }
2698
2699 shaderObject->getSource(bufsize, length, source);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002700 }
2701}
2702
zmo@google.coma574f782011-10-03 21:45:23 +00002703void __stdcall glGetTranslatedShaderSourceANGLE(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source)
2704{
2705 EVENT("(GLuint shader = %d, GLsizei bufsize = %d, GLsizei* length = 0x%0.8p, GLchar* source = 0x%0.8p)",
2706 shader, bufsize, length, source);
2707
Geoff Langbfdea662014-07-23 14:16:32 -04002708 if (bufsize < 0)
zmo@google.coma574f782011-10-03 21:45:23 +00002709 {
Geoff Langbfdea662014-07-23 14:16:32 -04002710 return gl::error(GL_INVALID_VALUE);
zmo@google.coma574f782011-10-03 21:45:23 +00002711 }
Geoff Langbfdea662014-07-23 14:16:32 -04002712
2713 gl::Context *context = gl::getNonLostContext();
2714
2715 if (context)
zmo@google.coma574f782011-10-03 21:45:23 +00002716 {
Geoff Langbfdea662014-07-23 14:16:32 -04002717 gl::Shader *shaderObject = context->getShader(shader);
2718
2719 if (!shaderObject)
2720 {
2721 return gl::error(GL_INVALID_OPERATION);
2722 }
2723
2724 shaderObject->getTranslatedSource(bufsize, length, source);
zmo@google.coma574f782011-10-03 21:45:23 +00002725 }
2726}
2727
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002728const GLubyte* __stdcall glGetString(GLenum name)
2729{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002730 EVENT("(GLenum name = 0x%X)", name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002731
Geoff Langbfdea662014-07-23 14:16:32 -04002732 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com3e4c6002010-05-05 18:50:13 +00002733
Geoff Langbfdea662014-07-23 14:16:32 -04002734 switch (name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002735 {
Geoff Langbfdea662014-07-23 14:16:32 -04002736 case GL_VENDOR:
2737 return (GLubyte*)"Google Inc.";
2738 case GL_RENDERER:
2739 return (GLubyte*)((context != NULL) ? context->getRendererString().c_str() : "ANGLE");
2740 case GL_VERSION:
2741 if (context->getClientVersion() == 2)
2742 {
2743 return (GLubyte*)"OpenGL ES 2.0 (ANGLE " ANGLE_VERSION_STRING ")";
2744 }
2745 else
2746 {
2747 return (GLubyte*)"OpenGL ES 3.0 (ANGLE " ANGLE_VERSION_STRING ")";
2748 }
2749 case GL_SHADING_LANGUAGE_VERSION:
2750 if (context->getClientVersion() == 2)
2751 {
2752 return (GLubyte*)"OpenGL ES GLSL ES 1.00 (ANGLE " ANGLE_VERSION_STRING ")";
2753 }
2754 else
2755 {
2756 return (GLubyte*)"OpenGL ES GLSL ES 3.00 (ANGLE " ANGLE_VERSION_STRING ")";
2757 }
2758 case GL_EXTENSIONS:
2759 return (GLubyte*)((context != NULL) ? context->getExtensionString().c_str() : "");
2760 default:
2761 return gl::error(GL_INVALID_ENUM, (GLubyte*)NULL);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002762 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002763}
2764
2765void __stdcall glGetTexParameterfv(GLenum target, GLenum pname, GLfloat* params)
2766{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002767 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", target, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002768
Geoff Langbfdea662014-07-23 14:16:32 -04002769 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002770
Geoff Langbfdea662014-07-23 14:16:32 -04002771 if (context)
2772 {
2773 gl::Texture *texture = context->getTargetTexture(target);
2774
2775 if (!texture)
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002776 {
Geoff Langbfdea662014-07-23 14:16:32 -04002777 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002778 }
Geoff Langbfdea662014-07-23 14:16:32 -04002779
2780 switch (pname)
2781 {
2782 case GL_TEXTURE_MAG_FILTER:
2783 *params = (GLfloat)texture->getSamplerState().magFilter;
2784 break;
2785 case GL_TEXTURE_MIN_FILTER:
2786 *params = (GLfloat)texture->getSamplerState().minFilter;
2787 break;
2788 case GL_TEXTURE_WRAP_S:
2789 *params = (GLfloat)texture->getSamplerState().wrapS;
2790 break;
2791 case GL_TEXTURE_WRAP_T:
2792 *params = (GLfloat)texture->getSamplerState().wrapT;
2793 break;
2794 case GL_TEXTURE_WRAP_R:
2795 if (context->getClientVersion() < 3)
2796 {
2797 return gl::error(GL_INVALID_ENUM);
2798 }
2799 *params = (GLfloat)texture->getSamplerState().wrapR;
2800 break;
2801 case GL_TEXTURE_IMMUTABLE_FORMAT:
2802 // Exposed to ES2.0 through EXT_texture_storage, no client version validation.
2803 *params = (GLfloat)(texture->isImmutable() ? GL_TRUE : GL_FALSE);
2804 break;
2805 case GL_TEXTURE_IMMUTABLE_LEVELS:
2806 if (context->getClientVersion() < 3)
2807 {
2808 return gl::error(GL_INVALID_ENUM);
2809 }
2810 *params = (GLfloat)texture->immutableLevelCount();
2811 break;
2812 case GL_TEXTURE_USAGE_ANGLE:
2813 *params = (GLfloat)texture->getUsage();
2814 break;
2815 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
2816 if (!context->getExtensions().textureFilterAnisotropic)
2817 {
2818 return gl::error(GL_INVALID_ENUM);
2819 }
2820 *params = (GLfloat)texture->getSamplerState().maxAnisotropy;
2821 break;
2822 case GL_TEXTURE_SWIZZLE_R:
2823 if (context->getClientVersion() < 3)
2824 {
2825 return gl::error(GL_INVALID_ENUM);
2826 }
2827 *params = (GLfloat)texture->getSamplerState().swizzleRed;
2828 break;
2829 case GL_TEXTURE_SWIZZLE_G:
2830 if (context->getClientVersion() < 3)
2831 {
2832 return gl::error(GL_INVALID_ENUM);
2833 }
2834 *params = (GLfloat)texture->getSamplerState().swizzleGreen;
2835 break;
2836 case GL_TEXTURE_SWIZZLE_B:
2837 if (context->getClientVersion() < 3)
2838 {
2839 return gl::error(GL_INVALID_ENUM);
2840 }
2841 *params = (GLfloat)texture->getSamplerState().swizzleBlue;
2842 break;
2843 case GL_TEXTURE_SWIZZLE_A:
2844 if (context->getClientVersion() < 3)
2845 {
2846 return gl::error(GL_INVALID_ENUM);
2847 }
2848 *params = (GLfloat)texture->getSamplerState().swizzleAlpha;
2849 break;
2850 case GL_TEXTURE_BASE_LEVEL:
2851 if (context->getClientVersion() < 3)
2852 {
2853 return gl::error(GL_INVALID_ENUM);
2854 }
2855 *params = (GLfloat)texture->getSamplerState().baseLevel;
2856 break;
2857 case GL_TEXTURE_MAX_LEVEL:
2858 if (context->getClientVersion() < 3)
2859 {
2860 return gl::error(GL_INVALID_ENUM);
2861 }
2862 *params = (GLfloat)texture->getSamplerState().maxLevel;
2863 break;
2864 case GL_TEXTURE_MIN_LOD:
2865 if (context->getClientVersion() < 3)
2866 {
2867 return gl::error(GL_INVALID_ENUM);
2868 }
2869 *params = texture->getSamplerState().minLod;
2870 break;
2871 case GL_TEXTURE_MAX_LOD:
2872 if (context->getClientVersion() < 3)
2873 {
2874 return gl::error(GL_INVALID_ENUM);
2875 }
2876 *params = texture->getSamplerState().maxLod;
2877 break;
2878 default:
2879 return gl::error(GL_INVALID_ENUM);
2880 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002881 }
2882}
2883
2884void __stdcall glGetTexParameteriv(GLenum target, GLenum pname, GLint* params)
2885{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002886 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", target, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002887
Geoff Langbfdea662014-07-23 14:16:32 -04002888 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002889
Geoff Langbfdea662014-07-23 14:16:32 -04002890 if (context)
2891 {
2892 gl::Texture *texture = context->getTargetTexture(target);
2893
2894 if (!texture)
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002895 {
Geoff Langbfdea662014-07-23 14:16:32 -04002896 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002897 }
Geoff Langbfdea662014-07-23 14:16:32 -04002898
2899 switch (pname)
2900 {
2901 case GL_TEXTURE_MAG_FILTER:
2902 *params = texture->getSamplerState().magFilter;
2903 break;
2904 case GL_TEXTURE_MIN_FILTER:
2905 *params = texture->getSamplerState().minFilter;
2906 break;
2907 case GL_TEXTURE_WRAP_S:
2908 *params = texture->getSamplerState().wrapS;
2909 break;
2910 case GL_TEXTURE_WRAP_T:
2911 *params = texture->getSamplerState().wrapT;
2912 break;
2913 case GL_TEXTURE_WRAP_R:
2914 if (context->getClientVersion() < 3)
2915 {
2916 return gl::error(GL_INVALID_ENUM);
2917 }
2918 *params = texture->getSamplerState().wrapR;
2919 break;
2920 case GL_TEXTURE_IMMUTABLE_FORMAT:
2921 // Exposed to ES2.0 through EXT_texture_storage, no client version validation.
2922 *params = texture->isImmutable() ? GL_TRUE : GL_FALSE;
2923 break;
2924 case GL_TEXTURE_IMMUTABLE_LEVELS:
2925 if (context->getClientVersion() < 3)
2926 {
2927 return gl::error(GL_INVALID_ENUM);
2928 }
2929 *params = texture->immutableLevelCount();
2930 break;
2931 case GL_TEXTURE_USAGE_ANGLE:
2932 *params = texture->getUsage();
2933 break;
2934 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
2935 if (!context->getExtensions().textureFilterAnisotropic)
2936 {
2937 return gl::error(GL_INVALID_ENUM);
2938 }
2939 *params = (GLint)texture->getSamplerState().maxAnisotropy;
2940 break;
2941 case GL_TEXTURE_SWIZZLE_R:
2942 if (context->getClientVersion() < 3)
2943 {
2944 return gl::error(GL_INVALID_ENUM);
2945 }
2946 *params = texture->getSamplerState().swizzleRed;
2947 break;
2948 case GL_TEXTURE_SWIZZLE_G:
2949 if (context->getClientVersion() < 3)
2950 {
2951 return gl::error(GL_INVALID_ENUM);
2952 }
2953 *params = texture->getSamplerState().swizzleGreen;
2954 break;
2955 case GL_TEXTURE_SWIZZLE_B:
2956 if (context->getClientVersion() < 3)
2957 {
2958 return gl::error(GL_INVALID_ENUM);
2959 }
2960 *params = texture->getSamplerState().swizzleBlue;
2961 break;
2962 case GL_TEXTURE_SWIZZLE_A:
2963 if (context->getClientVersion() < 3)
2964 {
2965 return gl::error(GL_INVALID_ENUM);
2966 }
2967 *params = texture->getSamplerState().swizzleAlpha;
2968 break;
2969 case GL_TEXTURE_BASE_LEVEL:
2970 if (context->getClientVersion() < 3)
2971 {
2972 return gl::error(GL_INVALID_ENUM);
2973 }
2974 *params = texture->getSamplerState().baseLevel;
2975 break;
2976 case GL_TEXTURE_MAX_LEVEL:
2977 if (context->getClientVersion() < 3)
2978 {
2979 return gl::error(GL_INVALID_ENUM);
2980 }
2981 *params = texture->getSamplerState().maxLevel;
2982 break;
2983 case GL_TEXTURE_MIN_LOD:
2984 if (context->getClientVersion() < 3)
2985 {
2986 return gl::error(GL_INVALID_ENUM);
2987 }
2988 *params = (GLint)texture->getSamplerState().minLod;
2989 break;
2990 case GL_TEXTURE_MAX_LOD:
2991 if (context->getClientVersion() < 3)
2992 {
2993 return gl::error(GL_INVALID_ENUM);
2994 }
2995 *params = (GLint)texture->getSamplerState().maxLod;
2996 break;
2997 default:
2998 return gl::error(GL_INVALID_ENUM);
2999 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003000 }
3001}
3002
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003003void __stdcall glGetnUniformfvEXT(GLuint program, GLint location, GLsizei bufSize, GLfloat* params)
3004{
3005 EVENT("(GLuint program = %d, GLint location = %d, GLsizei bufSize = %d, GLfloat* params = 0x%0.8p)",
3006 program, location, bufSize, params);
3007
Geoff Langbfdea662014-07-23 14:16:32 -04003008 if (bufSize < 0)
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003009 {
Geoff Langbfdea662014-07-23 14:16:32 -04003010 return gl::error(GL_INVALID_VALUE);
3011 }
3012
3013 gl::Context *context = gl::getNonLostContext();
3014
3015 if (context)
3016 {
Jamie Madill0063c512014-08-25 15:47:53 -04003017 if (!ValidateGetnUniformfvEXT(context, program, location, bufSize, params))
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003018 {
Jamie Madill0063c512014-08-25 15:47:53 -04003019 return;
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003020 }
3021
Jamie Madill0063c512014-08-25 15:47:53 -04003022 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
3023 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003024
Jamie Madill99a1e982014-08-25 15:47:54 -04003025 programBinary->getUniformfv(location, params);
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003026 }
3027}
3028
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003029void __stdcall glGetUniformfv(GLuint program, GLint location, GLfloat* params)
3030{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003031 EVENT("(GLuint program = %d, GLint location = %d, GLfloat* params = 0x%0.8p)", program, location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003032
Geoff Langbfdea662014-07-23 14:16:32 -04003033 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003034
Geoff Langbfdea662014-07-23 14:16:32 -04003035 if (context)
3036 {
Jamie Madill0063c512014-08-25 15:47:53 -04003037 if (!ValidateGetUniformfv(context, program, location, params))
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003038 {
Jamie Madill0063c512014-08-25 15:47:53 -04003039 return;
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003040 }
Geoff Langbfdea662014-07-23 14:16:32 -04003041
Jamie Madill0063c512014-08-25 15:47:53 -04003042 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
3043 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003044
Jamie Madill99a1e982014-08-25 15:47:54 -04003045 programBinary->getUniformfv(location, params);
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003046 }
3047}
3048
3049void __stdcall glGetnUniformivEXT(GLuint program, GLint location, GLsizei bufSize, GLint* params)
3050{
Geoff Langbfdea662014-07-23 14:16:32 -04003051 EVENT("(GLuint program = %d, GLint location = %d, GLsizei bufSize = %d, GLint* params = 0x%0.8p)",
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003052 program, location, bufSize, params);
3053
Geoff Langbfdea662014-07-23 14:16:32 -04003054 if (bufSize < 0)
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003055 {
Geoff Langbfdea662014-07-23 14:16:32 -04003056 return gl::error(GL_INVALID_VALUE);
3057 }
3058
3059 gl::Context *context = gl::getNonLostContext();
3060
3061 if (context)
3062 {
Jamie Madill0063c512014-08-25 15:47:53 -04003063 if (!ValidateGetnUniformivEXT(context, program, location, bufSize, params))
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003064 {
Jamie Madill0063c512014-08-25 15:47:53 -04003065 return;
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003066 }
3067
Jamie Madill0063c512014-08-25 15:47:53 -04003068 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
3069 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003070
Jamie Madill99a1e982014-08-25 15:47:54 -04003071 programBinary->getUniformiv(location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003072 }
3073}
3074
3075void __stdcall glGetUniformiv(GLuint program, GLint location, GLint* params)
3076{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003077 EVENT("(GLuint program = %d, GLint location = %d, GLint* params = 0x%0.8p)", program, location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003078
Geoff Langbfdea662014-07-23 14:16:32 -04003079 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003080
Geoff Langbfdea662014-07-23 14:16:32 -04003081 if (context)
3082 {
Jamie Madill0063c512014-08-25 15:47:53 -04003083 if (!ValidateGetUniformiv(context, program, location, params))
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003084 {
Jamie Madill0063c512014-08-25 15:47:53 -04003085 return;
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003086 }
Geoff Langbfdea662014-07-23 14:16:32 -04003087
Jamie Madill0063c512014-08-25 15:47:53 -04003088 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
3089 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003090
Jamie Madill99a1e982014-08-25 15:47:54 -04003091 programBinary->getUniformiv(location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003092 }
3093}
3094
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003095int __stdcall glGetUniformLocation(GLuint program, const GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003096{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003097 EVENT("(GLuint program = %d, const GLchar* name = 0x%0.8p)", program, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003098
Geoff Langbfdea662014-07-23 14:16:32 -04003099 gl::Context *context = gl::getNonLostContext();
3100
3101 if (strstr(name, "gl_") == name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003102 {
Geoff Langbfdea662014-07-23 14:16:32 -04003103 return -1;
3104 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003105
Geoff Langbfdea662014-07-23 14:16:32 -04003106 if (context)
3107 {
3108 gl::Program *programObject = context->getProgram(program);
3109
3110 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003111 {
Geoff Langbfdea662014-07-23 14:16:32 -04003112 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003113 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00003114 return gl::error(GL_INVALID_OPERATION, -1);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003115 }
Geoff Langbfdea662014-07-23 14:16:32 -04003116 else
3117 {
3118 return gl::error(GL_INVALID_VALUE, -1);
3119 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003120 }
Geoff Langbfdea662014-07-23 14:16:32 -04003121
3122 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
3123 if (!programObject->isLinked() || !programBinary)
3124 {
3125 return gl::error(GL_INVALID_OPERATION, -1);
3126 }
3127
3128 return programBinary->getUniformLocation(name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003129 }
3130
3131 return -1;
3132}
3133
3134void __stdcall glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat* params)
3135{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003136 EVENT("(GLuint index = %d, GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", index, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003137
Geoff Langbfdea662014-07-23 14:16:32 -04003138 gl::Context *context = gl::getNonLostContext();
3139
3140 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003141 {
Geoff Langbfdea662014-07-23 14:16:32 -04003142 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003143 {
Geoff Langbfdea662014-07-23 14:16:32 -04003144 return gl::error(GL_INVALID_VALUE);
3145 }
daniel@transgaming.come0078962010-04-15 20:45:08 +00003146
Geoff Langbfdea662014-07-23 14:16:32 -04003147 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
3148 if (!gl::ValidateGetVertexAttribParameters(pname, context->getClientVersion()))
3149 {
3150 return;
3151 }
daniel@transgaming.com428d1582010-05-04 03:35:25 +00003152
Geoff Langbfdea662014-07-23 14:16:32 -04003153 if (pname == GL_CURRENT_VERTEX_ATTRIB)
3154 {
3155 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
3156 for (int i = 0; i < 4; ++i)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003157 {
Geoff Langbfdea662014-07-23 14:16:32 -04003158 params[i] = currentValueData.FloatValues[i];
daniel@transgaming.come0078962010-04-15 20:45:08 +00003159 }
3160 }
Geoff Langbfdea662014-07-23 14:16:32 -04003161 else
3162 {
3163 *params = gl::QuerySingleVertexAttributeParameter<GLfloat>(attribState, pname);
3164 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003165 }
3166}
3167
3168void __stdcall glGetVertexAttribiv(GLuint index, GLenum pname, GLint* params)
3169{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003170 EVENT("(GLuint index = %d, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", index, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003171
Geoff Langbfdea662014-07-23 14:16:32 -04003172 gl::Context *context = gl::getNonLostContext();
3173
3174 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003175 {
Geoff Langbfdea662014-07-23 14:16:32 -04003176 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003177 {
Geoff Langbfdea662014-07-23 14:16:32 -04003178 return gl::error(GL_INVALID_VALUE);
3179 }
daniel@transgaming.come0078962010-04-15 20:45:08 +00003180
Geoff Langbfdea662014-07-23 14:16:32 -04003181 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
daniel@transgaming.com428d1582010-05-04 03:35:25 +00003182
Geoff Langbfdea662014-07-23 14:16:32 -04003183 if (!gl::ValidateGetVertexAttribParameters(pname, context->getClientVersion()))
3184 {
3185 return;
3186 }
Jamie Madillaff71502013-07-02 11:57:05 -04003187
Geoff Langbfdea662014-07-23 14:16:32 -04003188 if (pname == GL_CURRENT_VERTEX_ATTRIB)
3189 {
3190 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
3191 for (int i = 0; i < 4; ++i)
Jamie Madillaff71502013-07-02 11:57:05 -04003192 {
Geoff Langbfdea662014-07-23 14:16:32 -04003193 float currentValue = currentValueData.FloatValues[i];
3194 params[i] = gl::iround<GLint>(currentValue);
daniel@transgaming.come0078962010-04-15 20:45:08 +00003195 }
3196 }
Geoff Langbfdea662014-07-23 14:16:32 -04003197 else
3198 {
3199 *params = gl::QuerySingleVertexAttributeParameter<GLint>(attribState, pname);
3200 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003201 }
3202}
3203
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003204void __stdcall glGetVertexAttribPointerv(GLuint index, GLenum pname, GLvoid** pointer)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003205{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003206 EVENT("(GLuint index = %d, GLenum pname = 0x%X, GLvoid** pointer = 0x%0.8p)", index, pname, pointer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003207
Geoff Langbfdea662014-07-23 14:16:32 -04003208 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003209
Geoff Langbfdea662014-07-23 14:16:32 -04003210 if (context)
3211 {
3212 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003213 {
Geoff Langbfdea662014-07-23 14:16:32 -04003214 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.come0078962010-04-15 20:45:08 +00003215 }
Geoff Langbfdea662014-07-23 14:16:32 -04003216
3217 if (pname != GL_VERTEX_ATTRIB_ARRAY_POINTER)
3218 {
3219 return gl::error(GL_INVALID_ENUM);
3220 }
3221
3222 *pointer = const_cast<GLvoid*>(context->getState().getVertexAttribPointer(index));
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003223 }
3224}
3225
3226void __stdcall glHint(GLenum target, GLenum mode)
3227{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003228 EVENT("(GLenum target = 0x%X, GLenum mode = 0x%X)", target, mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003229
Geoff Langbfdea662014-07-23 14:16:32 -04003230 switch (mode)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003231 {
Geoff Langbfdea662014-07-23 14:16:32 -04003232 case GL_FASTEST:
3233 case GL_NICEST:
3234 case GL_DONT_CARE:
3235 break;
3236 default:
3237 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003238 }
Geoff Langbfdea662014-07-23 14:16:32 -04003239
3240 gl::Context *context = gl::getNonLostContext();
3241 switch (target)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003242 {
Geoff Langbfdea662014-07-23 14:16:32 -04003243 case GL_GENERATE_MIPMAP_HINT:
3244 if (context) context->getState().setGenerateMipmapHint(mode);
3245 break;
3246 case GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES:
3247 if (context) context->getState().setFragmentShaderDerivativeHint(mode);
3248 break;
3249 default:
3250 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003251 }
3252}
3253
3254GLboolean __stdcall glIsBuffer(GLuint buffer)
3255{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003256 EVENT("(GLuint buffer = %d)", buffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003257
Geoff Langbfdea662014-07-23 14:16:32 -04003258 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003259
Geoff Langbfdea662014-07-23 14:16:32 -04003260 if (context && buffer)
3261 {
3262 gl::Buffer *bufferObject = context->getBuffer(buffer);
3263
3264 if (bufferObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003265 {
Geoff Langbfdea662014-07-23 14:16:32 -04003266 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003267 }
3268 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003269
3270 return GL_FALSE;
3271}
3272
3273GLboolean __stdcall glIsEnabled(GLenum cap)
3274{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003275 EVENT("(GLenum cap = 0x%X)", cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003276
Geoff Langbfdea662014-07-23 14:16:32 -04003277 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003278
Geoff Langbfdea662014-07-23 14:16:32 -04003279 if (context)
3280 {
3281 if (!ValidCap(context, cap))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003282 {
Geoff Langbfdea662014-07-23 14:16:32 -04003283 return gl::error(GL_INVALID_ENUM, false);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003284 }
Geoff Langbfdea662014-07-23 14:16:32 -04003285
3286 return context->getState().getEnableFeature(cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003287 }
3288
3289 return false;
3290}
3291
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003292GLboolean __stdcall glIsFenceNV(GLuint fence)
3293{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003294 EVENT("(GLuint fence = %d)", fence);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003295
Geoff Langbfdea662014-07-23 14:16:32 -04003296 gl::Context *context = gl::getNonLostContext();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003297
Geoff Langbfdea662014-07-23 14:16:32 -04003298 if (context)
3299 {
3300 gl::FenceNV *fenceObject = context->getFenceNV(fence);
3301
3302 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003303 {
Geoff Langbfdea662014-07-23 14:16:32 -04003304 return GL_FALSE;
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003305 }
Geoff Langbfdea662014-07-23 14:16:32 -04003306
3307 return fenceObject->isFence();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003308 }
3309
3310 return GL_FALSE;
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003311}
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003312
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003313GLboolean __stdcall glIsFramebuffer(GLuint framebuffer)
3314{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003315 EVENT("(GLuint framebuffer = %d)", framebuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003316
Geoff Langbfdea662014-07-23 14:16:32 -04003317 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003318
Geoff Langbfdea662014-07-23 14:16:32 -04003319 if (context && framebuffer)
3320 {
3321 gl::Framebuffer *framebufferObject = context->getFramebuffer(framebuffer);
3322
3323 if (framebufferObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003324 {
Geoff Langbfdea662014-07-23 14:16:32 -04003325 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003326 }
3327 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003328
3329 return GL_FALSE;
3330}
3331
3332GLboolean __stdcall glIsProgram(GLuint program)
3333{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003334 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003335
Geoff Langbfdea662014-07-23 14:16:32 -04003336 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003337
Geoff Langbfdea662014-07-23 14:16:32 -04003338 if (context && program)
3339 {
3340 gl::Program *programObject = context->getProgram(program);
3341
3342 if (programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003343 {
Geoff Langbfdea662014-07-23 14:16:32 -04003344 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003345 }
3346 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003347
3348 return GL_FALSE;
3349}
3350
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00003351GLboolean __stdcall glIsQueryEXT(GLuint id)
3352{
3353 EVENT("(GLuint id = %d)", id);
3354
Geoff Langbfdea662014-07-23 14:16:32 -04003355 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00003356
Geoff Langbfdea662014-07-23 14:16:32 -04003357 if (context)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00003358 {
Geoff Langbfdea662014-07-23 14:16:32 -04003359 return (context->getQuery(id, false, GL_NONE) != NULL) ? GL_TRUE : GL_FALSE;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00003360 }
3361
3362 return GL_FALSE;
3363}
3364
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003365GLboolean __stdcall glIsRenderbuffer(GLuint renderbuffer)
3366{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003367 EVENT("(GLuint renderbuffer = %d)", renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003368
Geoff Langbfdea662014-07-23 14:16:32 -04003369 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003370
Geoff Langbfdea662014-07-23 14:16:32 -04003371 if (context && renderbuffer)
3372 {
3373 gl::Renderbuffer *renderbufferObject = context->getRenderbuffer(renderbuffer);
3374
3375 if (renderbufferObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003376 {
Geoff Langbfdea662014-07-23 14:16:32 -04003377 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003378 }
3379 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003380
3381 return GL_FALSE;
3382}
3383
3384GLboolean __stdcall glIsShader(GLuint shader)
3385{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003386 EVENT("(GLuint shader = %d)", shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003387
Geoff Langbfdea662014-07-23 14:16:32 -04003388 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003389
Geoff Langbfdea662014-07-23 14:16:32 -04003390 if (context && shader)
3391 {
3392 gl::Shader *shaderObject = context->getShader(shader);
3393
3394 if (shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003395 {
Geoff Langbfdea662014-07-23 14:16:32 -04003396 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003397 }
3398 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003399
3400 return GL_FALSE;
3401}
3402
3403GLboolean __stdcall glIsTexture(GLuint texture)
3404{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003405 EVENT("(GLuint texture = %d)", texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003406
Geoff Langbfdea662014-07-23 14:16:32 -04003407 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003408
Geoff Langbfdea662014-07-23 14:16:32 -04003409 if (context && texture)
3410 {
3411 gl::Texture *textureObject = context->getTexture(texture);
3412
3413 if (textureObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003414 {
Geoff Langbfdea662014-07-23 14:16:32 -04003415 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003416 }
3417 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003418
3419 return GL_FALSE;
3420}
3421
3422void __stdcall glLineWidth(GLfloat width)
3423{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003424 EVENT("(GLfloat width = %f)", width);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003425
Geoff Langbfdea662014-07-23 14:16:32 -04003426 if (width <= 0.0f)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003427 {
Geoff Langbfdea662014-07-23 14:16:32 -04003428 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003429 }
Geoff Langbfdea662014-07-23 14:16:32 -04003430
3431 gl::Context *context = gl::getNonLostContext();
3432
3433 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003434 {
Geoff Langbfdea662014-07-23 14:16:32 -04003435 context->getState().setLineWidth(width);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003436 }
3437}
3438
3439void __stdcall glLinkProgram(GLuint program)
3440{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003441 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003442
Geoff Langbfdea662014-07-23 14:16:32 -04003443 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003444
Geoff Langbfdea662014-07-23 14:16:32 -04003445 if (context)
3446 {
3447 gl::Program *programObject = context->getProgram(program);
3448
3449 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003450 {
Geoff Langbfdea662014-07-23 14:16:32 -04003451 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003452 {
Geoff Langbfdea662014-07-23 14:16:32 -04003453 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003454 }
Geoff Langbfdea662014-07-23 14:16:32 -04003455 else
3456 {
3457 return gl::error(GL_INVALID_VALUE);
3458 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003459 }
Geoff Langbfdea662014-07-23 14:16:32 -04003460
3461 context->linkProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003462 }
3463}
3464
3465void __stdcall glPixelStorei(GLenum pname, GLint param)
3466{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003467 EVENT("(GLenum pname = 0x%X, GLint param = %d)", pname, param);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003468
Geoff Langbfdea662014-07-23 14:16:32 -04003469 gl::Context *context = gl::getNonLostContext();
3470
3471 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003472 {
Geoff Langbfdea662014-07-23 14:16:32 -04003473 switch (pname)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003474 {
Geoff Langbfdea662014-07-23 14:16:32 -04003475 case GL_UNPACK_ALIGNMENT:
3476 if (param != 1 && param != 2 && param != 4 && param != 8)
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003477 {
Geoff Langbfdea662014-07-23 14:16:32 -04003478 return gl::error(GL_INVALID_VALUE);
3479 }
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003480
Geoff Langbfdea662014-07-23 14:16:32 -04003481 context->getState().setUnpackAlignment(param);
3482 break;
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003483
Geoff Langbfdea662014-07-23 14:16:32 -04003484 case GL_PACK_ALIGNMENT:
3485 if (param != 1 && param != 2 && param != 4 && param != 8)
3486 {
3487 return gl::error(GL_INVALID_VALUE);
3488 }
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003489
Geoff Langbfdea662014-07-23 14:16:32 -04003490 context->getState().setPackAlignment(param);
3491 break;
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003492
Geoff Langbfdea662014-07-23 14:16:32 -04003493 case GL_PACK_REVERSE_ROW_ORDER_ANGLE:
3494 context->getState().setPackReverseRowOrder(param != 0);
3495 break;
bsalomon@google.com56d46ab2011-11-23 14:53:10 +00003496
Geoff Langbfdea662014-07-23 14:16:32 -04003497 case GL_UNPACK_IMAGE_HEIGHT:
3498 case GL_UNPACK_SKIP_IMAGES:
3499 case GL_UNPACK_ROW_LENGTH:
3500 case GL_UNPACK_SKIP_ROWS:
3501 case GL_UNPACK_SKIP_PIXELS:
3502 case GL_PACK_ROW_LENGTH:
3503 case GL_PACK_SKIP_ROWS:
3504 case GL_PACK_SKIP_PIXELS:
3505 if (context->getClientVersion() < 3)
3506 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00003507 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003508 }
Geoff Langbfdea662014-07-23 14:16:32 -04003509 UNIMPLEMENTED();
3510 break;
3511
3512 default:
3513 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003514 }
3515 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003516}
3517
3518void __stdcall glPolygonOffset(GLfloat factor, GLfloat units)
3519{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003520 EVENT("(GLfloat factor = %f, GLfloat units = %f)", factor, units);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003521
Geoff Langbfdea662014-07-23 14:16:32 -04003522 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.comaede6302010-04-29 03:35:48 +00003523
Geoff Langbfdea662014-07-23 14:16:32 -04003524 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003525 {
Geoff Langbfdea662014-07-23 14:16:32 -04003526 context->getState().setPolygonOffsetParams(factor, units);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003527 }
3528}
3529
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003530void __stdcall glReadnPixelsEXT(GLint x, GLint y, GLsizei width, GLsizei height,
3531 GLenum format, GLenum type, GLsizei bufSize,
3532 GLvoid *data)
3533{
3534 EVENT("(GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d, "
3535 "GLenum format = 0x%X, GLenum type = 0x%X, GLsizei bufSize = 0x%d, GLvoid *data = 0x%0.8p)",
3536 x, y, width, height, format, type, bufSize, data);
3537
Geoff Langbfdea662014-07-23 14:16:32 -04003538 if (width < 0 || height < 0 || bufSize < 0)
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003539 {
Geoff Langbfdea662014-07-23 14:16:32 -04003540 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003541 }
Geoff Langbfdea662014-07-23 14:16:32 -04003542
3543 gl::Context *context = gl::getNonLostContext();
3544
3545 if (context)
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003546 {
Geoff Langbfdea662014-07-23 14:16:32 -04003547 if (!gl::ValidateReadPixelsParameters(context, x, y, width, height,
3548 format, type, &bufSize, data))
3549 {
3550 return;
3551 }
3552
3553 context->readPixels(x, y, width, height, format, type, &bufSize, data);
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003554 }
3555}
3556
3557void __stdcall glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
3558 GLenum format, GLenum type, GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003559{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003560 EVENT("(GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003561 "GLenum format = 0x%X, GLenum type = 0x%X, GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00003562 x, y, width, height, format, type, pixels);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003563
Geoff Langbfdea662014-07-23 14:16:32 -04003564 if (width < 0 || height < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003565 {
Geoff Langbfdea662014-07-23 14:16:32 -04003566 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003567 }
Geoff Langbfdea662014-07-23 14:16:32 -04003568
3569 gl::Context *context = gl::getNonLostContext();
3570
3571 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003572 {
Geoff Langbfdea662014-07-23 14:16:32 -04003573 if (!gl::ValidateReadPixelsParameters(context, x, y, width, height,
3574 format, type, NULL, pixels))
3575 {
3576 return;
3577 }
3578
3579 context->readPixels(x, y, width, height, format, type, NULL, pixels);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003580 }
3581}
3582
3583void __stdcall glReleaseShaderCompiler(void)
3584{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003585 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003586
Brandon Jonesf05cdee2014-08-27 15:24:07 -07003587 gl::Context *context = gl::getNonLostContext();
3588
3589 if (context)
3590 {
3591 context->releaseShaderCompiler();
3592 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003593}
3594
daniel@transgaming.com1f135d82010-08-24 19:20:36 +00003595void __stdcall glRenderbufferStorageMultisampleANGLE(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003596{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003597 EVENT("(GLenum target = 0x%X, GLsizei samples = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
daniel@transgaming.com1f135d82010-08-24 19:20:36 +00003598 target, samples, internalformat, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003599
Geoff Langbfdea662014-07-23 14:16:32 -04003600 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003601
Geoff Langbfdea662014-07-23 14:16:32 -04003602 if (context)
3603 {
3604 if (!ValidateRenderbufferStorageParameters(context, target, samples, internalformat,
3605 width, height, true))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003606 {
Geoff Langbfdea662014-07-23 14:16:32 -04003607 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003608 }
Geoff Langbfdea662014-07-23 14:16:32 -04003609
3610 context->setRenderbufferStorage(width, height, internalformat, samples);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003611 }
3612}
3613
daniel@transgaming.com1f135d82010-08-24 19:20:36 +00003614void __stdcall glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height)
3615{
3616 glRenderbufferStorageMultisampleANGLE(target, 0, internalformat, width, height);
3617}
3618
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003619void __stdcall glSampleCoverage(GLclampf value, GLboolean invert)
3620{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00003621 EVENT("(GLclampf value = %f, GLboolean invert = %u)", value, invert);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003622
Geoff Langbfdea662014-07-23 14:16:32 -04003623 gl::Context* context = gl::getNonLostContext();
daniel@transgaming.comfab5a1a2010-03-11 19:22:30 +00003624
Geoff Langbfdea662014-07-23 14:16:32 -04003625 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003626 {
Geoff Langbfdea662014-07-23 14:16:32 -04003627 context->getState().setSampleCoverageParams(gl::clamp01(value), invert == GL_TRUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003628 }
3629}
3630
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003631void __stdcall glSetFenceNV(GLuint fence, GLenum condition)
3632{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003633 EVENT("(GLuint fence = %d, GLenum condition = 0x%X)", fence, condition);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003634
Geoff Langbfdea662014-07-23 14:16:32 -04003635 if (condition != GL_ALL_COMPLETED_NV)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003636 {
Geoff Langbfdea662014-07-23 14:16:32 -04003637 return gl::error(GL_INVALID_ENUM);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003638 }
Geoff Langbfdea662014-07-23 14:16:32 -04003639
3640 gl::Context *context = gl::getNonLostContext();
3641
3642 if (context)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003643 {
Geoff Langbfdea662014-07-23 14:16:32 -04003644 gl::FenceNV *fenceObject = context->getFenceNV(fence);
3645
3646 if (fenceObject == NULL)
3647 {
3648 return gl::error(GL_INVALID_OPERATION);
3649 }
3650
3651 fenceObject->setFence(condition);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003652 }
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003653}
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003654
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003655void __stdcall glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
3656{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003657 EVENT("(GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)", x, y, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003658
Geoff Langbfdea662014-07-23 14:16:32 -04003659 if (width < 0 || height < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003660 {
Geoff Langbfdea662014-07-23 14:16:32 -04003661 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003662 }
Geoff Langbfdea662014-07-23 14:16:32 -04003663
3664 gl::Context* context = gl::getNonLostContext();
3665
3666 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003667 {
Geoff Langbfdea662014-07-23 14:16:32 -04003668 context->getState().setScissorParams(x, y, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003669 }
3670}
3671
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003672void __stdcall glShaderBinary(GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003673{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003674 EVENT("(GLsizei n = %d, const GLuint* shaders = 0x%0.8p, GLenum binaryformat = 0x%X, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003675 "const GLvoid* binary = 0x%0.8p, GLsizei length = %d)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00003676 n, shaders, binaryformat, binary, length);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003677
Geoff Lang900013c2014-07-07 11:32:19 -04003678 gl::Context* context = gl::getNonLostContext();
3679 if (context)
3680 {
3681 const std::vector<GLenum> &shaderBinaryFormats = context->getCaps().shaderBinaryFormats;
3682 if (std::find(shaderBinaryFormats.begin(), shaderBinaryFormats.end(), binaryformat) == shaderBinaryFormats.end())
3683 {
3684 return gl::error(GL_INVALID_ENUM);
3685 }
3686
3687 // No binary shader formats are supported.
3688 UNIMPLEMENTED();
3689 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003690}
3691
shannon.woods%transgaming.com@gtempaccount.com5f339332013-04-13 03:29:02 +00003692void __stdcall glShaderSource(GLuint shader, GLsizei count, const GLchar* const* string, const GLint* length)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003693{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003694 EVENT("(GLuint shader = %d, GLsizei count = %d, const GLchar** string = 0x%0.8p, const GLint* length = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00003695 shader, count, string, length);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003696
Geoff Langbfdea662014-07-23 14:16:32 -04003697 if (count < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003698 {
Geoff Langbfdea662014-07-23 14:16:32 -04003699 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003700 }
Geoff Langbfdea662014-07-23 14:16:32 -04003701
3702 gl::Context *context = gl::getNonLostContext();
3703
3704 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003705 {
Geoff Langbfdea662014-07-23 14:16:32 -04003706 gl::Shader *shaderObject = context->getShader(shader);
3707
3708 if (!shaderObject)
3709 {
3710 if (context->getProgram(shader))
3711 {
3712 return gl::error(GL_INVALID_OPERATION);
3713 }
3714 else
3715 {
3716 return gl::error(GL_INVALID_VALUE);
3717 }
3718 }
3719
3720 shaderObject->setSource(count, string, length);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003721 }
3722}
3723
3724void __stdcall glStencilFunc(GLenum func, GLint ref, GLuint mask)
3725{
daniel@transgaming.comfab5a1a2010-03-11 19:22:30 +00003726 glStencilFuncSeparate(GL_FRONT_AND_BACK, func, ref, mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003727}
3728
3729void __stdcall glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask)
3730{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003731 EVENT("(GLenum face = 0x%X, GLenum func = 0x%X, GLint ref = %d, GLuint mask = %d)", face, func, ref, mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003732
Geoff Langbfdea662014-07-23 14:16:32 -04003733 switch (face)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003734 {
Geoff Langbfdea662014-07-23 14:16:32 -04003735 case GL_FRONT:
3736 case GL_BACK:
3737 case GL_FRONT_AND_BACK:
3738 break;
3739 default:
3740 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003741 }
Geoff Langbfdea662014-07-23 14:16:32 -04003742
3743 switch (func)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003744 {
Geoff Langbfdea662014-07-23 14:16:32 -04003745 case GL_NEVER:
3746 case GL_ALWAYS:
3747 case GL_LESS:
3748 case GL_LEQUAL:
3749 case GL_EQUAL:
3750 case GL_GEQUAL:
3751 case GL_GREATER:
3752 case GL_NOTEQUAL:
3753 break;
3754 default:
3755 return gl::error(GL_INVALID_ENUM);
3756 }
3757
3758 gl::Context *context = gl::getNonLostContext();
3759
3760 if (context)
3761 {
3762 if (face == GL_FRONT || face == GL_FRONT_AND_BACK)
3763 {
3764 context->getState().setStencilParams(func, ref, mask);
3765 }
3766
3767 if (face == GL_BACK || face == GL_FRONT_AND_BACK)
3768 {
3769 context->getState().setStencilBackParams(func, ref, mask);
3770 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003771 }
3772}
3773
3774void __stdcall glStencilMask(GLuint mask)
3775{
3776 glStencilMaskSeparate(GL_FRONT_AND_BACK, mask);
3777}
3778
3779void __stdcall glStencilMaskSeparate(GLenum face, GLuint mask)
3780{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003781 EVENT("(GLenum face = 0x%X, GLuint mask = %d)", face, mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003782
Geoff Langbfdea662014-07-23 14:16:32 -04003783 switch (face)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003784 {
Geoff Langbfdea662014-07-23 14:16:32 -04003785 case GL_FRONT:
3786 case GL_BACK:
3787 case GL_FRONT_AND_BACK:
3788 break;
3789 default:
3790 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003791 }
Geoff Langbfdea662014-07-23 14:16:32 -04003792
3793 gl::Context *context = gl::getNonLostContext();
3794
3795 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003796 {
Geoff Langbfdea662014-07-23 14:16:32 -04003797 if (face == GL_FRONT || face == GL_FRONT_AND_BACK)
3798 {
3799 context->getState().setStencilWritemask(mask);
3800 }
3801
3802 if (face == GL_BACK || face == GL_FRONT_AND_BACK)
3803 {
3804 context->getState().setStencilBackWritemask(mask);
3805 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003806 }
3807}
3808
3809void __stdcall glStencilOp(GLenum fail, GLenum zfail, GLenum zpass)
3810{
3811 glStencilOpSeparate(GL_FRONT_AND_BACK, fail, zfail, zpass);
3812}
3813
3814void __stdcall glStencilOpSeparate(GLenum face, GLenum fail, GLenum zfail, GLenum zpass)
3815{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003816 EVENT("(GLenum face = 0x%X, GLenum fail = 0x%X, GLenum zfail = 0x%X, GLenum zpas = 0x%Xs)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00003817 face, fail, zfail, zpass);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003818
Geoff Langbfdea662014-07-23 14:16:32 -04003819 switch (face)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003820 {
Geoff Langbfdea662014-07-23 14:16:32 -04003821 case GL_FRONT:
3822 case GL_BACK:
3823 case GL_FRONT_AND_BACK:
3824 break;
3825 default:
3826 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003827 }
Geoff Langbfdea662014-07-23 14:16:32 -04003828
3829 switch (fail)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003830 {
Geoff Langbfdea662014-07-23 14:16:32 -04003831 case GL_ZERO:
3832 case GL_KEEP:
3833 case GL_REPLACE:
3834 case GL_INCR:
3835 case GL_DECR:
3836 case GL_INVERT:
3837 case GL_INCR_WRAP:
3838 case GL_DECR_WRAP:
3839 break;
3840 default:
3841 return gl::error(GL_INVALID_ENUM);
3842 }
3843
3844 switch (zfail)
3845 {
3846 case GL_ZERO:
3847 case GL_KEEP:
3848 case GL_REPLACE:
3849 case GL_INCR:
3850 case GL_DECR:
3851 case GL_INVERT:
3852 case GL_INCR_WRAP:
3853 case GL_DECR_WRAP:
3854 break;
3855 default:
3856 return gl::error(GL_INVALID_ENUM);
3857 }
3858
3859 switch (zpass)
3860 {
3861 case GL_ZERO:
3862 case GL_KEEP:
3863 case GL_REPLACE:
3864 case GL_INCR:
3865 case GL_DECR:
3866 case GL_INVERT:
3867 case GL_INCR_WRAP:
3868 case GL_DECR_WRAP:
3869 break;
3870 default:
3871 return gl::error(GL_INVALID_ENUM);
3872 }
3873
3874 gl::Context *context = gl::getNonLostContext();
3875
3876 if (context)
3877 {
3878 if (face == GL_FRONT || face == GL_FRONT_AND_BACK)
3879 {
3880 context->getState().setStencilOperations(fail, zfail, zpass);
3881 }
3882
3883 if (face == GL_BACK || face == GL_FRONT_AND_BACK)
3884 {
3885 context->getState().setStencilBackOperations(fail, zfail, zpass);
3886 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003887 }
3888}
3889
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003890GLboolean __stdcall glTestFenceNV(GLuint fence)
3891{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003892 EVENT("(GLuint fence = %d)", fence);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003893
Geoff Langbfdea662014-07-23 14:16:32 -04003894 gl::Context *context = gl::getNonLostContext();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003895
Geoff Langbfdea662014-07-23 14:16:32 -04003896 if (context)
3897 {
3898 gl::FenceNV *fenceObject = context->getFenceNV(fence);
3899
3900 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003901 {
Geoff Langbfdea662014-07-23 14:16:32 -04003902 return gl::error(GL_INVALID_OPERATION, GL_TRUE);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003903 }
Geoff Langbfdea662014-07-23 14:16:32 -04003904
3905 if (fenceObject->isFence() != GL_TRUE)
3906 {
3907 return gl::error(GL_INVALID_OPERATION, GL_TRUE);
3908 }
3909
3910 return fenceObject->testFence();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003911 }
Geoff Langbfdea662014-07-23 14:16:32 -04003912
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003913 return GL_TRUE;
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003914}
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003915
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003916void __stdcall glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height,
3917 GLint border, GLenum format, GLenum type, const GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003918{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003919 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint internalformat = %d, GLsizei width = %d, GLsizei height = %d, "
Jamie Madill1fc7e2c2014-01-21 16:47:10 -05003920 "GLint border = %d, GLenum format = 0x%X, GLenum type = 0x%X, const GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00003921 target, level, internalformat, width, height, border, format, type, pixels);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003922
Geoff Langbfdea662014-07-23 14:16:32 -04003923 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003924
Geoff Langbfdea662014-07-23 14:16:32 -04003925 if (context)
3926 {
3927 if (context->getClientVersion() < 3 &&
3928 !ValidateES2TexImageParameters(context, target, level, internalformat, false, false,
3929 0, 0, width, height, border, format, type, pixels))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003930 {
Geoff Langbfdea662014-07-23 14:16:32 -04003931 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003932 }
Geoff Langbfdea662014-07-23 14:16:32 -04003933
3934 if (context->getClientVersion() >= 3 &&
3935 !ValidateES3TexImageParameters(context, target, level, internalformat, false, false,
3936 0, 0, 0, width, height, 1, border, format, type, pixels))
3937 {
3938 return;
3939 }
3940
3941 switch (target)
3942 {
3943 case GL_TEXTURE_2D:
3944 {
3945 gl::Texture2D *texture = context->getTexture2D();
3946 texture->setImage(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
3947 }
3948 break;
3949 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
3950 {
3951 gl::TextureCubeMap *texture = context->getTextureCubeMap();
3952 texture->setImagePosX(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
3953 }
3954 break;
3955 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
3956 {
3957 gl::TextureCubeMap *texture = context->getTextureCubeMap();
3958 texture->setImageNegX(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
3959 }
3960 break;
3961 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
3962 {
3963 gl::TextureCubeMap *texture = context->getTextureCubeMap();
3964 texture->setImagePosY(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
3965 }
3966 break;
3967 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
3968 {
3969 gl::TextureCubeMap *texture = context->getTextureCubeMap();
3970 texture->setImageNegY(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
3971 }
3972 break;
3973 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
3974 {
3975 gl::TextureCubeMap *texture = context->getTextureCubeMap();
3976 texture->setImagePosZ(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
3977 }
3978 break;
3979 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
3980 {
3981 gl::TextureCubeMap *texture = context->getTextureCubeMap();
3982 texture->setImageNegZ(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
3983 }
3984 break;
3985 default: UNREACHABLE();
3986 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003987 }
3988}
3989
3990void __stdcall glTexParameterf(GLenum target, GLenum pname, GLfloat param)
3991{
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00003992 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint param = %f)", target, pname, param);
3993
Geoff Langbfdea662014-07-23 14:16:32 -04003994 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00003995
Geoff Langbfdea662014-07-23 14:16:32 -04003996 if (context)
3997 {
3998 if (!ValidateTexParamParameters(context, pname, static_cast<GLint>(param)))
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00003999 {
Geoff Langbfdea662014-07-23 14:16:32 -04004000 return;
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004001 }
Geoff Langbfdea662014-07-23 14:16:32 -04004002
4003 gl::Texture *texture = context->getTargetTexture(target);
4004
4005 if (!texture)
4006 {
4007 return gl::error(GL_INVALID_ENUM);
4008 }
4009
4010 switch (pname)
4011 {
4012 case GL_TEXTURE_WRAP_S: texture->getSamplerState().wrapS = gl::uiround<GLenum>(param); break;
4013 case GL_TEXTURE_WRAP_T: texture->getSamplerState().wrapT = gl::uiround<GLenum>(param); break;
4014 case GL_TEXTURE_WRAP_R: texture->getSamplerState().wrapR = gl::uiround<GLenum>(param); break;
4015 case GL_TEXTURE_MIN_FILTER: texture->getSamplerState().minFilter = gl::uiround<GLenum>(param); break;
4016 case GL_TEXTURE_MAG_FILTER: texture->getSamplerState().magFilter = gl::uiround<GLenum>(param); break;
4017 case GL_TEXTURE_USAGE_ANGLE: texture->setUsage(gl::uiround<GLenum>(param)); break;
4018 case GL_TEXTURE_MAX_ANISOTROPY_EXT: texture->getSamplerState().maxAnisotropy = std::min(param, context->getExtensions().maxTextureAnisotropy); break;
4019 case GL_TEXTURE_COMPARE_MODE: texture->getSamplerState().compareMode = gl::uiround<GLenum>(param); break;
4020 case GL_TEXTURE_COMPARE_FUNC: texture->getSamplerState().compareFunc = gl::uiround<GLenum>(param); break;
4021 case GL_TEXTURE_SWIZZLE_R: texture->getSamplerState().swizzleRed = gl::uiround<GLenum>(param); break;
4022 case GL_TEXTURE_SWIZZLE_G: texture->getSamplerState().swizzleGreen = gl::uiround<GLenum>(param); break;
4023 case GL_TEXTURE_SWIZZLE_B: texture->getSamplerState().swizzleBlue = gl::uiround<GLenum>(param); break;
4024 case GL_TEXTURE_SWIZZLE_A: texture->getSamplerState().swizzleAlpha = gl::uiround<GLenum>(param); break;
4025 case GL_TEXTURE_BASE_LEVEL: texture->getSamplerState().baseLevel = gl::iround<GLint>(param); break;
4026 case GL_TEXTURE_MAX_LEVEL: texture->getSamplerState().maxLevel = gl::iround<GLint>(param); break;
4027 case GL_TEXTURE_MIN_LOD: texture->getSamplerState().minLod = param; break;
4028 case GL_TEXTURE_MAX_LOD: texture->getSamplerState().maxLod = param; break;
4029 default: UNREACHABLE(); break;
4030 }
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004031 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004032}
4033
4034void __stdcall glTexParameterfv(GLenum target, GLenum pname, const GLfloat* params)
4035{
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004036 glTexParameterf(target, pname, (GLfloat)*params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004037}
4038
4039void __stdcall glTexParameteri(GLenum target, GLenum pname, GLint param)
4040{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004041 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint param = %d)", target, pname, param);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004042
Geoff Langbfdea662014-07-23 14:16:32 -04004043 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004044
Geoff Langbfdea662014-07-23 14:16:32 -04004045 if (context)
4046 {
4047 if (!ValidateTexParamParameters(context, pname, param))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004048 {
Geoff Langbfdea662014-07-23 14:16:32 -04004049 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004050 }
Geoff Langbfdea662014-07-23 14:16:32 -04004051
4052 gl::Texture *texture = context->getTargetTexture(target);
4053
4054 if (!texture)
4055 {
4056 return gl::error(GL_INVALID_ENUM);
4057 }
4058
4059 switch (pname)
4060 {
4061 case GL_TEXTURE_WRAP_S: texture->getSamplerState().wrapS = (GLenum)param; break;
4062 case GL_TEXTURE_WRAP_T: texture->getSamplerState().wrapT = (GLenum)param; break;
4063 case GL_TEXTURE_WRAP_R: texture->getSamplerState().wrapR = (GLenum)param; break;
4064 case GL_TEXTURE_MIN_FILTER: texture->getSamplerState().minFilter = (GLenum)param; break;
4065 case GL_TEXTURE_MAG_FILTER: texture->getSamplerState().magFilter = (GLenum)param; break;
4066 case GL_TEXTURE_USAGE_ANGLE: texture->setUsage((GLenum)param); break;
4067 case GL_TEXTURE_MAX_ANISOTROPY_EXT: texture->getSamplerState().maxAnisotropy = std::min((float)param, context->getExtensions().maxTextureAnisotropy); break;
4068 case GL_TEXTURE_COMPARE_MODE: texture->getSamplerState().compareMode = (GLenum)param; break;
4069 case GL_TEXTURE_COMPARE_FUNC: texture->getSamplerState().compareFunc = (GLenum)param; break;
4070 case GL_TEXTURE_SWIZZLE_R: texture->getSamplerState().swizzleRed = (GLenum)param; break;
4071 case GL_TEXTURE_SWIZZLE_G: texture->getSamplerState().swizzleGreen = (GLenum)param; break;
4072 case GL_TEXTURE_SWIZZLE_B: texture->getSamplerState().swizzleBlue = (GLenum)param; break;
4073 case GL_TEXTURE_SWIZZLE_A: texture->getSamplerState().swizzleAlpha = (GLenum)param; break;
4074 case GL_TEXTURE_BASE_LEVEL: texture->getSamplerState().baseLevel = param; break;
4075 case GL_TEXTURE_MAX_LEVEL: texture->getSamplerState().maxLevel = param; break;
4076 case GL_TEXTURE_MIN_LOD: texture->getSamplerState().minLod = (GLfloat)param; break;
4077 case GL_TEXTURE_MAX_LOD: texture->getSamplerState().maxLod = (GLfloat)param; break;
4078 default: UNREACHABLE(); break;
4079 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004080 }
4081}
4082
4083void __stdcall glTexParameteriv(GLenum target, GLenum pname, const GLint* params)
4084{
4085 glTexParameteri(target, pname, *params);
4086}
4087
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004088void __stdcall glTexStorage2DEXT(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
4089{
4090 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
4091 target, levels, internalformat, width, height);
4092
Geoff Langbfdea662014-07-23 14:16:32 -04004093 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004094
Geoff Langbfdea662014-07-23 14:16:32 -04004095 if (context)
4096 {
4097 if (!context->getExtensions().textureStorage)
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004098 {
Geoff Langbfdea662014-07-23 14:16:32 -04004099 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004100 }
Geoff Langbfdea662014-07-23 14:16:32 -04004101
4102 if (context->getClientVersion() < 3 &&
4103 !ValidateES2TexStorageParameters(context, target, levels, internalformat, width, height))
4104 {
4105 return;
4106 }
4107
4108 if (context->getClientVersion() >= 3 &&
4109 !ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, 1))
4110 {
4111 return;
4112 }
4113
4114 switch (target)
4115 {
4116 case GL_TEXTURE_2D:
4117 {
4118 gl::Texture2D *texture2d = context->getTexture2D();
4119 texture2d->storage(levels, internalformat, width, height);
4120 }
4121 break;
4122
4123 case GL_TEXTURE_CUBE_MAP:
4124 {
4125 gl::TextureCubeMap *textureCube = context->getTextureCubeMap();
4126 textureCube->storage(levels, internalformat, width);
4127 }
4128 break;
4129
4130 default:
4131 return gl::error(GL_INVALID_ENUM);
4132 }
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004133 }
4134}
4135
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00004136void __stdcall glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
4137 GLenum format, GLenum type, const GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004138{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004139 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004140 "GLsizei width = %d, GLsizei height = %d, GLenum format = 0x%X, GLenum type = 0x%X, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00004141 "const GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004142 target, level, xoffset, yoffset, width, height, format, type, pixels);
4143
Geoff Langbfdea662014-07-23 14:16:32 -04004144 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com00c75962010-03-11 20:36:15 +00004145
Geoff Langbfdea662014-07-23 14:16:32 -04004146 if (context)
4147 {
4148 if (context->getClientVersion() < 3 &&
4149 !ValidateES2TexImageParameters(context, target, level, GL_NONE, false, true,
4150 xoffset, yoffset, width, height, 0, format, type, pixels))
daniel@transgaming.com00c75962010-03-11 20:36:15 +00004151 {
Geoff Langbfdea662014-07-23 14:16:32 -04004152 return;
daniel@transgaming.com00c75962010-03-11 20:36:15 +00004153 }
Geoff Langbfdea662014-07-23 14:16:32 -04004154
4155 if (context->getClientVersion() >= 3 &&
4156 !ValidateES3TexImageParameters(context, target, level, GL_NONE, false, true,
4157 xoffset, yoffset, 0, width, height, 1, 0, format, type, pixels))
4158 {
4159 return;
4160 }
4161
4162 // Zero sized uploads are valid but no-ops
4163 if (width == 0 || height == 0)
4164 {
4165 return;
4166 }
4167
4168 switch (target)
4169 {
4170 case GL_TEXTURE_2D:
4171 {
4172 gl::Texture2D *texture = context->getTexture2D();
4173 texture->subImage(level, xoffset, yoffset, width, height, format, type, context->getState().getUnpackState(), pixels);
4174 }
4175 break;
4176
4177 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
4178 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
4179 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
4180 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
4181 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
4182 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
4183 {
4184 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4185 texture->subImage(target, level, xoffset, yoffset, width, height, format, type, context->getState().getUnpackState(), pixels);
4186 }
4187 break;
4188
4189 default:
4190 UNREACHABLE();
4191 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004192 }
4193}
4194
4195void __stdcall glUniform1f(GLint location, GLfloat x)
4196{
4197 glUniform1fv(location, 1, &x);
4198}
4199
4200void __stdcall glUniform1fv(GLint location, GLsizei count, const GLfloat* v)
4201{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004202 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004203
Geoff Langbfdea662014-07-23 14:16:32 -04004204 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004205
Geoff Langbfdea662014-07-23 14:16:32 -04004206 if (context)
4207 {
4208 if (!ValidateUniform(context, GL_FLOAT, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004209 {
Geoff Langbfdea662014-07-23 14:16:32 -04004210 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004211 }
Geoff Langbfdea662014-07-23 14:16:32 -04004212
4213 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4214 programBinary->setUniform1fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004215 }
4216}
4217
4218void __stdcall glUniform1i(GLint location, GLint x)
4219{
4220 glUniform1iv(location, 1, &x);
4221}
4222
4223void __stdcall glUniform1iv(GLint location, GLsizei count, const GLint* v)
4224{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004225 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004226
Geoff Langbfdea662014-07-23 14:16:32 -04004227 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004228
Geoff Langbfdea662014-07-23 14:16:32 -04004229 if (context)
4230 {
4231 if (!ValidateUniform(context, GL_INT, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004232 {
Geoff Langbfdea662014-07-23 14:16:32 -04004233 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004234 }
Geoff Langbfdea662014-07-23 14:16:32 -04004235
4236 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4237 programBinary->setUniform1iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004238 }
4239}
4240
4241void __stdcall glUniform2f(GLint location, GLfloat x, GLfloat y)
4242{
4243 GLfloat xy[2] = {x, y};
4244
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004245 glUniform2fv(location, 1, xy);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004246}
4247
4248void __stdcall glUniform2fv(GLint location, GLsizei count, const GLfloat* v)
4249{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004250 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004251
Geoff Langbfdea662014-07-23 14:16:32 -04004252 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004253
Geoff Langbfdea662014-07-23 14:16:32 -04004254 if (context)
4255 {
4256 if (!ValidateUniform(context, GL_FLOAT_VEC2, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004257 {
Geoff Langbfdea662014-07-23 14:16:32 -04004258 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004259 }
Geoff Langbfdea662014-07-23 14:16:32 -04004260
4261 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4262 programBinary->setUniform2fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004263 }
4264}
4265
4266void __stdcall glUniform2i(GLint location, GLint x, GLint y)
4267{
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004268 GLint xy[2] = {x, y};
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004269
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004270 glUniform2iv(location, 1, xy);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004271}
4272
4273void __stdcall glUniform2iv(GLint location, GLsizei count, const GLint* v)
4274{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004275 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004276
Geoff Langbfdea662014-07-23 14:16:32 -04004277 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004278
Geoff Langbfdea662014-07-23 14:16:32 -04004279 if (context)
4280 {
4281 if (!ValidateUniform(context, GL_INT_VEC2, location, count))
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004282 {
Geoff Langbfdea662014-07-23 14:16:32 -04004283 return;
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004284 }
Geoff Langbfdea662014-07-23 14:16:32 -04004285
4286 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4287 programBinary->setUniform2iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004288 }
4289}
4290
4291void __stdcall glUniform3f(GLint location, GLfloat x, GLfloat y, GLfloat z)
4292{
4293 GLfloat xyz[3] = {x, y, z};
4294
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004295 glUniform3fv(location, 1, xyz);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004296}
4297
4298void __stdcall glUniform3fv(GLint location, GLsizei count, const GLfloat* v)
4299{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004300 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004301
Geoff Langbfdea662014-07-23 14:16:32 -04004302 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004303
Geoff Langbfdea662014-07-23 14:16:32 -04004304 if (context)
4305 {
4306 if (!ValidateUniform(context, GL_FLOAT_VEC3, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004307 {
Geoff Langbfdea662014-07-23 14:16:32 -04004308 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004309 }
Geoff Langbfdea662014-07-23 14:16:32 -04004310
4311 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4312 programBinary->setUniform3fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004313 }
4314}
4315
4316void __stdcall glUniform3i(GLint location, GLint x, GLint y, GLint z)
4317{
4318 GLint xyz[3] = {x, y, z};
4319
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004320 glUniform3iv(location, 1, xyz);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004321}
4322
4323void __stdcall glUniform3iv(GLint location, GLsizei count, const GLint* v)
4324{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004325 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004326
Geoff Langbfdea662014-07-23 14:16:32 -04004327 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004328
Geoff Langbfdea662014-07-23 14:16:32 -04004329 if (context)
4330 {
4331 if (!ValidateUniform(context, GL_INT_VEC3, location, count))
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004332 {
Geoff Langbfdea662014-07-23 14:16:32 -04004333 return;
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004334 }
Geoff Langbfdea662014-07-23 14:16:32 -04004335
4336 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4337 programBinary->setUniform3iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004338 }
4339}
4340
4341void __stdcall glUniform4f(GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
4342{
4343 GLfloat xyzw[4] = {x, y, z, w};
4344
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004345 glUniform4fv(location, 1, xyzw);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004346}
4347
4348void __stdcall glUniform4fv(GLint location, GLsizei count, const GLfloat* v)
4349{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004350 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004351
Geoff Langbfdea662014-07-23 14:16:32 -04004352 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004353
Geoff Langbfdea662014-07-23 14:16:32 -04004354 if (context)
4355 {
4356 if (!ValidateUniform(context, GL_FLOAT_VEC4, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004357 {
Geoff Langbfdea662014-07-23 14:16:32 -04004358 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004359 }
Geoff Langbfdea662014-07-23 14:16:32 -04004360
4361 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4362 programBinary->setUniform4fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004363 }
4364}
4365
4366void __stdcall glUniform4i(GLint location, GLint x, GLint y, GLint z, GLint w)
4367{
4368 GLint xyzw[4] = {x, y, z, w};
4369
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004370 glUniform4iv(location, 1, xyzw);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004371}
4372
4373void __stdcall glUniform4iv(GLint location, GLsizei count, const GLint* v)
4374{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004375 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004376
Geoff Langbfdea662014-07-23 14:16:32 -04004377 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004378
Geoff Langbfdea662014-07-23 14:16:32 -04004379 if (context)
4380 {
4381 if (!ValidateUniform(context, GL_INT_VEC4, location, count))
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004382 {
Geoff Langbfdea662014-07-23 14:16:32 -04004383 return;
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004384 }
Geoff Langbfdea662014-07-23 14:16:32 -04004385
4386 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4387 programBinary->setUniform4iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004388 }
4389}
4390
4391void __stdcall glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
4392{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004393 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004394 location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004395
Geoff Langbfdea662014-07-23 14:16:32 -04004396 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004397
Geoff Langbfdea662014-07-23 14:16:32 -04004398 if (context)
4399 {
4400 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT2, location, count, transpose))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004401 {
Geoff Langbfdea662014-07-23 14:16:32 -04004402 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004403 }
Geoff Langbfdea662014-07-23 14:16:32 -04004404
4405 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4406 programBinary->setUniformMatrix2fv(location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004407 }
4408}
4409
4410void __stdcall glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
4411{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004412 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004413 location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004414
Geoff Langbfdea662014-07-23 14:16:32 -04004415 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004416
Geoff Langbfdea662014-07-23 14:16:32 -04004417 if (context)
4418 {
4419 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT3, location, count, transpose))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004420 {
Geoff Langbfdea662014-07-23 14:16:32 -04004421 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004422 }
Geoff Langbfdea662014-07-23 14:16:32 -04004423
4424 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4425 programBinary->setUniformMatrix3fv(location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004426 }
4427}
4428
4429void __stdcall glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
4430{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004431 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004432 location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004433
Geoff Langbfdea662014-07-23 14:16:32 -04004434 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004435
Geoff Langbfdea662014-07-23 14:16:32 -04004436 if (context)
4437 {
4438 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT4, location, count, transpose))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004439 {
Geoff Langbfdea662014-07-23 14:16:32 -04004440 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004441 }
Geoff Langbfdea662014-07-23 14:16:32 -04004442
4443 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4444 programBinary->setUniformMatrix4fv(location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004445 }
4446}
4447
4448void __stdcall glUseProgram(GLuint program)
4449{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004450 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004451
Geoff Langbfdea662014-07-23 14:16:32 -04004452 gl::Context *context = gl::getNonLostContext();
4453
4454 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004455 {
Geoff Langbfdea662014-07-23 14:16:32 -04004456 gl::Program *programObject = context->getProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004457
Geoff Langbfdea662014-07-23 14:16:32 -04004458 if (!programObject && program != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004459 {
Geoff Langbfdea662014-07-23 14:16:32 -04004460 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004461 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00004462 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004463 }
Geoff Langbfdea662014-07-23 14:16:32 -04004464 else
4465 {
4466 return gl::error(GL_INVALID_VALUE);
4467 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004468 }
Geoff Langbfdea662014-07-23 14:16:32 -04004469
4470 if (program != 0 && !programObject->isLinked())
4471 {
4472 return gl::error(GL_INVALID_OPERATION);
4473 }
4474
4475 context->useProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004476 }
4477}
4478
4479void __stdcall glValidateProgram(GLuint program)
4480{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004481 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004482
Geoff Langbfdea662014-07-23 14:16:32 -04004483 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004484
Geoff Langbfdea662014-07-23 14:16:32 -04004485 if (context)
4486 {
4487 gl::Program *programObject = context->getProgram(program);
4488
4489 if (!programObject)
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004490 {
Geoff Langbfdea662014-07-23 14:16:32 -04004491 if (context->getShader(program))
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004492 {
Geoff Langbfdea662014-07-23 14:16:32 -04004493 return gl::error(GL_INVALID_OPERATION);
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004494 }
Geoff Langbfdea662014-07-23 14:16:32 -04004495 else
4496 {
4497 return gl::error(GL_INVALID_VALUE);
4498 }
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004499 }
Geoff Langbfdea662014-07-23 14:16:32 -04004500
4501 programObject->validate();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004502 }
4503}
4504
4505void __stdcall glVertexAttrib1f(GLuint index, GLfloat x)
4506{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004507 EVENT("(GLuint index = %d, GLfloat x = %f)", index, x);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004508
Geoff Langbfdea662014-07-23 14:16:32 -04004509 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004510 {
Geoff Langbfdea662014-07-23 14:16:32 -04004511 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004512 }
Geoff Langbfdea662014-07-23 14:16:32 -04004513
4514 gl::Context *context = gl::getNonLostContext();
4515
4516 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004517 {
Geoff Langbfdea662014-07-23 14:16:32 -04004518 GLfloat vals[4] = { x, 0, 0, 1 };
4519 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004520 }
4521}
4522
4523void __stdcall glVertexAttrib1fv(GLuint index, const GLfloat* values)
4524{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004525 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004526
Geoff Langbfdea662014-07-23 14:16:32 -04004527 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004528 {
Geoff Langbfdea662014-07-23 14:16:32 -04004529 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004530 }
Geoff Langbfdea662014-07-23 14:16:32 -04004531
4532 gl::Context *context = gl::getNonLostContext();
4533
4534 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004535 {
Geoff Langbfdea662014-07-23 14:16:32 -04004536 GLfloat vals[4] = { values[0], 0, 0, 1 };
4537 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004538 }
4539}
4540
4541void __stdcall glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y)
4542{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004543 EVENT("(GLuint index = %d, GLfloat x = %f, GLfloat y = %f)", index, x, y);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004544
Geoff Langbfdea662014-07-23 14:16:32 -04004545 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004546 {
Geoff Langbfdea662014-07-23 14:16:32 -04004547 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004548 }
Geoff Langbfdea662014-07-23 14:16:32 -04004549
4550 gl::Context *context = gl::getNonLostContext();
4551
4552 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004553 {
Geoff Langbfdea662014-07-23 14:16:32 -04004554 GLfloat vals[4] = { x, y, 0, 1 };
4555 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004556 }
4557}
4558
4559void __stdcall glVertexAttrib2fv(GLuint index, const GLfloat* values)
4560{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004561 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004562
Geoff Langbfdea662014-07-23 14:16:32 -04004563 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004564 {
Geoff Langbfdea662014-07-23 14:16:32 -04004565 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004566 }
Geoff Langbfdea662014-07-23 14:16:32 -04004567
4568 gl::Context *context = gl::getNonLostContext();
4569
4570 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004571 {
Geoff Langbfdea662014-07-23 14:16:32 -04004572 GLfloat vals[4] = { values[0], values[1], 0, 1 };
4573 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004574 }
4575}
4576
4577void __stdcall glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z)
4578{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004579 EVENT("(GLuint index = %d, GLfloat x = %f, GLfloat y = %f, GLfloat z = %f)", index, x, y, z);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004580
Geoff Langbfdea662014-07-23 14:16:32 -04004581 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004582 {
Geoff Langbfdea662014-07-23 14:16:32 -04004583 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004584 }
Geoff Langbfdea662014-07-23 14:16:32 -04004585
4586 gl::Context *context = gl::getNonLostContext();
4587
4588 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004589 {
Geoff Langbfdea662014-07-23 14:16:32 -04004590 GLfloat vals[4] = { x, y, z, 1 };
4591 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004592 }
4593}
4594
4595void __stdcall glVertexAttrib3fv(GLuint index, const GLfloat* values)
4596{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004597 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004598
Geoff Langbfdea662014-07-23 14:16:32 -04004599 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004600 {
Geoff Langbfdea662014-07-23 14:16:32 -04004601 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004602 }
Geoff Langbfdea662014-07-23 14:16:32 -04004603
4604 gl::Context *context = gl::getNonLostContext();
4605
4606 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004607 {
Geoff Langbfdea662014-07-23 14:16:32 -04004608 GLfloat vals[4] = { values[0], values[1], values[2], 1 };
4609 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004610 }
4611}
4612
4613void __stdcall glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
4614{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004615 EVENT("(GLuint index = %d, GLfloat x = %f, GLfloat y = %f, GLfloat z = %f, GLfloat w = %f)", index, x, y, z, w);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004616
Geoff Langbfdea662014-07-23 14:16:32 -04004617 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004618 {
Geoff Langbfdea662014-07-23 14:16:32 -04004619 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004620 }
Geoff Langbfdea662014-07-23 14:16:32 -04004621
4622 gl::Context *context = gl::getNonLostContext();
4623
4624 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004625 {
Geoff Langbfdea662014-07-23 14:16:32 -04004626 GLfloat vals[4] = { x, y, z, w };
4627 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004628 }
4629}
4630
4631void __stdcall glVertexAttrib4fv(GLuint index, const GLfloat* values)
4632{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004633 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004634
Geoff Langbfdea662014-07-23 14:16:32 -04004635 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004636 {
Geoff Langbfdea662014-07-23 14:16:32 -04004637 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004638 }
Geoff Langbfdea662014-07-23 14:16:32 -04004639
4640 gl::Context *context = gl::getNonLostContext();
4641
4642 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004643 {
Geoff Langbfdea662014-07-23 14:16:32 -04004644 context->getState().setVertexAttribf(index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004645 }
4646}
4647
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004648void __stdcall glVertexAttribDivisorANGLE(GLuint index, GLuint divisor)
4649{
4650 EVENT("(GLuint index = %d, GLuint divisor = %d)", index, divisor);
4651
Geoff Langbfdea662014-07-23 14:16:32 -04004652 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004653 {
Geoff Langbfdea662014-07-23 14:16:32 -04004654 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004655 }
Geoff Langbfdea662014-07-23 14:16:32 -04004656
4657 gl::Context *context = gl::getNonLostContext();
4658
4659 if (context)
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004660 {
Geoff Langbfdea662014-07-23 14:16:32 -04004661 context->setVertexAttribDivisor(index, divisor);
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004662 }
4663}
4664
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00004665void __stdcall glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004666{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004667 EVENT("(GLuint index = %d, GLint size = %d, GLenum type = 0x%X, "
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004668 "GLboolean normalized = %u, GLsizei stride = %d, const GLvoid* ptr = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004669 index, size, type, normalized, stride, ptr);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004670
Geoff Langbfdea662014-07-23 14:16:32 -04004671 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004672 {
Geoff Langbfdea662014-07-23 14:16:32 -04004673 return gl::error(GL_INVALID_VALUE);
4674 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004675
Geoff Langbfdea662014-07-23 14:16:32 -04004676 if (size < 1 || size > 4)
4677 {
4678 return gl::error(GL_INVALID_VALUE);
4679 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004680
Geoff Langbfdea662014-07-23 14:16:32 -04004681 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.com1a4e09a2013-04-13 03:33:30 +00004682
Geoff Langbfdea662014-07-23 14:16:32 -04004683 switch (type)
4684 {
4685 case GL_BYTE:
4686 case GL_UNSIGNED_BYTE:
4687 case GL_SHORT:
4688 case GL_UNSIGNED_SHORT:
4689 case GL_FIXED:
4690 case GL_FLOAT:
4691 break;
4692 case GL_HALF_FLOAT:
4693 case GL_INT:
4694 case GL_UNSIGNED_INT:
4695 case GL_INT_2_10_10_10_REV:
4696 case GL_UNSIGNED_INT_2_10_10_10_REV:
4697 if (context && context->getClientVersion() < 3)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004698 {
shannon.woods@transgaming.com779aa262013-02-28 23:04:58 +00004699 return gl::error(GL_INVALID_ENUM);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004700 }
Geoff Langbfdea662014-07-23 14:16:32 -04004701 else
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004702 {
Geoff Langbfdea662014-07-23 14:16:32 -04004703 break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004704 }
Geoff Langbfdea662014-07-23 14:16:32 -04004705 default:
4706 return gl::error(GL_INVALID_ENUM);
4707 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004708
Geoff Langbfdea662014-07-23 14:16:32 -04004709 if (stride < 0)
4710 {
4711 return gl::error(GL_INVALID_VALUE);
4712 }
4713
4714 if ((type == GL_INT_2_10_10_10_REV || type == GL_UNSIGNED_INT_2_10_10_10_REV) && size != 4)
4715 {
4716 return gl::error(GL_INVALID_OPERATION);
4717 }
4718
4719 if (context)
4720 {
4721 // [OpenGL ES 3.0.2] Section 2.8 page 24:
4722 // An INVALID_OPERATION error is generated when a non-zero vertex array object
4723 // is bound, zero is bound to the ARRAY_BUFFER buffer object binding point,
4724 // and the pointer argument is not NULL.
4725 if (context->getState().getVertexArray()->id() != 0 && context->getState().getArrayBufferId() == 0 && ptr != NULL)
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00004726 {
4727 return gl::error(GL_INVALID_OPERATION);
4728 }
4729
Geoff Langbfdea662014-07-23 14:16:32 -04004730 context->getState().setVertexAttribState(index, context->getState().getTargetBuffer(GL_ARRAY_BUFFER), size, type,
4731 normalized == GL_TRUE, false, stride, ptr);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004732 }
4733}
4734
4735void __stdcall glViewport(GLint x, GLint y, GLsizei width, GLsizei height)
4736{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004737 EVENT("(GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)", x, y, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004738
Geoff Langbfdea662014-07-23 14:16:32 -04004739 if (width < 0 || height < 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004740 {
Geoff Langbfdea662014-07-23 14:16:32 -04004741 return gl::error(GL_INVALID_VALUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004742 }
Geoff Langbfdea662014-07-23 14:16:32 -04004743
4744 gl::Context *context = gl::getNonLostContext();
4745
4746 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004747 {
Geoff Langbfdea662014-07-23 14:16:32 -04004748 context->getState().setViewportParams(x, y, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004749 }
4750}
4751
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004752// OpenGL ES 3.0 functions
4753
4754void __stdcall glReadBuffer(GLenum mode)
4755{
4756 EVENT("(GLenum mode = 0x%X)", mode);
4757
Geoff Langbfdea662014-07-23 14:16:32 -04004758 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004759
Geoff Langbfdea662014-07-23 14:16:32 -04004760 if (context)
4761 {
4762 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004763 {
Geoff Langbfdea662014-07-23 14:16:32 -04004764 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00004765 }
Geoff Langbfdea662014-07-23 14:16:32 -04004766
4767 // glReadBuffer
4768 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004769 }
4770}
4771
4772void __stdcall glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid* indices)
4773{
4774 EVENT("(GLenum mode = 0x%X, GLuint start = %u, GLuint end = %u, GLsizei count = %d, GLenum type = 0x%X, "
4775 "const GLvoid* indices = 0x%0.8p)", mode, start, end, count, type, indices);
4776
Geoff Langbfdea662014-07-23 14:16:32 -04004777 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004778
Geoff Langbfdea662014-07-23 14:16:32 -04004779 if (context)
4780 {
4781 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004782 {
Geoff Langbfdea662014-07-23 14:16:32 -04004783 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00004784 }
Geoff Langbfdea662014-07-23 14:16:32 -04004785
4786 // glDrawRangeElements
4787 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004788 }
4789}
4790
4791void __stdcall glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels)
4792{
4793 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint internalformat = %d, GLsizei width = %d, "
4794 "GLsizei height = %d, GLsizei depth = %d, GLint border = %d, GLenum format = 0x%X, "
4795 "GLenum type = 0x%X, const GLvoid* pixels = 0x%0.8p)",
4796 target, level, internalformat, width, height, depth, border, format, type, pixels);
4797
Geoff Langbfdea662014-07-23 14:16:32 -04004798 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004799
Geoff Langbfdea662014-07-23 14:16:32 -04004800 if (context)
4801 {
4802 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004803 {
Geoff Langbfdea662014-07-23 14:16:32 -04004804 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00004805 }
Geoff Langbfdea662014-07-23 14:16:32 -04004806
4807 // validateES3TexImageFormat sets the error code if there is an error
4808 if (!ValidateES3TexImageParameters(context, target, level, internalformat, false, false,
4809 0, 0, 0, width, height, depth, border, format, type, pixels))
4810 {
4811 return;
4812 }
4813
4814 switch(target)
4815 {
4816 case GL_TEXTURE_3D:
4817 {
4818 gl::Texture3D *texture = context->getTexture3D();
4819 texture->setImage(level, width, height, depth, internalformat, format, type, context->getState().getUnpackState(), pixels);
4820 }
4821 break;
4822
4823 case GL_TEXTURE_2D_ARRAY:
4824 {
4825 gl::Texture2DArray *texture = context->getTexture2DArray();
4826 texture->setImage(level, width, height, depth, internalformat, format, type, context->getState().getUnpackState(), pixels);
4827 }
4828 break;
4829
4830 default:
4831 return gl::error(GL_INVALID_ENUM);
4832 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004833 }
4834}
4835
4836void __stdcall glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels)
4837{
4838 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
4839 "GLint zoffset = %d, GLsizei width = %d, GLsizei height = %d, GLsizei depth = %d, "
4840 "GLenum format = 0x%X, GLenum type = 0x%X, const GLvoid* pixels = 0x%0.8p)",
4841 target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
4842
Geoff Langbfdea662014-07-23 14:16:32 -04004843 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004844
Geoff Langbfdea662014-07-23 14:16:32 -04004845 if (context)
4846 {
4847 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004848 {
Geoff Langbfdea662014-07-23 14:16:32 -04004849 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00004850 }
Geoff Langbfdea662014-07-23 14:16:32 -04004851
4852 // validateES3TexImageFormat sets the error code if there is an error
4853 if (!ValidateES3TexImageParameters(context, target, level, GL_NONE, false, true,
4854 xoffset, yoffset, zoffset, width, height, depth, 0,
4855 format, type, pixels))
4856 {
4857 return;
4858 }
4859
4860 // Zero sized uploads are valid but no-ops
4861 if (width == 0 || height == 0 || depth == 0)
4862 {
4863 return;
4864 }
4865
4866 switch(target)
4867 {
4868 case GL_TEXTURE_3D:
4869 {
4870 gl::Texture3D *texture = context->getTexture3D();
4871 texture->subImage(level, xoffset, yoffset, zoffset, width, height, depth, format, type, context->getState().getUnpackState(), pixels);
4872 }
4873 break;
4874
4875 case GL_TEXTURE_2D_ARRAY:
4876 {
4877 gl::Texture2DArray *texture = context->getTexture2DArray();
4878 texture->subImage(level, xoffset, yoffset, zoffset, width, height, depth, format, type, context->getState().getUnpackState(), pixels);
4879 }
4880 break;
4881
4882 default:
4883 return gl::error(GL_INVALID_ENUM);
4884 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004885 }
4886}
4887
4888void __stdcall glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
4889{
4890 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
4891 "GLint zoffset = %d, GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
4892 target, level, xoffset, yoffset, zoffset, x, y, width, height);
4893
Geoff Langbfdea662014-07-23 14:16:32 -04004894 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004895
Geoff Langbfdea662014-07-23 14:16:32 -04004896 if (context)
4897 {
4898 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004899 {
Geoff Langbfdea662014-07-23 14:16:32 -04004900 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00004901 }
Geoff Langbfdea662014-07-23 14:16:32 -04004902
4903 if (!ValidateES3CopyTexImageParameters(context, target, level, GL_NONE, true, xoffset, yoffset, zoffset,
4904 x, y, width, height, 0))
4905 {
4906 return;
4907 }
4908
4909 gl::Framebuffer *framebuffer = context->getState().getReadFramebuffer();
4910 gl::Texture *texture = NULL;
4911 switch (target)
4912 {
4913 case GL_TEXTURE_3D:
4914 texture = context->getTexture3D();
4915 break;
4916
4917 case GL_TEXTURE_2D_ARRAY:
4918 texture = context->getTexture2DArray();
4919 break;
4920
4921 default:
4922 return gl::error(GL_INVALID_ENUM);
4923 }
4924
4925 texture->copySubImage(target, level, xoffset, yoffset, zoffset, x, y, width, height, framebuffer);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004926 }
4927}
4928
4929void __stdcall glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data)
4930{
Geoff Langeef52cc2013-10-16 15:07:39 -04004931 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, GLsizei width = %d, "
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004932 "GLsizei height = %d, GLsizei depth = %d, GLint border = %d, GLsizei imageSize = %d, "
4933 "const GLvoid* data = 0x%0.8p)",
4934 target, level, internalformat, width, height, depth, border, imageSize, data);
4935
Geoff Langbfdea662014-07-23 14:16:32 -04004936 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004937
Geoff Langbfdea662014-07-23 14:16:32 -04004938 if (context)
4939 {
4940 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004941 {
Geoff Langbfdea662014-07-23 14:16:32 -04004942 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00004943 }
Geoff Langbfdea662014-07-23 14:16:32 -04004944
Geoff Lang5d601382014-07-22 15:14:06 -04004945 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(internalformat);
4946 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -04004947 {
4948 return gl::error(GL_INVALID_VALUE);
4949 }
4950
4951 // validateES3TexImageFormat sets the error code if there is an error
4952 if (!ValidateES3TexImageParameters(context, target, level, internalformat, true, false,
4953 0, 0, 0, width, height, depth, border, GL_NONE, GL_NONE, data))
4954 {
4955 return;
4956 }
4957
4958 switch(target)
4959 {
4960 case GL_TEXTURE_3D:
4961 {
4962 gl::Texture3D *texture = context->getTexture3D();
4963 texture->setCompressedImage(level, internalformat, width, height, depth, imageSize, data);
4964 }
4965 break;
4966
4967 case GL_TEXTURE_2D_ARRAY:
4968 {
4969 gl::Texture2DArray *texture = context->getTexture2DArray();
4970 texture->setCompressedImage(level, internalformat, width, height, depth, imageSize, data);
4971 }
4972 break;
4973
4974 default:
4975 return gl::error(GL_INVALID_ENUM);
4976 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004977 }
4978}
4979
4980void __stdcall glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data)
4981{
4982 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
4983 "GLint zoffset = %d, GLsizei width = %d, GLsizei height = %d, GLsizei depth = %d, "
4984 "GLenum format = 0x%X, GLsizei imageSize = %d, const GLvoid* data = 0x%0.8p)",
4985 target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data);
4986
Geoff Langbfdea662014-07-23 14:16:32 -04004987 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004988
Geoff Langbfdea662014-07-23 14:16:32 -04004989 if (context)
4990 {
4991 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004992 {
Geoff Langbfdea662014-07-23 14:16:32 -04004993 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00004994 }
Geoff Langbfdea662014-07-23 14:16:32 -04004995
Geoff Lang5d601382014-07-22 15:14:06 -04004996 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(format);
4997 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -04004998 {
4999 return gl::error(GL_INVALID_VALUE);
5000 }
5001
5002 if (!data)
5003 {
5004 return gl::error(GL_INVALID_VALUE);
5005 }
5006
5007 // validateES3TexImageFormat sets the error code if there is an error
5008 if (!ValidateES3TexImageParameters(context, target, level, GL_NONE, true, true,
5009 0, 0, 0, width, height, depth, 0, GL_NONE, GL_NONE, data))
5010 {
5011 return;
5012 }
5013
5014 // Zero sized uploads are valid but no-ops
5015 if (width == 0 || height == 0)
5016 {
5017 return;
5018 }
5019
5020 switch(target)
5021 {
5022 case GL_TEXTURE_3D:
5023 {
5024 gl::Texture3D *texture = context->getTexture3D();
5025 texture->subImageCompressed(level, xoffset, yoffset, zoffset, width, height, depth,
5026 format, imageSize, data);
5027 }
5028 break;
5029
5030 case GL_TEXTURE_2D_ARRAY:
5031 {
5032 gl::Texture2DArray *texture = context->getTexture2DArray();
5033 texture->subImageCompressed(level, xoffset, yoffset, zoffset, width, height, depth,
5034 format, imageSize, data);
5035 }
5036 break;
5037
5038 default:
5039 return gl::error(GL_INVALID_ENUM);
5040 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005041 }
5042}
5043
5044void __stdcall glGenQueries(GLsizei n, GLuint* ids)
5045{
5046 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
5047
Geoff Langbfdea662014-07-23 14:16:32 -04005048 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005049
Geoff Langbfdea662014-07-23 14:16:32 -04005050 if (context)
5051 {
5052 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005053 {
Geoff Langbfdea662014-07-23 14:16:32 -04005054 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005055 }
Geoff Langbfdea662014-07-23 14:16:32 -04005056
5057 if (n < 0)
5058 {
5059 return gl::error(GL_INVALID_VALUE);
5060 }
5061
5062 for (GLsizei i = 0; i < n; i++)
5063 {
5064 ids[i] = context->createQuery();
5065 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005066 }
5067}
5068
5069void __stdcall glDeleteQueries(GLsizei n, const GLuint* ids)
5070{
5071 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
5072
Geoff Langbfdea662014-07-23 14:16:32 -04005073 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005074
Geoff Langbfdea662014-07-23 14:16:32 -04005075 if (context)
5076 {
5077 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005078 {
Geoff Langbfdea662014-07-23 14:16:32 -04005079 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005080 }
Geoff Langbfdea662014-07-23 14:16:32 -04005081
5082 if (n < 0)
5083 {
5084 return gl::error(GL_INVALID_VALUE);
5085 }
5086
5087 for (GLsizei i = 0; i < n; i++)
5088 {
5089 context->deleteQuery(ids[i]);
5090 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005091 }
5092}
5093
5094GLboolean __stdcall glIsQuery(GLuint id)
5095{
5096 EVENT("(GLuint id = %u)", id);
5097
Geoff Langbfdea662014-07-23 14:16:32 -04005098 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005099
Geoff Langbfdea662014-07-23 14:16:32 -04005100 if (context)
5101 {
5102 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005103 {
Geoff Langbfdea662014-07-23 14:16:32 -04005104 return gl::error(GL_INVALID_OPERATION, GL_FALSE);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005105 }
Geoff Langbfdea662014-07-23 14:16:32 -04005106
5107 return (context->getQuery(id, false, GL_NONE) != NULL) ? GL_TRUE : GL_FALSE;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005108 }
5109
5110 return GL_FALSE;
5111}
5112
5113void __stdcall glBeginQuery(GLenum target, GLuint id)
5114{
5115 EVENT("(GLenum target = 0x%X, GLuint id = %u)", target, id);
5116
Geoff Langbfdea662014-07-23 14:16:32 -04005117 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005118
Geoff Langbfdea662014-07-23 14:16:32 -04005119 if (context)
5120 {
5121 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005122 {
Geoff Langbfdea662014-07-23 14:16:32 -04005123 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005124 }
Geoff Langbfdea662014-07-23 14:16:32 -04005125
5126 if (!ValidateBeginQuery(context, target, id))
5127 {
5128 return;
5129 }
5130 context->beginQuery(target, id);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005131 }
5132}
5133
5134void __stdcall glEndQuery(GLenum target)
5135{
5136 EVENT("(GLenum target = 0x%X)", target);
5137
Geoff Langbfdea662014-07-23 14:16:32 -04005138 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005139
Geoff Langbfdea662014-07-23 14:16:32 -04005140 if (context)
5141 {
5142 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005143 {
Geoff Langbfdea662014-07-23 14:16:32 -04005144 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005145 }
Geoff Langbfdea662014-07-23 14:16:32 -04005146
5147 if (!ValidateEndQuery(context, target))
5148 {
5149 return;
5150 }
5151
5152 context->endQuery(target);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005153 }
5154}
5155
5156void __stdcall glGetQueryiv(GLenum target, GLenum pname, GLint* params)
5157{
5158 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", target, pname, params);
5159
Geoff Langbfdea662014-07-23 14:16:32 -04005160 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005161
Geoff Langbfdea662014-07-23 14:16:32 -04005162 if (context)
5163 {
5164 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005165 {
Geoff Langbfdea662014-07-23 14:16:32 -04005166 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005167 }
Geoff Langbfdea662014-07-23 14:16:32 -04005168
5169 if (!ValidQueryType(context, target))
5170 {
5171 return gl::error(GL_INVALID_ENUM);
5172 }
5173
5174 switch (pname)
5175 {
5176 case GL_CURRENT_QUERY:
5177 params[0] = static_cast<GLint>(context->getState().getActiveQueryId(target));
5178 break;
5179
5180 default:
5181 return gl::error(GL_INVALID_ENUM);
5182 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005183 }
5184}
5185
5186void __stdcall glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint* params)
5187{
5188 EVENT("(GLuint id = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", id, pname, params);
5189
Geoff Langbfdea662014-07-23 14:16:32 -04005190 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005191
Geoff Langbfdea662014-07-23 14:16:32 -04005192 if (context)
5193 {
5194 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005195 {
Geoff Langbfdea662014-07-23 14:16:32 -04005196 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005197 }
Geoff Langbfdea662014-07-23 14:16:32 -04005198
5199 gl::Query *queryObject = context->getQuery(id, false, GL_NONE);
5200
5201 if (!queryObject)
5202 {
5203 return gl::error(GL_INVALID_OPERATION);
5204 }
5205
5206 if (context->getState().getActiveQueryId(queryObject->getType()) == id)
5207 {
5208 return gl::error(GL_INVALID_OPERATION);
5209 }
5210
5211 switch(pname)
5212 {
5213 case GL_QUERY_RESULT:
5214 params[0] = queryObject->getResult();
5215 break;
5216 case GL_QUERY_RESULT_AVAILABLE:
5217 params[0] = queryObject->isResultAvailable();
5218 break;
5219 default:
5220 return gl::error(GL_INVALID_ENUM);
5221 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005222 }
5223}
5224
5225GLboolean __stdcall glUnmapBuffer(GLenum target)
5226{
5227 EVENT("(GLenum target = 0x%X)", target);
5228
Geoff Langbfdea662014-07-23 14:16:32 -04005229 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005230
Geoff Langbfdea662014-07-23 14:16:32 -04005231 if (context)
5232 {
5233 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005234 {
Geoff Langbfdea662014-07-23 14:16:32 -04005235 return gl::error(GL_INVALID_OPERATION, GL_FALSE);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005236 }
Geoff Langbfdea662014-07-23 14:16:32 -04005237
5238 return glUnmapBufferOES(target);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005239 }
5240
5241 return GL_FALSE;
5242}
5243
5244void __stdcall glGetBufferPointerv(GLenum target, GLenum pname, GLvoid** params)
5245{
5246 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLvoid** params = 0x%0.8p)", target, pname, params);
5247
Geoff Langbfdea662014-07-23 14:16:32 -04005248 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005249
Geoff Langbfdea662014-07-23 14:16:32 -04005250 if (context)
5251 {
5252 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005253 {
Geoff Langbfdea662014-07-23 14:16:32 -04005254 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005255 }
Geoff Langbfdea662014-07-23 14:16:32 -04005256
5257 glGetBufferPointervOES(target, pname, params);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005258 }
5259}
5260
5261void __stdcall glDrawBuffers(GLsizei n, const GLenum* bufs)
5262{
Geoff Langbfdea662014-07-23 14:16:32 -04005263 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005264
Geoff Langbfdea662014-07-23 14:16:32 -04005265 if (context)
5266 {
5267 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005268 {
Geoff Langbfdea662014-07-23 14:16:32 -04005269 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com7948c5f2013-04-13 03:38:58 +00005270 }
Geoff Langbfdea662014-07-23 14:16:32 -04005271
5272 glDrawBuffersEXT(n, bufs);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005273 }
5274}
5275
5276void __stdcall glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5277{
5278 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5279 location, count, transpose, value);
5280
Geoff Langbfdea662014-07-23 14:16:32 -04005281 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005282
Geoff Langbfdea662014-07-23 14:16:32 -04005283 if (context)
5284 {
5285 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT2x3, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005286 {
Geoff Langbfdea662014-07-23 14:16:32 -04005287 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005288 }
Geoff Langbfdea662014-07-23 14:16:32 -04005289
5290 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5291 programBinary->setUniformMatrix2x3fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005292 }
5293}
5294
5295void __stdcall glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5296{
5297 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5298 location, count, transpose, value);
5299
Geoff Langbfdea662014-07-23 14:16:32 -04005300 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005301
Geoff Langbfdea662014-07-23 14:16:32 -04005302 if (context)
5303 {
5304 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT3x2, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005305 {
Geoff Langbfdea662014-07-23 14:16:32 -04005306 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005307 }
Geoff Langbfdea662014-07-23 14:16:32 -04005308
5309 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5310 programBinary->setUniformMatrix3x2fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005311 }
5312}
5313
5314void __stdcall glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5315{
5316 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5317 location, count, transpose, value);
5318
Geoff Langbfdea662014-07-23 14:16:32 -04005319 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005320
Geoff Langbfdea662014-07-23 14:16:32 -04005321 if (context)
5322 {
5323 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT2x4, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005324 {
Geoff Langbfdea662014-07-23 14:16:32 -04005325 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005326 }
Geoff Langbfdea662014-07-23 14:16:32 -04005327
5328 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5329 programBinary->setUniformMatrix2x4fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005330 }
5331}
5332
5333void __stdcall glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5334{
5335 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5336 location, count, transpose, value);
5337
Geoff Langbfdea662014-07-23 14:16:32 -04005338 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005339
Geoff Langbfdea662014-07-23 14:16:32 -04005340 if (context)
5341 {
5342 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT4x2, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005343 {
Geoff Langbfdea662014-07-23 14:16:32 -04005344 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005345 }
Geoff Langbfdea662014-07-23 14:16:32 -04005346
5347 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5348 programBinary->setUniformMatrix4x2fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005349 }
5350}
5351
5352void __stdcall glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5353{
5354 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5355 location, count, transpose, value);
5356
Geoff Langbfdea662014-07-23 14:16:32 -04005357 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005358
Geoff Langbfdea662014-07-23 14:16:32 -04005359 if (context)
5360 {
5361 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT3x4, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005362 {
Geoff Langbfdea662014-07-23 14:16:32 -04005363 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005364 }
Geoff Langbfdea662014-07-23 14:16:32 -04005365
5366 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5367 programBinary->setUniformMatrix3x4fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005368 }
5369}
5370
5371void __stdcall glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5372{
5373 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5374 location, count, transpose, value);
5375
Geoff Langbfdea662014-07-23 14:16:32 -04005376 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005377
Geoff Langbfdea662014-07-23 14:16:32 -04005378 if (context)
5379 {
5380 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT4x3, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005381 {
Geoff Langbfdea662014-07-23 14:16:32 -04005382 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005383 }
Geoff Langbfdea662014-07-23 14:16:32 -04005384
5385 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5386 programBinary->setUniformMatrix4x3fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005387 }
5388}
5389
5390void __stdcall glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
5391{
5392 EVENT("(GLint srcX0 = %d, GLint srcY0 = %d, GLint srcX1 = %d, GLint srcY1 = %d, GLint dstX0 = %d, "
5393 "GLint dstY0 = %d, GLint dstX1 = %d, GLint dstY1 = %d, GLbitfield mask = 0x%X, GLenum filter = 0x%X)",
5394 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
5395
Geoff Langbfdea662014-07-23 14:16:32 -04005396 gl::Context *context = gl::getNonLostContext();
5397 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005398 {
Geoff Langbfdea662014-07-23 14:16:32 -04005399 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005400 {
Geoff Langbfdea662014-07-23 14:16:32 -04005401 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005402 }
Geoff Langbfdea662014-07-23 14:16:32 -04005403
5404 if (!ValidateBlitFramebufferParameters(context, srcX0, srcY0, srcX1, srcY1,
5405 dstX0, dstY0, dstX1, dstY1, mask, filter,
5406 false))
5407 {
5408 return;
5409 }
5410
5411 context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
5412 mask, filter);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005413 }
5414}
5415
5416void __stdcall glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
5417{
5418 EVENT("(GLenum target = 0x%X, GLsizei samples = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
5419 target, samples, internalformat, width, height);
5420
Geoff Langbfdea662014-07-23 14:16:32 -04005421 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005422
Geoff Langbfdea662014-07-23 14:16:32 -04005423 if (context)
5424 {
5425 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005426 {
Geoff Langbfdea662014-07-23 14:16:32 -04005427 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005428 }
Geoff Langbfdea662014-07-23 14:16:32 -04005429
5430 if (!ValidateRenderbufferStorageParameters(context, target, samples, internalformat,
5431 width, height, false))
5432 {
5433 return;
5434 }
5435
5436 context->setRenderbufferStorage(width, height, internalformat, samples);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005437 }
5438}
5439
5440void __stdcall glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)
5441{
5442 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLuint texture = %u, GLint level = %d, GLint layer = %d)",
5443 target, attachment, texture, level, layer);
5444
Geoff Langbfdea662014-07-23 14:16:32 -04005445 gl::Context *context = gl::getNonLostContext();
5446
5447 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005448 {
Geoff Langbfdea662014-07-23 14:16:32 -04005449 if (!ValidateFramebufferTextureLayer(context, target, attachment, texture,
5450 level, layer))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005451 {
Geoff Langbfdea662014-07-23 14:16:32 -04005452 return;
5453 }
Geoff Lang3ed0c482013-07-25 17:03:18 -04005454
Geoff Langbfdea662014-07-23 14:16:32 -04005455 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
5456 ASSERT(framebuffer);
Geoff Lang3ed0c482013-07-25 17:03:18 -04005457
Geoff Langbfdea662014-07-23 14:16:32 -04005458 gl::Texture *textureObject = context->getTexture(texture);
5459 GLenum textarget = textureObject ? textureObject->getTarget() : GL_NONE;
Geoff Lang3ed0c482013-07-25 17:03:18 -04005460
Geoff Langbfdea662014-07-23 14:16:32 -04005461 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
5462 {
5463 const unsigned int colorAttachment = (attachment - GL_COLOR_ATTACHMENT0_EXT);
5464 framebuffer->setColorbuffer(colorAttachment, textarget, texture, level, layer);
5465 }
5466 else
5467 {
5468 switch (attachment)
Geoff Lang3ed0c482013-07-25 17:03:18 -04005469 {
Geoff Langbfdea662014-07-23 14:16:32 -04005470 case GL_DEPTH_ATTACHMENT: framebuffer->setDepthbuffer(textarget, texture, level, layer); break;
5471 case GL_STENCIL_ATTACHMENT: framebuffer->setStencilbuffer(textarget, texture, level, layer); break;
5472 case GL_DEPTH_STENCIL_ATTACHMENT: framebuffer->setDepthStencilBuffer(textarget, texture, level, layer); break;
Geoff Lang3ed0c482013-07-25 17:03:18 -04005473 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005474 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005475 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005476}
5477
5478GLvoid* __stdcall glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
5479{
5480 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d, GLbitfield access = 0x%X)",
5481 target, offset, length, access);
5482
Geoff Langbfdea662014-07-23 14:16:32 -04005483 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005484
Geoff Langbfdea662014-07-23 14:16:32 -04005485 if (context)
5486 {
5487 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005488 {
Geoff Langbfdea662014-07-23 14:16:32 -04005489 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005490 }
Geoff Langbfdea662014-07-23 14:16:32 -04005491
5492 return glMapBufferRangeEXT(target, offset, length, access);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005493 }
5494
5495 return NULL;
5496}
5497
5498void __stdcall glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length)
5499{
5500 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d)", target, offset, length);
5501
Geoff Langbfdea662014-07-23 14:16:32 -04005502 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005503
Geoff Langbfdea662014-07-23 14:16:32 -04005504 if (context)
5505 {
5506 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005507 {
Geoff Langbfdea662014-07-23 14:16:32 -04005508 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005509 }
Geoff Langbfdea662014-07-23 14:16:32 -04005510
5511 glFlushMappedBufferRangeEXT(target, offset, length);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005512 }
5513}
5514
5515void __stdcall glBindVertexArray(GLuint array)
5516{
5517 EVENT("(GLuint array = %u)", array);
5518
Geoff Langbfdea662014-07-23 14:16:32 -04005519 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005520
Geoff Langbfdea662014-07-23 14:16:32 -04005521 if (context)
5522 {
5523 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005524 {
Geoff Langbfdea662014-07-23 14:16:32 -04005525 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005526 }
Geoff Langbfdea662014-07-23 14:16:32 -04005527
5528 gl::VertexArray *vao = context->getVertexArray(array);
5529
5530 if (!vao)
5531 {
5532 // The default VAO should always exist
5533 ASSERT(array != 0);
5534 return gl::error(GL_INVALID_OPERATION);
5535 }
5536
5537 context->bindVertexArray(array);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005538 }
5539}
5540
5541void __stdcall glDeleteVertexArrays(GLsizei n, const GLuint* arrays)
5542{
5543 EVENT("(GLsizei n = %d, const GLuint* arrays = 0x%0.8p)", n, arrays);
5544
Geoff Langbfdea662014-07-23 14:16:32 -04005545 gl::Context *context = gl::getNonLostContext();
5546
5547 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005548 {
Geoff Langbfdea662014-07-23 14:16:32 -04005549 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005550 {
Geoff Langbfdea662014-07-23 14:16:32 -04005551 return gl::error(GL_INVALID_OPERATION);
5552 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005553
Geoff Langbfdea662014-07-23 14:16:32 -04005554 if (n < 0)
5555 {
5556 return gl::error(GL_INVALID_VALUE);
5557 }
Jamie Madilld1028542013-07-02 11:57:04 -04005558
Geoff Langbfdea662014-07-23 14:16:32 -04005559 for (int arrayIndex = 0; arrayIndex < n; arrayIndex++)
5560 {
5561 if (arrays[arrayIndex] != 0)
Jamie Madilld1028542013-07-02 11:57:04 -04005562 {
Geoff Langbfdea662014-07-23 14:16:32 -04005563 context->deleteVertexArray(arrays[arrayIndex]);
Jamie Madilld1028542013-07-02 11:57:04 -04005564 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005565 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005566 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005567}
5568
5569void __stdcall glGenVertexArrays(GLsizei n, GLuint* arrays)
5570{
5571 EVENT("(GLsizei n = %d, GLuint* arrays = 0x%0.8p)", n, arrays);
5572
Geoff Langbfdea662014-07-23 14:16:32 -04005573 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005574
Geoff Langbfdea662014-07-23 14:16:32 -04005575 if (context)
5576 {
5577 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005578 {
Geoff Langbfdea662014-07-23 14:16:32 -04005579 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005580 }
Geoff Langbfdea662014-07-23 14:16:32 -04005581
5582 if (n < 0)
5583 {
5584 return gl::error(GL_INVALID_VALUE);
5585 }
5586
5587 for (int arrayIndex = 0; arrayIndex < n; arrayIndex++)
5588 {
5589 arrays[arrayIndex] = context->createVertexArray();
5590 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005591 }
5592}
5593
5594GLboolean __stdcall glIsVertexArray(GLuint array)
5595{
5596 EVENT("(GLuint array = %u)", array);
5597
Geoff Langbfdea662014-07-23 14:16:32 -04005598 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005599
Geoff Langbfdea662014-07-23 14:16:32 -04005600 if (context)
5601 {
5602 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005603 {
Geoff Langbfdea662014-07-23 14:16:32 -04005604 return gl::error(GL_INVALID_OPERATION, GL_FALSE);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005605 }
Geoff Langbfdea662014-07-23 14:16:32 -04005606
5607 if (array == 0)
5608 {
5609 return GL_FALSE;
5610 }
5611
5612 gl::VertexArray *vao = context->getVertexArray(array);
5613
5614 return (vao != NULL ? GL_TRUE : GL_FALSE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005615 }
5616
5617 return GL_FALSE;
5618}
5619
5620void __stdcall glGetIntegeri_v(GLenum target, GLuint index, GLint* data)
5621{
5622 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLint* data = 0x%0.8p)",
5623 target, index, data);
5624
Geoff Langbfdea662014-07-23 14:16:32 -04005625 gl::Context *context = gl::getNonLostContext();
5626
5627 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005628 {
Geoff Langbfdea662014-07-23 14:16:32 -04005629 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005630 {
Geoff Langbfdea662014-07-23 14:16:32 -04005631 return gl::error(GL_INVALID_OPERATION);
5632 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005633
Geoff Langbfdea662014-07-23 14:16:32 -04005634 switch (target)
5635 {
5636 case GL_TRANSFORM_FEEDBACK_BUFFER_START:
5637 case GL_TRANSFORM_FEEDBACK_BUFFER_SIZE:
5638 case GL_TRANSFORM_FEEDBACK_BUFFER_BINDING:
5639 if (index >= context->getMaxTransformFeedbackBufferBindings())
5640 return gl::error(GL_INVALID_VALUE);
5641 break;
5642 case GL_UNIFORM_BUFFER_START:
5643 case GL_UNIFORM_BUFFER_SIZE:
5644 case GL_UNIFORM_BUFFER_BINDING:
5645 if (index >= context->getMaximumCombinedUniformBufferBindings())
5646 return gl::error(GL_INVALID_VALUE);
5647 break;
5648 default:
5649 return gl::error(GL_INVALID_ENUM);
5650 }
5651
5652 if (!(context->getIndexedIntegerv(target, index, data)))
5653 {
5654 GLenum nativeType;
5655 unsigned int numParams = 0;
5656 if (!context->getIndexedQueryParameterInfo(target, &nativeType, &numParams))
Shannon Woods15934d52013-08-19 14:28:49 -04005657 return gl::error(GL_INVALID_ENUM);
Shannon Woods15934d52013-08-19 14:28:49 -04005658
Geoff Langbfdea662014-07-23 14:16:32 -04005659 if (numParams == 0)
5660 return; // it is known that pname is valid, but there are no parameters to return
5661
5662 if (nativeType == GL_INT_64_ANGLEX)
Shannon Woods15934d52013-08-19 14:28:49 -04005663 {
Geoff Langbfdea662014-07-23 14:16:32 -04005664 GLint64 minIntValue = static_cast<GLint64>(std::numeric_limits<int>::min());
5665 GLint64 maxIntValue = static_cast<GLint64>(std::numeric_limits<int>::max());
5666 GLint64 *int64Params = new GLint64[numParams];
Shannon Woods15934d52013-08-19 14:28:49 -04005667
Geoff Langbfdea662014-07-23 14:16:32 -04005668 context->getIndexedInteger64v(target, index, int64Params);
Shannon Woods15934d52013-08-19 14:28:49 -04005669
Geoff Langbfdea662014-07-23 14:16:32 -04005670 for (unsigned int i = 0; i < numParams; ++i)
Shannon Woods15934d52013-08-19 14:28:49 -04005671 {
Geoff Langbfdea662014-07-23 14:16:32 -04005672 GLint64 clampedValue = std::max(std::min(int64Params[i], maxIntValue), minIntValue);
5673 data[i] = static_cast<GLint>(clampedValue);
Shannon Woods15934d52013-08-19 14:28:49 -04005674 }
Geoff Langbfdea662014-07-23 14:16:32 -04005675
5676 delete [] int64Params;
5677 }
5678 else
5679 {
5680 UNREACHABLE();
Shannon Woods15934d52013-08-19 14:28:49 -04005681 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005682 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005683 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005684}
5685
5686void __stdcall glBeginTransformFeedback(GLenum primitiveMode)
5687{
5688 EVENT("(GLenum primitiveMode = 0x%X)", primitiveMode);
5689
Geoff Langbfdea662014-07-23 14:16:32 -04005690 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005691
Geoff Langbfdea662014-07-23 14:16:32 -04005692 if (context)
5693 {
5694 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005695 {
Geoff Langbfdea662014-07-23 14:16:32 -04005696 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005697 }
Geoff Langbfdea662014-07-23 14:16:32 -04005698
5699 switch (primitiveMode)
5700 {
5701 case GL_TRIANGLES:
5702 case GL_LINES:
5703 case GL_POINTS:
5704 break;
5705 default:
5706 return gl::error(GL_INVALID_ENUM);
5707 }
5708
5709 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
5710 ASSERT(transformFeedback != NULL);
5711
5712 if (transformFeedback->isStarted())
5713 {
5714 return gl::error(GL_INVALID_OPERATION);
5715 }
5716
5717 if (transformFeedback->isPaused())
5718 {
5719 transformFeedback->resume();
5720 }
5721 else
5722 {
5723 transformFeedback->start(primitiveMode);
5724 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005725 }
5726}
5727
5728void __stdcall glEndTransformFeedback(void)
5729{
5730 EVENT("(void)");
5731
Geoff Langbfdea662014-07-23 14:16:32 -04005732 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005733
Geoff Langbfdea662014-07-23 14:16:32 -04005734 if (context)
5735 {
5736 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005737 {
Geoff Langbfdea662014-07-23 14:16:32 -04005738 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005739 }
Geoff Langbfdea662014-07-23 14:16:32 -04005740
5741 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
5742 ASSERT(transformFeedback != NULL);
5743
5744 if (!transformFeedback->isStarted())
5745 {
5746 return gl::error(GL_INVALID_OPERATION);
5747 }
5748
5749 transformFeedback->stop();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005750 }
5751}
5752
5753void __stdcall glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)
5754{
5755 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLuint buffer = %u, GLintptr offset = %d, GLsizeiptr size = %d)",
5756 target, index, buffer, offset, size);
5757
Geoff Langbfdea662014-07-23 14:16:32 -04005758 gl::Context *context = gl::getNonLostContext();
5759
5760 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005761 {
Geoff Langbfdea662014-07-23 14:16:32 -04005762 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005763 {
Geoff Langbfdea662014-07-23 14:16:32 -04005764 return gl::error(GL_INVALID_OPERATION);
5765 }
5766
5767 switch (target)
5768 {
5769 case GL_TRANSFORM_FEEDBACK_BUFFER:
5770 if (index >= context->getMaxTransformFeedbackBufferBindings())
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005771 {
Geoff Langbfdea662014-07-23 14:16:32 -04005772 return gl::error(GL_INVALID_VALUE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005773 }
Geoff Langbfdea662014-07-23 14:16:32 -04005774 break;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005775
Geoff Langbfdea662014-07-23 14:16:32 -04005776 case GL_UNIFORM_BUFFER:
5777 if (index >= context->getMaximumCombinedUniformBufferBindings())
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005778 {
Geoff Langbfdea662014-07-23 14:16:32 -04005779 return gl::error(GL_INVALID_VALUE);
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005780 }
Geoff Langbfdea662014-07-23 14:16:32 -04005781 break;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005782
Geoff Langbfdea662014-07-23 14:16:32 -04005783 default:
5784 return gl::error(GL_INVALID_ENUM);
5785 }
5786
5787 if (buffer != 0 && size <= 0)
5788 {
5789 return gl::error(GL_INVALID_VALUE);
5790 }
5791
5792 switch (target)
5793 {
5794 case GL_TRANSFORM_FEEDBACK_BUFFER:
5795
5796 // size and offset must be a multiple of 4
5797 if (buffer != 0 && ((offset % 4) != 0 || (size % 4) != 0))
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005798 {
5799 return gl::error(GL_INVALID_VALUE);
5800 }
5801
Geoff Langbfdea662014-07-23 14:16:32 -04005802 context->bindIndexedTransformFeedbackBuffer(buffer, index, offset, size);
5803 context->bindGenericTransformFeedbackBuffer(buffer);
5804 break;
5805
5806 case GL_UNIFORM_BUFFER:
5807
5808 // it is an error to bind an offset not a multiple of the alignment
5809 if (buffer != 0 && (offset % context->getUniformBufferOffsetAlignment()) != 0)
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005810 {
Geoff Langbfdea662014-07-23 14:16:32 -04005811 return gl::error(GL_INVALID_VALUE);
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005812 }
Geoff Langbfdea662014-07-23 14:16:32 -04005813
5814 context->bindIndexedUniformBuffer(buffer, index, offset, size);
5815 context->bindGenericUniformBuffer(buffer);
5816 break;
5817
5818 default:
5819 UNREACHABLE();
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005820 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005821 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005822}
5823
5824void __stdcall glBindBufferBase(GLenum target, GLuint index, GLuint buffer)
5825{
5826 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLuint buffer = %u)",
5827 target, index, buffer);
5828
Geoff Langbfdea662014-07-23 14:16:32 -04005829 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005830
Geoff Langbfdea662014-07-23 14:16:32 -04005831 if (context)
5832 {
5833 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005834 {
Geoff Langbfdea662014-07-23 14:16:32 -04005835 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00005836 }
Geoff Langbfdea662014-07-23 14:16:32 -04005837
5838 switch (target)
5839 {
5840 case GL_TRANSFORM_FEEDBACK_BUFFER:
5841 if (index >= context->getMaxTransformFeedbackBufferBindings())
5842 {
5843 return gl::error(GL_INVALID_VALUE);
5844 }
5845 break;
5846
5847 case GL_UNIFORM_BUFFER:
5848 if (index >= context->getMaximumCombinedUniformBufferBindings())
5849 {
5850 return gl::error(GL_INVALID_VALUE);
5851 }
5852 break;
5853
5854 default:
5855 return gl::error(GL_INVALID_ENUM);
5856 }
5857
5858 switch (target)
5859 {
5860 case GL_TRANSFORM_FEEDBACK_BUFFER:
5861 context->bindIndexedTransformFeedbackBuffer(buffer, index, 0, 0);
5862 context->bindGenericTransformFeedbackBuffer(buffer);
5863 break;
5864
5865 case GL_UNIFORM_BUFFER:
5866 context->bindIndexedUniformBuffer(buffer, index, 0, 0);
5867 context->bindGenericUniformBuffer(buffer);
5868 break;
5869
5870 default:
5871 UNREACHABLE();
5872 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005873 }
5874}
5875
5876void __stdcall glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar* const* varyings, GLenum bufferMode)
5877{
5878 EVENT("(GLuint program = %u, GLsizei count = %d, const GLchar* const* varyings = 0x%0.8p, GLenum bufferMode = 0x%X)",
5879 program, count, varyings, bufferMode);
5880
Geoff Langbfdea662014-07-23 14:16:32 -04005881 gl::Context *context = gl::getNonLostContext();
5882
5883 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005884 {
Geoff Langbfdea662014-07-23 14:16:32 -04005885 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005886 {
Geoff Langbfdea662014-07-23 14:16:32 -04005887 return gl::error(GL_INVALID_OPERATION);
5888 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005889
Geoff Langbfdea662014-07-23 14:16:32 -04005890 if (count < 0)
5891 {
5892 return gl::error(GL_INVALID_VALUE);
5893 }
5894
5895 switch (bufferMode)
5896 {
5897 case GL_INTERLEAVED_ATTRIBS:
5898 break;
5899 case GL_SEPARATE_ATTRIBS:
5900 if (static_cast<GLuint>(count) > context->getMaxTransformFeedbackBufferBindings())
Geoff Lang48dcae72014-02-05 16:28:24 -05005901 {
5902 return gl::error(GL_INVALID_VALUE);
5903 }
Geoff Langbfdea662014-07-23 14:16:32 -04005904 break;
5905 default:
5906 return gl::error(GL_INVALID_ENUM);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005907 }
Geoff Langbfdea662014-07-23 14:16:32 -04005908
5909 if (!gl::ValidProgram(context, program))
5910 {
5911 return;
5912 }
5913
5914 gl::Program *programObject = context->getProgram(program);
5915 ASSERT(programObject);
5916
5917 programObject->setTransformFeedbackVaryings(count, varyings, bufferMode);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005918 }
5919}
5920
5921void __stdcall glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei* length, GLsizei* size, GLenum* type, GLchar* name)
5922{
5923 EVENT("(GLuint program = %u, GLuint index = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, "
5924 "GLsizei* size = 0x%0.8p, GLenum* type = 0x%0.8p, GLchar* name = 0x%0.8p)",
5925 program, index, bufSize, length, size, type, name);
5926
Geoff Langbfdea662014-07-23 14:16:32 -04005927 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005928
Geoff Langbfdea662014-07-23 14:16:32 -04005929 if (context)
5930 {
5931 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005932 {
Geoff Langbfdea662014-07-23 14:16:32 -04005933 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005934 }
Geoff Langbfdea662014-07-23 14:16:32 -04005935
5936 if (bufSize < 0)
5937 {
5938 return gl::error(GL_INVALID_VALUE);
5939 }
5940
5941 if (!gl::ValidProgram(context, program))
5942 {
5943 return;
5944 }
5945
5946 gl::Program *programObject = context->getProgram(program);
5947 ASSERT(programObject);
5948
5949 if (index >= static_cast<GLuint>(programObject->getTransformFeedbackVaryingCount()))
5950 {
5951 return gl::error(GL_INVALID_VALUE);
5952 }
5953
5954 programObject->getTransformFeedbackVarying(index, bufSize, length, size, type, name);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005955 }
5956}
5957
5958void __stdcall glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid* pointer)
5959{
5960 EVENT("(GLuint index = %u, GLint size = %d, GLenum type = 0x%X, GLsizei stride = %d, const GLvoid* pointer = 0x%0.8p)",
5961 index, size, type, stride, pointer);
5962
Geoff Langbfdea662014-07-23 14:16:32 -04005963 gl::Context *context = gl::getNonLostContext();
5964
5965 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005966 {
Geoff Langbfdea662014-07-23 14:16:32 -04005967 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005968 {
Geoff Langbfdea662014-07-23 14:16:32 -04005969 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005970 }
Geoff Langbfdea662014-07-23 14:16:32 -04005971 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005972
Geoff Langbfdea662014-07-23 14:16:32 -04005973 if (index >= gl::MAX_VERTEX_ATTRIBS)
5974 {
5975 return gl::error(GL_INVALID_VALUE);
5976 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00005977
Geoff Langbfdea662014-07-23 14:16:32 -04005978 if (size < 1 || size > 4)
5979 {
5980 return gl::error(GL_INVALID_VALUE);
5981 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00005982
Geoff Langbfdea662014-07-23 14:16:32 -04005983 switch (type)
5984 {
5985 case GL_BYTE:
5986 case GL_UNSIGNED_BYTE:
5987 case GL_SHORT:
5988 case GL_UNSIGNED_SHORT:
5989 case GL_INT:
5990 case GL_UNSIGNED_INT:
5991 case GL_INT_2_10_10_10_REV:
5992 case GL_UNSIGNED_INT_2_10_10_10_REV:
5993 break;
5994 default:
5995 return gl::error(GL_INVALID_ENUM);
5996 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00005997
Geoff Langbfdea662014-07-23 14:16:32 -04005998 if (stride < 0)
5999 {
6000 return gl::error(GL_INVALID_VALUE);
6001 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006002
Geoff Langbfdea662014-07-23 14:16:32 -04006003 if ((type == GL_INT_2_10_10_10_REV || type == GL_UNSIGNED_INT_2_10_10_10_REV) && size != 4)
6004 {
6005 return gl::error(GL_INVALID_OPERATION);
6006 }
6007
6008 if (context)
6009 {
6010 // [OpenGL ES 3.0.2] Section 2.8 page 24:
6011 // An INVALID_OPERATION error is generated when a non-zero vertex array object
6012 // is bound, zero is bound to the ARRAY_BUFFER buffer object binding point,
6013 // and the pointer argument is not NULL.
6014 if (context->getState().getVertexArray()->id() != 0 && context->getState().getArrayBufferId() == 0 && pointer != NULL)
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00006015 {
6016 return gl::error(GL_INVALID_OPERATION);
6017 }
6018
Geoff Langbfdea662014-07-23 14:16:32 -04006019 context->getState().setVertexAttribState(index, context->getState().getTargetBuffer(GL_ARRAY_BUFFER), size, type, false, true,
6020 stride, pointer);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006021 }
6022}
6023
6024void __stdcall glGetVertexAttribIiv(GLuint index, GLenum pname, GLint* params)
6025{
6026 EVENT("(GLuint index = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
6027 index, pname, params);
6028
Geoff Langbfdea662014-07-23 14:16:32 -04006029 gl::Context *context = gl::getNonLostContext();
6030
6031 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006032 {
Geoff Langbfdea662014-07-23 14:16:32 -04006033 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006034 {
Geoff Langbfdea662014-07-23 14:16:32 -04006035 return gl::error(GL_INVALID_OPERATION);
6036 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006037
Geoff Langbfdea662014-07-23 14:16:32 -04006038 if (index >= gl::MAX_VERTEX_ATTRIBS)
6039 {
6040 return gl::error(GL_INVALID_VALUE);
6041 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006042
Geoff Langbfdea662014-07-23 14:16:32 -04006043 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
Jamie Madilla7d05862013-07-02 11:57:06 -04006044
Geoff Langbfdea662014-07-23 14:16:32 -04006045 if (!gl::ValidateGetVertexAttribParameters(pname, context->getClientVersion()))
6046 {
6047 return;
6048 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006049
Geoff Langbfdea662014-07-23 14:16:32 -04006050 if (pname == GL_CURRENT_VERTEX_ATTRIB)
6051 {
6052 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
6053 for (int i = 0; i < 4; ++i)
Jamie Madilla7d05862013-07-02 11:57:06 -04006054 {
Geoff Langbfdea662014-07-23 14:16:32 -04006055 params[i] = currentValueData.IntValues[i];
Jamie Madilla7d05862013-07-02 11:57:06 -04006056 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006057 }
Geoff Langbfdea662014-07-23 14:16:32 -04006058 else
6059 {
6060 *params = gl::QuerySingleVertexAttributeParameter<GLint>(attribState, pname);
6061 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006062 }
6063}
6064
6065void __stdcall glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint* params)
6066{
6067 EVENT("(GLuint index = %u, GLenum pname = 0x%X, GLuint* params = 0x%0.8p)",
6068 index, pname, params);
6069
Geoff Langbfdea662014-07-23 14:16:32 -04006070 gl::Context *context = gl::getNonLostContext();
6071
6072 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006073 {
Geoff Langbfdea662014-07-23 14:16:32 -04006074 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006075 {
Geoff Langbfdea662014-07-23 14:16:32 -04006076 return gl::error(GL_INVALID_OPERATION);
6077 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006078
Geoff Langbfdea662014-07-23 14:16:32 -04006079 if (index >= gl::MAX_VERTEX_ATTRIBS)
6080 {
6081 return gl::error(GL_INVALID_VALUE);
6082 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006083
Geoff Langbfdea662014-07-23 14:16:32 -04006084 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
Jamie Madilla7d05862013-07-02 11:57:06 -04006085
Geoff Langbfdea662014-07-23 14:16:32 -04006086 if (!gl::ValidateGetVertexAttribParameters(pname, context->getClientVersion()))
6087 {
6088 return;
6089 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006090
Geoff Langbfdea662014-07-23 14:16:32 -04006091 if (pname == GL_CURRENT_VERTEX_ATTRIB)
6092 {
6093 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
6094 for (int i = 0; i < 4; ++i)
Jamie Madilla7d05862013-07-02 11:57:06 -04006095 {
Geoff Langbfdea662014-07-23 14:16:32 -04006096 params[i] = currentValueData.UnsignedIntValues[i];
Jamie Madilla7d05862013-07-02 11:57:06 -04006097 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006098 }
Geoff Langbfdea662014-07-23 14:16:32 -04006099 else
6100 {
6101 *params = gl::QuerySingleVertexAttributeParameter<GLuint>(attribState, pname);
6102 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006103 }
6104}
6105
6106void __stdcall glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w)
6107{
6108 EVENT("(GLuint index = %u, GLint x = %d, GLint y = %d, GLint z = %d, GLint w = %d)",
6109 index, x, y, z, w);
6110
Geoff Langbfdea662014-07-23 14:16:32 -04006111 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006112
Geoff Langbfdea662014-07-23 14:16:32 -04006113 if (context)
6114 {
6115 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006116 {
Geoff Langbfdea662014-07-23 14:16:32 -04006117 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006118 }
Geoff Langbfdea662014-07-23 14:16:32 -04006119
6120 if (index >= gl::MAX_VERTEX_ATTRIBS)
6121 {
6122 return gl::error(GL_INVALID_VALUE);
6123 }
6124
6125 GLint vals[4] = { x, y, z, w };
6126 context->getState().setVertexAttribi(index, vals);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006127 }
6128}
6129
6130void __stdcall glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)
6131{
6132 EVENT("(GLuint index = %u, GLuint x = %u, GLuint y = %u, GLuint z = %u, GLuint w = %u)",
6133 index, x, y, z, w);
6134
Geoff Langbfdea662014-07-23 14:16:32 -04006135 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006136
Geoff Langbfdea662014-07-23 14:16:32 -04006137 if (context)
6138 {
6139 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006140 {
Geoff Langbfdea662014-07-23 14:16:32 -04006141 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006142 }
Geoff Langbfdea662014-07-23 14:16:32 -04006143
6144 if (index >= gl::MAX_VERTEX_ATTRIBS)
6145 {
6146 return gl::error(GL_INVALID_VALUE);
6147 }
6148
6149 GLuint vals[4] = { x, y, z, w };
6150 context->getState().setVertexAttribu(index, vals);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006151 }
6152}
6153
6154void __stdcall glVertexAttribI4iv(GLuint index, const GLint* v)
6155{
6156 EVENT("(GLuint index = %u, const GLint* v = 0x%0.8p)", index, v);
6157
Geoff Langbfdea662014-07-23 14:16:32 -04006158 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006159
Geoff Langbfdea662014-07-23 14:16:32 -04006160 if (context)
6161 {
6162 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006163 {
Geoff Langbfdea662014-07-23 14:16:32 -04006164 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006165 }
Geoff Langbfdea662014-07-23 14:16:32 -04006166
6167 if (index >= gl::MAX_VERTEX_ATTRIBS)
6168 {
6169 return gl::error(GL_INVALID_VALUE);
6170 }
6171
6172 context->getState().setVertexAttribi(index, v);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006173 }
6174}
6175
6176void __stdcall glVertexAttribI4uiv(GLuint index, const GLuint* v)
6177{
6178 EVENT("(GLuint index = %u, const GLuint* v = 0x%0.8p)", index, v);
6179
Geoff Langbfdea662014-07-23 14:16:32 -04006180 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006181
Geoff Langbfdea662014-07-23 14:16:32 -04006182 if (context)
6183 {
6184 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006185 {
Geoff Langbfdea662014-07-23 14:16:32 -04006186 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006187 }
Geoff Langbfdea662014-07-23 14:16:32 -04006188
6189 if (index >= gl::MAX_VERTEX_ATTRIBS)
6190 {
6191 return gl::error(GL_INVALID_VALUE);
6192 }
6193
6194 context->getState().setVertexAttribu(index, v);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006195 }
6196}
6197
6198void __stdcall glGetUniformuiv(GLuint program, GLint location, GLuint* params)
6199{
6200 EVENT("(GLuint program = %u, GLint location = %d, GLuint* params = 0x%0.8p)",
6201 program, location, params);
6202
Geoff Langbfdea662014-07-23 14:16:32 -04006203 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006204
Geoff Langbfdea662014-07-23 14:16:32 -04006205 if (context)
6206 {
Jamie Madill0063c512014-08-25 15:47:53 -04006207 if (!ValidateGetUniformuiv(context, program, location, params))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006208 {
Jamie Madill0063c512014-08-25 15:47:53 -04006209 return;
shannon.woods%transgaming.com@gtempaccount.come2290122013-04-13 03:41:07 +00006210 }
Geoff Langbfdea662014-07-23 14:16:32 -04006211
Jamie Madill0063c512014-08-25 15:47:53 -04006212 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6213 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04006214
Jamie Madill99a1e982014-08-25 15:47:54 -04006215 programBinary->getUniformuiv(location, params);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006216 }
6217}
6218
6219GLint __stdcall glGetFragDataLocation(GLuint program, const GLchar *name)
6220{
6221 EVENT("(GLuint program = %u, const GLchar *name = 0x%0.8p)",
6222 program, name);
6223
Geoff Langbfdea662014-07-23 14:16:32 -04006224 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006225
Geoff Langbfdea662014-07-23 14:16:32 -04006226 if (context)
6227 {
6228 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006229 {
Geoff Langbfdea662014-07-23 14:16:32 -04006230 return gl::error(GL_INVALID_OPERATION, -1);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006231 }
Geoff Langbfdea662014-07-23 14:16:32 -04006232
6233 if (program == 0)
6234 {
6235 return gl::error(GL_INVALID_VALUE, -1);
6236 }
6237
6238 gl::Program *programObject = context->getProgram(program);
6239
6240 if (!programObject || !programObject->isLinked())
6241 {
6242 return gl::error(GL_INVALID_OPERATION, -1);
6243 }
6244
6245 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6246 if (!programBinary)
6247 {
6248 return gl::error(GL_INVALID_OPERATION, -1);
6249 }
6250
6251 return programBinary->getFragDataLocation(name);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006252 }
6253
6254 return 0;
6255}
6256
6257void __stdcall glUniform1ui(GLint location, GLuint v0)
6258{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006259 glUniform1uiv(location, 1, &v0);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006260}
6261
6262void __stdcall glUniform2ui(GLint location, GLuint v0, GLuint v1)
6263{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006264 const GLuint xy[] = { v0, v1 };
6265 glUniform2uiv(location, 1, xy);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006266}
6267
6268void __stdcall glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2)
6269{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006270 const GLuint xyz[] = { v0, v1, v2 };
6271 glUniform3uiv(location, 1, xyz);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006272}
6273
6274void __stdcall glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3)
6275{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006276 const GLuint xyzw[] = { v0, v1, v2, v3 };
6277 glUniform4uiv(location, 1, xyzw);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006278}
6279
6280void __stdcall glUniform1uiv(GLint location, GLsizei count, const GLuint* value)
6281{
6282 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6283 location, count, value);
6284
Geoff Langbfdea662014-07-23 14:16:32 -04006285 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006286
Geoff Langbfdea662014-07-23 14:16:32 -04006287 if (context)
6288 {
6289 if (!ValidateUniform(context, GL_UNSIGNED_INT, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006290 {
Geoff Langbfdea662014-07-23 14:16:32 -04006291 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006292 }
Geoff Langbfdea662014-07-23 14:16:32 -04006293
6294 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6295 programBinary->setUniform1uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006296 }
6297}
6298
6299void __stdcall glUniform2uiv(GLint location, GLsizei count, const GLuint* value)
6300{
6301 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6302 location, count, value);
6303
Geoff Langbfdea662014-07-23 14:16:32 -04006304 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006305
Geoff Langbfdea662014-07-23 14:16:32 -04006306 if (context)
6307 {
6308 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC2, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006309 {
Geoff Langbfdea662014-07-23 14:16:32 -04006310 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006311 }
Geoff Langbfdea662014-07-23 14:16:32 -04006312
6313 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6314 programBinary->setUniform2uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006315 }
6316}
6317
6318void __stdcall glUniform3uiv(GLint location, GLsizei count, const GLuint* value)
6319{
6320 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value)",
6321 location, count, value);
6322
Geoff Langbfdea662014-07-23 14:16:32 -04006323 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006324
Geoff Langbfdea662014-07-23 14:16:32 -04006325 if (context)
6326 {
6327 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC3, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006328 {
Geoff Langbfdea662014-07-23 14:16:32 -04006329 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006330 }
Geoff Langbfdea662014-07-23 14:16:32 -04006331
6332 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6333 programBinary->setUniform3uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006334 }
6335}
6336
6337void __stdcall glUniform4uiv(GLint location, GLsizei count, const GLuint* value)
6338{
6339 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6340 location, count, value);
6341
Geoff Langbfdea662014-07-23 14:16:32 -04006342 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006343
Geoff Langbfdea662014-07-23 14:16:32 -04006344 if (context)
6345 {
6346 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC4, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006347 {
Geoff Langbfdea662014-07-23 14:16:32 -04006348 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006349 }
Geoff Langbfdea662014-07-23 14:16:32 -04006350
6351 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6352 programBinary->setUniform4uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006353 }
6354}
6355
6356void __stdcall glClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint* value)
6357{
6358 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLint* value = 0x%0.8p)",
6359 buffer, drawbuffer, value);
6360
Geoff Langbfdea662014-07-23 14:16:32 -04006361 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006362
Geoff Langbfdea662014-07-23 14:16:32 -04006363 if (context)
6364 {
6365 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006366 {
Geoff Langbfdea662014-07-23 14:16:32 -04006367 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006368 }
Geoff Langbfdea662014-07-23 14:16:32 -04006369
6370 switch (buffer)
6371 {
6372 case GL_COLOR:
6373 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6374 {
6375 return gl::error(GL_INVALID_VALUE);
6376 }
6377 break;
6378 case GL_STENCIL:
6379 if (drawbuffer != 0)
6380 {
6381 return gl::error(GL_INVALID_VALUE);
6382 }
6383 break;
6384 default:
6385 return gl::error(GL_INVALID_ENUM);
6386 }
6387
6388 context->clearBufferiv(buffer, drawbuffer, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006389 }
6390}
6391
6392void __stdcall glClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint* value)
6393{
6394 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLuint* value = 0x%0.8p)",
6395 buffer, drawbuffer, value);
6396
Geoff Langbfdea662014-07-23 14:16:32 -04006397 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006398
Geoff Langbfdea662014-07-23 14:16:32 -04006399 if (context)
6400 {
6401 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006402 {
Geoff Langbfdea662014-07-23 14:16:32 -04006403 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006404 }
Geoff Langbfdea662014-07-23 14:16:32 -04006405
6406 switch (buffer)
6407 {
6408 case GL_COLOR:
6409 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6410 {
6411 return gl::error(GL_INVALID_VALUE);
6412 }
6413 break;
6414 default:
6415 return gl::error(GL_INVALID_ENUM);
6416 }
6417
6418 context->clearBufferuiv(buffer, drawbuffer, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006419 }
6420}
6421
6422void __stdcall glClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat* value)
6423{
6424 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLfloat* value = 0x%0.8p)",
6425 buffer, drawbuffer, value);
6426
Geoff Langbfdea662014-07-23 14:16:32 -04006427 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006428
Geoff Langbfdea662014-07-23 14:16:32 -04006429 if (context)
6430 {
6431 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006432 {
Geoff Langbfdea662014-07-23 14:16:32 -04006433 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006434 }
Geoff Langbfdea662014-07-23 14:16:32 -04006435
6436 switch (buffer)
6437 {
6438 case GL_COLOR:
6439 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6440 {
6441 return gl::error(GL_INVALID_VALUE);
6442 }
6443 break;
6444 case GL_DEPTH:
6445 if (drawbuffer != 0)
6446 {
6447 return gl::error(GL_INVALID_VALUE);
6448 }
6449 break;
6450 default:
6451 return gl::error(GL_INVALID_ENUM);
6452 }
6453
6454 context->clearBufferfv(buffer, drawbuffer, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006455 }
6456}
6457
6458void __stdcall glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil)
6459{
6460 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, GLfloat depth, GLint stencil = %d)",
6461 buffer, drawbuffer, depth, stencil);
6462
Geoff Langbfdea662014-07-23 14:16:32 -04006463 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006464
Geoff Langbfdea662014-07-23 14:16:32 -04006465 if (context)
6466 {
6467 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006468 {
Geoff Langbfdea662014-07-23 14:16:32 -04006469 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006470 }
Geoff Langbfdea662014-07-23 14:16:32 -04006471
6472 switch (buffer)
6473 {
6474 case GL_DEPTH_STENCIL:
6475 if (drawbuffer != 0)
6476 {
6477 return gl::error(GL_INVALID_VALUE);
6478 }
6479 break;
6480 default:
6481 return gl::error(GL_INVALID_ENUM);
6482 }
6483
6484 context->clearBufferfi(buffer, drawbuffer, depth, stencil);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006485 }
6486}
6487
6488const GLubyte* __stdcall glGetStringi(GLenum name, GLuint index)
6489{
6490 EVENT("(GLenum name = 0x%X, GLuint index = %u)", name, index);
6491
Geoff Langbfdea662014-07-23 14:16:32 -04006492 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006493
Geoff Langbfdea662014-07-23 14:16:32 -04006494 if (context)
6495 {
6496 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006497 {
Geoff Langbfdea662014-07-23 14:16:32 -04006498 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLubyte*>(NULL));
shannonwoods@chromium.org302df742013-05-30 00:05:54 +00006499 }
Geoff Langbfdea662014-07-23 14:16:32 -04006500
6501 if (name != GL_EXTENSIONS)
6502 {
6503 return gl::error(GL_INVALID_ENUM, reinterpret_cast<GLubyte*>(NULL));
6504 }
6505
6506 if (index >= context->getExtensionStringCount())
6507 {
6508 return gl::error(GL_INVALID_VALUE, reinterpret_cast<GLubyte*>(NULL));
6509 }
6510
6511 return reinterpret_cast<const GLubyte*>(context->getExtensionString(index).c_str());
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006512 }
6513
6514 return NULL;
6515}
6516
6517void __stdcall glCopyBufferSubData(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size)
6518{
6519 EVENT("(GLenum readTarget = 0x%X, GLenum writeTarget = 0x%X, GLintptr readOffset = %d, GLintptr writeOffset = %d, GLsizeiptr size = %d)",
6520 readTarget, writeTarget, readOffset, writeOffset, size);
6521
Geoff Langbfdea662014-07-23 14:16:32 -04006522 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006523
Geoff Langbfdea662014-07-23 14:16:32 -04006524 if (context)
6525 {
6526 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006527 {
Geoff Langbfdea662014-07-23 14:16:32 -04006528 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com296c3f22013-04-13 03:39:39 +00006529 }
Geoff Langbfdea662014-07-23 14:16:32 -04006530
6531 if (!gl::ValidBufferTarget(context, readTarget) || !gl::ValidBufferTarget(context, readTarget))
6532 {
6533 return gl::error(GL_INVALID_ENUM);
6534 }
6535
6536 gl::Buffer *readBuffer = context->getState().getTargetBuffer(readTarget);
6537 gl::Buffer *writeBuffer = context->getState().getTargetBuffer(writeTarget);
6538
6539 if (!readBuffer || !writeBuffer)
6540 {
6541 return gl::error(GL_INVALID_OPERATION);
6542 }
6543
Jamie Madillcfaaf722014-07-31 10:47:54 -04006544 // Verify that readBuffer and writeBuffer are not currently mapped
Geoff Langbfdea662014-07-23 14:16:32 -04006545 if (readBuffer->isMapped() || writeBuffer->isMapped())
6546 {
6547 return gl::error(GL_INVALID_OPERATION);
6548 }
6549
6550 if (readOffset < 0 || writeOffset < 0 || size < 0 ||
6551 static_cast<unsigned int>(readOffset + size) > readBuffer->getSize() ||
6552 static_cast<unsigned int>(writeOffset + size) > writeBuffer->getSize())
6553 {
6554 return gl::error(GL_INVALID_VALUE);
6555 }
6556
6557 if (readBuffer == writeBuffer && abs(readOffset - writeOffset) < size)
6558 {
6559 return gl::error(GL_INVALID_VALUE);
6560 }
6561
Geoff Langbfdea662014-07-23 14:16:32 -04006562 // if size is zero, the copy is a successful no-op
6563 if (size > 0)
6564 {
6565 writeBuffer->copyBufferSubData(readBuffer, readOffset, writeOffset, size);
6566 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006567 }
6568}
6569
6570void __stdcall glGetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar* const* uniformNames, GLuint* uniformIndices)
6571{
6572 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLchar* const* uniformNames = 0x%0.8p, GLuint* uniformIndices = 0x%0.8p)",
6573 program, uniformCount, uniformNames, uniformIndices);
6574
Geoff Langbfdea662014-07-23 14:16:32 -04006575 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006576
Geoff Langbfdea662014-07-23 14:16:32 -04006577 if (context)
6578 {
6579 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006580 {
Geoff Langbfdea662014-07-23 14:16:32 -04006581 return gl::error(GL_INVALID_OPERATION);
6582 }
6583
6584 if (uniformCount < 0)
6585 {
6586 return gl::error(GL_INVALID_VALUE);
6587 }
6588
6589 gl::Program *programObject = context->getProgram(program);
6590
6591 if (!programObject)
6592 {
6593 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006594 {
6595 return gl::error(GL_INVALID_OPERATION);
6596 }
Geoff Langbfdea662014-07-23 14:16:32 -04006597 else
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006598 {
6599 return gl::error(GL_INVALID_VALUE);
6600 }
Geoff Langbfdea662014-07-23 14:16:32 -04006601 }
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006602
Geoff Langbfdea662014-07-23 14:16:32 -04006603 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6604 if (!programObject->isLinked() || !programBinary)
6605 {
6606 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006607 {
Geoff Langbfdea662014-07-23 14:16:32 -04006608 uniformIndices[uniformId] = GL_INVALID_INDEX;
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006609 }
6610 }
Geoff Langbfdea662014-07-23 14:16:32 -04006611 else
6612 {
6613 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
6614 {
6615 uniformIndices[uniformId] = programBinary->getUniformIndex(uniformNames[uniformId]);
6616 }
6617 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006618 }
6619}
6620
6621void __stdcall glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint* uniformIndices, GLenum pname, GLint* params)
6622{
6623 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLuint* uniformIndices = 0x%0.8p, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
6624 program, uniformCount, uniformIndices, pname, params);
6625
Geoff Langbfdea662014-07-23 14:16:32 -04006626 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006627
Geoff Langbfdea662014-07-23 14:16:32 -04006628 if (context)
6629 {
6630 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006631 {
Geoff Langbfdea662014-07-23 14:16:32 -04006632 return gl::error(GL_INVALID_OPERATION);
6633 }
6634
6635 if (uniformCount < 0)
6636 {
6637 return gl::error(GL_INVALID_VALUE);
6638 }
6639
6640 gl::Program *programObject = context->getProgram(program);
6641
6642 if (!programObject)
6643 {
6644 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006645 {
6646 return gl::error(GL_INVALID_OPERATION);
6647 }
Geoff Langbfdea662014-07-23 14:16:32 -04006648 else
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006649 {
6650 return gl::error(GL_INVALID_VALUE);
6651 }
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006652 }
Geoff Langbfdea662014-07-23 14:16:32 -04006653
6654 switch (pname)
6655 {
6656 case GL_UNIFORM_TYPE:
6657 case GL_UNIFORM_SIZE:
6658 case GL_UNIFORM_NAME_LENGTH:
6659 case GL_UNIFORM_BLOCK_INDEX:
6660 case GL_UNIFORM_OFFSET:
6661 case GL_UNIFORM_ARRAY_STRIDE:
6662 case GL_UNIFORM_MATRIX_STRIDE:
6663 case GL_UNIFORM_IS_ROW_MAJOR:
6664 break;
6665 default:
6666 return gl::error(GL_INVALID_ENUM);
6667 }
6668
6669 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6670
6671 if (!programBinary && uniformCount > 0)
6672 {
6673 return gl::error(GL_INVALID_VALUE);
6674 }
6675
6676 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
6677 {
6678 const GLuint index = uniformIndices[uniformId];
6679
6680 if (index >= (GLuint)programBinary->getActiveUniformCount())
6681 {
6682 return gl::error(GL_INVALID_VALUE);
6683 }
6684 }
6685
6686 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
6687 {
6688 const GLuint index = uniformIndices[uniformId];
6689 params[uniformId] = programBinary->getActiveUniformi(index, pname);
6690 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006691 }
6692}
6693
6694GLuint __stdcall glGetUniformBlockIndex(GLuint program, const GLchar* uniformBlockName)
6695{
6696 EVENT("(GLuint program = %u, const GLchar* uniformBlockName = 0x%0.8p)", program, uniformBlockName);
6697
Geoff Langbfdea662014-07-23 14:16:32 -04006698 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006699
Geoff Langbfdea662014-07-23 14:16:32 -04006700 if (context)
6701 {
6702 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006703 {
Geoff Langbfdea662014-07-23 14:16:32 -04006704 return gl::error(GL_INVALID_OPERATION, GL_INVALID_INDEX);
6705 }
6706
6707 gl::Program *programObject = context->getProgram(program);
6708
6709 if (!programObject)
6710 {
6711 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006712 {
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00006713 return gl::error(GL_INVALID_OPERATION, GL_INVALID_INDEX);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006714 }
Geoff Langbfdea662014-07-23 14:16:32 -04006715 else
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00006716 {
Geoff Langbfdea662014-07-23 14:16:32 -04006717 return gl::error(GL_INVALID_VALUE, GL_INVALID_INDEX);
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00006718 }
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00006719 }
Geoff Langbfdea662014-07-23 14:16:32 -04006720
6721 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6722 if (!programBinary)
6723 {
6724 return GL_INVALID_INDEX;
6725 }
6726
6727 return programBinary->getUniformBlockIndex(uniformBlockName);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006728 }
6729
6730 return 0;
6731}
6732
6733void __stdcall glGetActiveUniformBlockiv(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint* params)
6734{
6735 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
6736 program, uniformBlockIndex, pname, params);
6737
Geoff Langbfdea662014-07-23 14:16:32 -04006738 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006739
Geoff Langbfdea662014-07-23 14:16:32 -04006740 if (context)
6741 {
6742 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006743 {
Geoff Langbfdea662014-07-23 14:16:32 -04006744 return gl::error(GL_INVALID_OPERATION);
6745 }
6746 gl::Program *programObject = context->getProgram(program);
6747
6748 if (!programObject)
6749 {
6750 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006751 {
6752 return gl::error(GL_INVALID_OPERATION);
6753 }
Geoff Langbfdea662014-07-23 14:16:32 -04006754 else
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00006755 {
6756 return gl::error(GL_INVALID_VALUE);
6757 }
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00006758 }
Geoff Langbfdea662014-07-23 14:16:32 -04006759
6760 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6761
6762 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
6763 {
6764 return gl::error(GL_INVALID_VALUE);
6765 }
6766
6767 switch (pname)
6768 {
6769 case GL_UNIFORM_BLOCK_BINDING:
6770 *params = static_cast<GLint>(programObject->getUniformBlockBinding(uniformBlockIndex));
6771 break;
6772
6773 case GL_UNIFORM_BLOCK_DATA_SIZE:
6774 case GL_UNIFORM_BLOCK_NAME_LENGTH:
6775 case GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS:
6776 case GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES:
6777 case GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER:
6778 case GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER:
6779 programBinary->getActiveUniformBlockiv(uniformBlockIndex, pname, params);
6780 break;
6781
6782 default:
6783 return gl::error(GL_INVALID_ENUM);
6784 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006785 }
6786}
6787
6788void __stdcall glGetActiveUniformBlockName(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei* length, GLchar* uniformBlockName)
6789{
6790 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLchar* uniformBlockName = 0x%0.8p)",
6791 program, uniformBlockIndex, bufSize, length, uniformBlockName);
6792
Geoff Langbfdea662014-07-23 14:16:32 -04006793 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006794
Geoff Langbfdea662014-07-23 14:16:32 -04006795 if (context)
6796 {
6797 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006798 {
Geoff Langbfdea662014-07-23 14:16:32 -04006799 return gl::error(GL_INVALID_OPERATION);
6800 }
6801
6802 gl::Program *programObject = context->getProgram(program);
6803
6804 if (!programObject)
6805 {
6806 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006807 {
6808 return gl::error(GL_INVALID_OPERATION);
6809 }
Geoff Langbfdea662014-07-23 14:16:32 -04006810 else
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00006811 {
6812 return gl::error(GL_INVALID_VALUE);
6813 }
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00006814 }
Geoff Langbfdea662014-07-23 14:16:32 -04006815
6816 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6817
6818 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
6819 {
6820 return gl::error(GL_INVALID_VALUE);
6821 }
6822
6823 programBinary->getActiveUniformBlockName(uniformBlockIndex, bufSize, length, uniformBlockName);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006824 }
6825}
6826
6827void __stdcall glUniformBlockBinding(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding)
6828{
6829 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLuint uniformBlockBinding = %u)",
6830 program, uniformBlockIndex, uniformBlockBinding);
6831
Geoff Langbfdea662014-07-23 14:16:32 -04006832 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006833
Geoff Langbfdea662014-07-23 14:16:32 -04006834 if (context)
6835 {
6836 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006837 {
Geoff Langbfdea662014-07-23 14:16:32 -04006838 return gl::error(GL_INVALID_OPERATION);
6839 }
6840
6841 if (uniformBlockBinding >= context->getMaximumCombinedUniformBufferBindings())
6842 {
6843 return gl::error(GL_INVALID_VALUE);
6844 }
6845
6846 gl::Program *programObject = context->getProgram(program);
6847
6848 if (!programObject)
6849 {
6850 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006851 {
6852 return gl::error(GL_INVALID_OPERATION);
6853 }
Geoff Langbfdea662014-07-23 14:16:32 -04006854 else
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00006855 {
6856 return gl::error(GL_INVALID_VALUE);
6857 }
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00006858 }
Geoff Langbfdea662014-07-23 14:16:32 -04006859
6860 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6861
6862 // if never linked, there won't be any uniform blocks
6863 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
6864 {
6865 return gl::error(GL_INVALID_VALUE);
6866 }
6867
6868 programObject->bindUniformBlock(uniformBlockIndex, uniformBlockBinding);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006869 }
6870}
6871
6872void __stdcall glDrawArraysInstanced(GLenum mode, GLint first, GLsizei count, GLsizei instanceCount)
6873{
6874 EVENT("(GLenum mode = 0x%X, GLint first = %d, GLsizei count = %d, GLsizei instanceCount = %d)",
6875 mode, first, count, instanceCount);
6876
Geoff Langbfdea662014-07-23 14:16:32 -04006877 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006878
Geoff Langbfdea662014-07-23 14:16:32 -04006879 if (context)
6880 {
6881 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006882 {
Geoff Langbfdea662014-07-23 14:16:32 -04006883 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006884 }
Geoff Langbfdea662014-07-23 14:16:32 -04006885
6886 // glDrawArraysInstanced
6887 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006888 }
6889}
6890
6891void __stdcall glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsizei instanceCount)
6892{
6893 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p, GLsizei instanceCount = %d)",
6894 mode, count, type, indices, instanceCount);
6895
Geoff Langbfdea662014-07-23 14:16:32 -04006896 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006897
Geoff Langbfdea662014-07-23 14:16:32 -04006898 if (context)
6899 {
6900 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006901 {
Geoff Langbfdea662014-07-23 14:16:32 -04006902 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006903 }
Geoff Langbfdea662014-07-23 14:16:32 -04006904
6905 // glDrawElementsInstanced
6906 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006907 }
6908}
6909
6910GLsync __stdcall glFenceSync(GLenum condition, GLbitfield flags)
6911{
6912 EVENT("(GLenum condition = 0x%X, GLbitfield flags = 0x%X)", condition, flags);
6913
Geoff Langbfdea662014-07-23 14:16:32 -04006914 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006915
Geoff Langbfdea662014-07-23 14:16:32 -04006916 if (context)
6917 {
6918 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006919 {
Geoff Langbfdea662014-07-23 14:16:32 -04006920 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLsync>(0));
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006921 }
Geoff Langbfdea662014-07-23 14:16:32 -04006922
6923 if (condition != GL_SYNC_GPU_COMMANDS_COMPLETE)
6924 {
6925 return gl::error(GL_INVALID_ENUM, reinterpret_cast<GLsync>(0));
6926 }
6927
6928 if (flags != 0)
6929 {
6930 return gl::error(GL_INVALID_VALUE, reinterpret_cast<GLsync>(0));
6931 }
6932
6933 return context->createFenceSync(condition);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006934 }
6935
6936 return NULL;
6937}
6938
6939GLboolean __stdcall glIsSync(GLsync sync)
6940{
6941 EVENT("(GLsync sync = 0x%0.8p)", sync);
6942
Geoff Langbfdea662014-07-23 14:16:32 -04006943 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006944
Geoff Langbfdea662014-07-23 14:16:32 -04006945 if (context)
6946 {
6947 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006948 {
Geoff Langbfdea662014-07-23 14:16:32 -04006949 return gl::error(GL_INVALID_OPERATION, GL_FALSE);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006950 }
Geoff Langbfdea662014-07-23 14:16:32 -04006951
6952 return (context->getFenceSync(sync) != NULL);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006953 }
6954
6955 return GL_FALSE;
6956}
6957
6958void __stdcall glDeleteSync(GLsync sync)
6959{
6960 EVENT("(GLsync sync = 0x%0.8p)", sync);
6961
Geoff Langbfdea662014-07-23 14:16:32 -04006962 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006963
Geoff Langbfdea662014-07-23 14:16:32 -04006964 if (context)
6965 {
6966 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006967 {
Geoff Langbfdea662014-07-23 14:16:32 -04006968 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006969 }
Geoff Langbfdea662014-07-23 14:16:32 -04006970
6971 if (sync != static_cast<GLsync>(0) && !context->getFenceSync(sync))
6972 {
6973 return gl::error(GL_INVALID_VALUE);
6974 }
6975
6976 context->deleteFenceSync(sync);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006977 }
6978}
6979
6980GLenum __stdcall glClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
6981{
6982 EVENT("(GLsync sync = 0x%0.8p, GLbitfield flags = 0x%X, GLuint64 timeout = %llu)",
6983 sync, flags, timeout);
6984
Geoff Langbfdea662014-07-23 14:16:32 -04006985 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006986
Geoff Langbfdea662014-07-23 14:16:32 -04006987 if (context)
6988 {
6989 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006990 {
Geoff Langbfdea662014-07-23 14:16:32 -04006991 return gl::error(GL_INVALID_OPERATION, GL_WAIT_FAILED);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006992 }
Geoff Langbfdea662014-07-23 14:16:32 -04006993
6994 if ((flags & ~(GL_SYNC_FLUSH_COMMANDS_BIT)) != 0)
6995 {
6996 return gl::error(GL_INVALID_VALUE, GL_WAIT_FAILED);
6997 }
6998
6999 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7000
7001 if (!fenceSync)
7002 {
7003 return gl::error(GL_INVALID_VALUE, GL_WAIT_FAILED);
7004 }
7005
7006 return fenceSync->clientWait(flags, timeout);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007007 }
7008
7009 return GL_FALSE;
7010}
7011
7012void __stdcall glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
7013{
7014 EVENT("(GLsync sync = 0x%0.8p, GLbitfield flags = 0x%X, GLuint64 timeout = %llu)",
7015 sync, flags, timeout);
7016
Geoff Langbfdea662014-07-23 14:16:32 -04007017 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007018
Geoff Langbfdea662014-07-23 14:16:32 -04007019 if (context)
7020 {
7021 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007022 {
Geoff Langbfdea662014-07-23 14:16:32 -04007023 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007024 }
Geoff Langbfdea662014-07-23 14:16:32 -04007025
7026 if (flags != 0)
7027 {
7028 return gl::error(GL_INVALID_VALUE);
7029 }
7030
7031 if (timeout != GL_TIMEOUT_IGNORED)
7032 {
7033 return gl::error(GL_INVALID_VALUE);
7034 }
7035
7036 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7037
7038 if (!fenceSync)
7039 {
7040 return gl::error(GL_INVALID_VALUE);
7041 }
7042
7043 fenceSync->serverWait();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007044 }
7045}
7046
7047void __stdcall glGetInteger64v(GLenum pname, GLint64* params)
7048{
7049 EVENT("(GLenum pname = 0x%X, GLint64* params = 0x%0.8p)",
7050 pname, params);
7051
Geoff Langbfdea662014-07-23 14:16:32 -04007052 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007053
Geoff Langbfdea662014-07-23 14:16:32 -04007054 if (context)
7055 {
7056 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007057 {
Geoff Langbfdea662014-07-23 14:16:32 -04007058 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007059 }
Geoff Langbfdea662014-07-23 14:16:32 -04007060
7061 GLenum nativeType;
7062 unsigned int numParams = 0;
7063 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
7064 {
7065 return;
7066 }
7067
7068 if (nativeType == GL_INT_64_ANGLEX)
7069 {
7070 context->getInteger64v(pname, params);
7071 }
7072 else
7073 {
7074 CastStateValues(context, nativeType, pname, numParams, params);
7075 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007076 }
7077}
7078
7079void __stdcall glGetSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei* length, GLint* values)
7080{
7081 EVENT("(GLsync sync = 0x%0.8p, GLenum pname = 0x%X, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLint* values = 0x%0.8p)",
7082 sync, pname, bufSize, length, values);
7083
Geoff Langbfdea662014-07-23 14:16:32 -04007084 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007085
Geoff Langbfdea662014-07-23 14:16:32 -04007086 if (context)
7087 {
7088 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007089 {
Geoff Langbfdea662014-07-23 14:16:32 -04007090 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007091 }
Geoff Langbfdea662014-07-23 14:16:32 -04007092
7093 if (bufSize < 0)
7094 {
7095 return gl::error(GL_INVALID_VALUE);
7096 }
7097
7098 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7099
7100 if (!fenceSync)
7101 {
7102 return gl::error(GL_INVALID_VALUE);
7103 }
7104
7105 switch (pname)
7106 {
7107 case GL_OBJECT_TYPE: values[0] = static_cast<GLint>(GL_SYNC_FENCE); break;
7108 case GL_SYNC_STATUS: values[0] = static_cast<GLint>(fenceSync->getStatus()); break;
7109 case GL_SYNC_CONDITION: values[0] = static_cast<GLint>(fenceSync->getCondition()); break;
7110 case GL_SYNC_FLAGS: values[0] = 0; break;
7111
7112 default:
7113 return gl::error(GL_INVALID_ENUM);
7114 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007115 }
7116}
7117
7118void __stdcall glGetInteger64i_v(GLenum target, GLuint index, GLint64* data)
7119{
7120 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLint64* data = 0x%0.8p)",
7121 target, index, data);
7122
Geoff Langbfdea662014-07-23 14:16:32 -04007123 gl::Context *context = gl::getNonLostContext();
7124
7125 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007126 {
Geoff Langbfdea662014-07-23 14:16:32 -04007127 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007128 {
Geoff Langbfdea662014-07-23 14:16:32 -04007129 return gl::error(GL_INVALID_OPERATION);
7130 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007131
Geoff Langbfdea662014-07-23 14:16:32 -04007132 switch (target)
7133 {
7134 case GL_TRANSFORM_FEEDBACK_BUFFER_START:
7135 case GL_TRANSFORM_FEEDBACK_BUFFER_SIZE:
7136 case GL_TRANSFORM_FEEDBACK_BUFFER_BINDING:
7137 if (index >= context->getMaxTransformFeedbackBufferBindings())
7138 return gl::error(GL_INVALID_VALUE);
7139 break;
7140 case GL_UNIFORM_BUFFER_START:
7141 case GL_UNIFORM_BUFFER_SIZE:
7142 case GL_UNIFORM_BUFFER_BINDING:
7143 if (index >= context->getMaximumCombinedUniformBufferBindings())
7144 return gl::error(GL_INVALID_VALUE);
7145 break;
7146 default:
7147 return gl::error(GL_INVALID_ENUM);
7148 }
7149
7150 if (!(context->getIndexedInteger64v(target, index, data)))
7151 {
7152 GLenum nativeType;
7153 unsigned int numParams = 0;
7154 if (!context->getIndexedQueryParameterInfo(target, &nativeType, &numParams))
Shannon Woods15934d52013-08-19 14:28:49 -04007155 return gl::error(GL_INVALID_ENUM);
Shannon Woods15934d52013-08-19 14:28:49 -04007156
Geoff Langbfdea662014-07-23 14:16:32 -04007157 if (numParams == 0)
7158 return; // it is known that pname is valid, but there are no parameters to return
7159
7160 if (nativeType == GL_INT)
Shannon Woods15934d52013-08-19 14:28:49 -04007161 {
Geoff Langbfdea662014-07-23 14:16:32 -04007162 GLint *intParams = new GLint[numParams];
Shannon Woods15934d52013-08-19 14:28:49 -04007163
Geoff Langbfdea662014-07-23 14:16:32 -04007164 context->getIndexedIntegerv(target, index, intParams);
Shannon Woods15934d52013-08-19 14:28:49 -04007165
Geoff Langbfdea662014-07-23 14:16:32 -04007166 for (unsigned int i = 0; i < numParams; ++i)
Shannon Woods15934d52013-08-19 14:28:49 -04007167 {
Geoff Langbfdea662014-07-23 14:16:32 -04007168 data[i] = static_cast<GLint64>(intParams[i]);
Shannon Woods15934d52013-08-19 14:28:49 -04007169 }
Geoff Langbfdea662014-07-23 14:16:32 -04007170
7171 delete [] intParams;
7172 }
7173 else
7174 {
7175 UNREACHABLE();
Shannon Woods15934d52013-08-19 14:28:49 -04007176 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007177 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007178 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007179}
7180
7181void __stdcall glGetBufferParameteri64v(GLenum target, GLenum pname, GLint64* params)
7182{
7183 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint64* params = 0x%0.8p)",
7184 target, pname, params);
7185
Geoff Langbfdea662014-07-23 14:16:32 -04007186 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007187
Geoff Langbfdea662014-07-23 14:16:32 -04007188 if (context)
7189 {
7190 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007191 {
Geoff Langbfdea662014-07-23 14:16:32 -04007192 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007193 }
Geoff Langbfdea662014-07-23 14:16:32 -04007194
7195 if (!gl::ValidBufferTarget(context, target))
7196 {
7197 return gl::error(GL_INVALID_ENUM);
7198 }
7199
7200 if (!gl::ValidBufferParameter(context, pname))
7201 {
7202 return gl::error(GL_INVALID_ENUM);
7203 }
7204
7205 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
7206
7207 if (!buffer)
7208 {
7209 // A null buffer means that "0" is bound to the requested buffer target
7210 return gl::error(GL_INVALID_OPERATION);
7211 }
7212
7213 switch (pname)
7214 {
7215 case GL_BUFFER_USAGE:
7216 *params = static_cast<GLint64>(buffer->getUsage());
7217 break;
7218 case GL_BUFFER_SIZE:
7219 *params = buffer->getSize();
7220 break;
7221 case GL_BUFFER_ACCESS_FLAGS:
7222 *params = static_cast<GLint64>(buffer->getAccessFlags());
7223 break;
7224 case GL_BUFFER_MAPPED:
7225 *params = static_cast<GLint64>(buffer->isMapped());
7226 break;
7227 case GL_BUFFER_MAP_OFFSET:
7228 *params = buffer->getMapOffset();
7229 break;
7230 case GL_BUFFER_MAP_LENGTH:
7231 *params = buffer->getMapLength();
7232 break;
7233 default: UNREACHABLE(); break;
7234 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007235 }
7236}
7237
7238void __stdcall glGenSamplers(GLsizei count, GLuint* samplers)
7239{
7240 EVENT("(GLsizei count = %d, GLuint* samplers = 0x%0.8p)", count, samplers);
7241
Geoff Langbfdea662014-07-23 14:16:32 -04007242 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007243
Geoff Langbfdea662014-07-23 14:16:32 -04007244 if (context)
7245 {
7246 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007247 {
Geoff Langbfdea662014-07-23 14:16:32 -04007248 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007249 }
Geoff Langbfdea662014-07-23 14:16:32 -04007250
7251 if (count < 0)
7252 {
7253 return gl::error(GL_INVALID_VALUE);
7254 }
7255
7256 for (int i = 0; i < count; i++)
7257 {
7258 samplers[i] = context->createSampler();
7259 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007260 }
7261}
7262
7263void __stdcall glDeleteSamplers(GLsizei count, const GLuint* samplers)
7264{
7265 EVENT("(GLsizei count = %d, const GLuint* samplers = 0x%0.8p)", count, samplers);
7266
Geoff Langbfdea662014-07-23 14:16:32 -04007267 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007268
Geoff Langbfdea662014-07-23 14:16:32 -04007269 if (context)
7270 {
7271 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007272 {
Geoff Langbfdea662014-07-23 14:16:32 -04007273 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007274 }
Geoff Langbfdea662014-07-23 14:16:32 -04007275
7276 if (count < 0)
7277 {
7278 return gl::error(GL_INVALID_VALUE);
7279 }
7280
7281 for (int i = 0; i < count; i++)
7282 {
7283 context->deleteSampler(samplers[i]);
7284 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007285 }
7286}
7287
7288GLboolean __stdcall glIsSampler(GLuint sampler)
7289{
7290 EVENT("(GLuint sampler = %u)", sampler);
7291
Geoff Langbfdea662014-07-23 14:16:32 -04007292 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007293
Geoff Langbfdea662014-07-23 14:16:32 -04007294 if (context)
7295 {
7296 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007297 {
Geoff Langbfdea662014-07-23 14:16:32 -04007298 return gl::error(GL_INVALID_OPERATION, GL_FALSE);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007299 }
Geoff Langbfdea662014-07-23 14:16:32 -04007300
7301 return context->isSampler(sampler);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007302 }
7303
7304 return GL_FALSE;
7305}
7306
7307void __stdcall glBindSampler(GLuint unit, GLuint sampler)
7308{
7309 EVENT("(GLuint unit = %u, GLuint sampler = %u)", unit, sampler);
7310
Geoff Langbfdea662014-07-23 14:16:32 -04007311 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007312
Geoff Langbfdea662014-07-23 14:16:32 -04007313 if (context)
7314 {
7315 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007316 {
Geoff Langbfdea662014-07-23 14:16:32 -04007317 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007318 }
Geoff Langbfdea662014-07-23 14:16:32 -04007319
7320 if (sampler != 0 && !context->isSampler(sampler))
7321 {
7322 return gl::error(GL_INVALID_OPERATION);
7323 }
7324
7325 if (unit >= context->getMaximumCombinedTextureImageUnits())
7326 {
7327 return gl::error(GL_INVALID_VALUE);
7328 }
7329
7330 context->bindSampler(unit, sampler);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007331 }
7332}
7333
7334void __stdcall glSamplerParameteri(GLuint sampler, GLenum pname, GLint param)
7335{
7336 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLint param = %d)", sampler, pname, param);
7337
Geoff Langbfdea662014-07-23 14:16:32 -04007338 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007339
Geoff Langbfdea662014-07-23 14:16:32 -04007340 if (context)
7341 {
7342 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007343 {
Geoff Langbfdea662014-07-23 14:16:32 -04007344 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007345 }
Geoff Langbfdea662014-07-23 14:16:32 -04007346
7347 if (!gl::ValidateSamplerObjectParameter(pname))
7348 {
7349 return;
7350 }
7351
7352 if (!gl::ValidateTexParamParameters(context, pname, param))
7353 {
7354 return;
7355 }
7356
7357 if (!context->isSampler(sampler))
7358 {
7359 return gl::error(GL_INVALID_OPERATION);
7360 }
7361
7362 context->samplerParameteri(sampler, pname, param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007363 }
7364}
7365
7366void __stdcall glSamplerParameteriv(GLuint sampler, GLenum pname, const GLint* param)
7367{
Jamie Madillf6cc8cc2013-07-03 12:44:15 -04007368 glSamplerParameteri(sampler, pname, *param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007369}
7370
7371void __stdcall glSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param)
7372{
7373 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLfloat param = %g)", sampler, pname, param);
7374
Geoff Langbfdea662014-07-23 14:16:32 -04007375 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007376
Geoff Langbfdea662014-07-23 14:16:32 -04007377 if (context)
7378 {
7379 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007380 {
Geoff Langbfdea662014-07-23 14:16:32 -04007381 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007382 }
Geoff Langbfdea662014-07-23 14:16:32 -04007383
7384 if (!gl::ValidateSamplerObjectParameter(pname))
7385 {
7386 return;
7387 }
7388
7389 if (!gl::ValidateTexParamParameters(context, pname, static_cast<GLint>(param)))
7390 {
7391 return;
7392 }
7393
7394 if (!context->isSampler(sampler))
7395 {
7396 return gl::error(GL_INVALID_OPERATION);
7397 }
7398
7399 context->samplerParameterf(sampler, pname, param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007400 }
7401}
7402
7403void __stdcall glSamplerParameterfv(GLuint sampler, GLenum pname, const GLfloat* param)
7404{
Jamie Madillf6cc8cc2013-07-03 12:44:15 -04007405 glSamplerParameterf(sampler, pname, *param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007406}
7407
7408void __stdcall glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint* params)
7409{
7410 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", sampler, pname, params);
7411
Geoff Langbfdea662014-07-23 14:16:32 -04007412 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007413
Geoff Langbfdea662014-07-23 14:16:32 -04007414 if (context)
7415 {
7416 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007417 {
Geoff Langbfdea662014-07-23 14:16:32 -04007418 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007419 }
Geoff Langbfdea662014-07-23 14:16:32 -04007420
7421 if (!gl::ValidateSamplerObjectParameter(pname))
7422 {
7423 return;
7424 }
7425
7426 if (!context->isSampler(sampler))
7427 {
7428 return gl::error(GL_INVALID_OPERATION);
7429 }
7430
7431 *params = context->getSamplerParameteri(sampler, pname);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007432 }
7433}
7434
7435void __stdcall glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat* params)
7436{
7437 EVENT("(GLuint sample = %ur, GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", sampler, pname, params);
7438
Geoff Langbfdea662014-07-23 14:16:32 -04007439 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007440
Geoff Langbfdea662014-07-23 14:16:32 -04007441 if (context)
7442 {
7443 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007444 {
Geoff Langbfdea662014-07-23 14:16:32 -04007445 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007446 }
Geoff Langbfdea662014-07-23 14:16:32 -04007447
7448 if (!gl::ValidateSamplerObjectParameter(pname))
7449 {
7450 return;
7451 }
7452
7453 if (!context->isSampler(sampler))
7454 {
7455 return gl::error(GL_INVALID_OPERATION);
7456 }
7457
7458 *params = context->getSamplerParameterf(sampler, pname);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007459 }
7460}
7461
7462void __stdcall glVertexAttribDivisor(GLuint index, GLuint divisor)
7463{
7464 EVENT("(GLuint index = %u, GLuint divisor = %u)", index, divisor);
7465
Geoff Langbfdea662014-07-23 14:16:32 -04007466 if (index >= gl::MAX_VERTEX_ATTRIBS)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007467 {
Geoff Langbfdea662014-07-23 14:16:32 -04007468 return gl::error(GL_INVALID_VALUE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007469 }
Geoff Langbfdea662014-07-23 14:16:32 -04007470
7471 gl::Context *context = gl::getNonLostContext();
7472
7473 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007474 {
Geoff Langbfdea662014-07-23 14:16:32 -04007475 if (context->getClientVersion() < 3)
7476 {
7477 return gl::error(GL_INVALID_OPERATION);
7478 }
7479
7480 context->setVertexAttribDivisor(index, divisor);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007481 }
7482}
7483
7484void __stdcall glBindTransformFeedback(GLenum target, GLuint id)
7485{
7486 EVENT("(GLenum target = 0x%X, GLuint id = %u)", target, id);
7487
Geoff Langbfdea662014-07-23 14:16:32 -04007488 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007489
Geoff Langbfdea662014-07-23 14:16:32 -04007490 if (context)
7491 {
7492 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007493 {
Geoff Langbfdea662014-07-23 14:16:32 -04007494 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007495 }
Geoff Langbfdea662014-07-23 14:16:32 -04007496
7497 switch (target)
7498 {
7499 case GL_TRANSFORM_FEEDBACK:
7500 {
7501 // Cannot bind a transform feedback object if the current one is started and not paused (3.0.2 pg 85 section 2.14.1)
7502 gl::TransformFeedback *curTransformFeedback = context->getState().getCurrentTransformFeedback();
7503 if (curTransformFeedback && curTransformFeedback->isStarted() && !curTransformFeedback->isPaused())
7504 {
7505 return gl::error(GL_INVALID_OPERATION);
7506 }
7507
7508 // Cannot bind a transform feedback object that does not exist (3.0.2 pg 85 section 2.14.1)
7509 if (context->getTransformFeedback(id) == NULL)
7510 {
7511 return gl::error(GL_INVALID_OPERATION);
7512 }
7513
7514 context->bindTransformFeedback(id);
7515 }
7516 break;
7517
7518 default:
7519 return gl::error(GL_INVALID_ENUM);
7520 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007521 }
7522}
7523
7524void __stdcall glDeleteTransformFeedbacks(GLsizei n, const GLuint* ids)
7525{
7526 EVENT("(GLsizei n = %d, const GLuint* ids = 0x%0.8p)", n, ids);
7527
Geoff Langbfdea662014-07-23 14:16:32 -04007528 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007529
Geoff Langbfdea662014-07-23 14:16:32 -04007530 if (context)
7531 {
7532 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007533 {
Geoff Langbfdea662014-07-23 14:16:32 -04007534 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007535 }
Geoff Langbfdea662014-07-23 14:16:32 -04007536
7537 for (int i = 0; i < n; i++)
7538 {
7539 context->deleteTransformFeedback(ids[i]);
7540 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007541 }
7542}
7543
7544void __stdcall glGenTransformFeedbacks(GLsizei n, GLuint* ids)
7545{
7546 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
7547
Geoff Langbfdea662014-07-23 14:16:32 -04007548 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007549
Geoff Langbfdea662014-07-23 14:16:32 -04007550 if (context)
7551 {
7552 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007553 {
Geoff Langbfdea662014-07-23 14:16:32 -04007554 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007555 }
Geoff Langbfdea662014-07-23 14:16:32 -04007556
7557 for (int i = 0; i < n; i++)
7558 {
7559 ids[i] = context->createTransformFeedback();
7560 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007561 }
7562}
7563
7564GLboolean __stdcall glIsTransformFeedback(GLuint id)
7565{
7566 EVENT("(GLuint id = %u)", id);
7567
Geoff Langbfdea662014-07-23 14:16:32 -04007568 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007569
Geoff Langbfdea662014-07-23 14:16:32 -04007570 if (context)
7571 {
7572 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007573 {
Geoff Langbfdea662014-07-23 14:16:32 -04007574 return gl::error(GL_INVALID_OPERATION, GL_FALSE);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007575 }
Geoff Langbfdea662014-07-23 14:16:32 -04007576
7577 return ((context->getTransformFeedback(id) != NULL) ? GL_TRUE : GL_FALSE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007578 }
7579
7580 return GL_FALSE;
7581}
7582
7583void __stdcall glPauseTransformFeedback(void)
7584{
7585 EVENT("(void)");
7586
Geoff Langbfdea662014-07-23 14:16:32 -04007587 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007588
Geoff Langbfdea662014-07-23 14:16:32 -04007589 if (context)
7590 {
7591 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007592 {
Geoff Langbfdea662014-07-23 14:16:32 -04007593 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007594 }
Geoff Langbfdea662014-07-23 14:16:32 -04007595
7596 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
7597 ASSERT(transformFeedback != NULL);
7598
7599 // Current transform feedback must be started and not paused in order to pause (3.0.2 pg 86)
7600 if (!transformFeedback->isStarted() || transformFeedback->isPaused())
7601 {
7602 return gl::error(GL_INVALID_OPERATION);
7603 }
7604
7605 transformFeedback->pause();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007606 }
7607}
7608
7609void __stdcall glResumeTransformFeedback(void)
7610{
7611 EVENT("(void)");
7612
Geoff Langbfdea662014-07-23 14:16:32 -04007613 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007614
Geoff Langbfdea662014-07-23 14:16:32 -04007615 if (context)
7616 {
7617 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007618 {
Geoff Langbfdea662014-07-23 14:16:32 -04007619 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007620 }
Geoff Langbfdea662014-07-23 14:16:32 -04007621
7622 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
7623 ASSERT(transformFeedback != NULL);
7624
7625 // Current transform feedback must be started and paused in order to resume (3.0.2 pg 86)
7626 if (!transformFeedback->isStarted() || !transformFeedback->isPaused())
7627 {
7628 return gl::error(GL_INVALID_OPERATION);
7629 }
7630
7631 transformFeedback->resume();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007632 }
7633}
7634
7635void __stdcall glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, GLvoid* binary)
7636{
7637 EVENT("(GLuint program = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLenum* binaryFormat = 0x%0.8p, GLvoid* binary = 0x%0.8p)",
7638 program, bufSize, length, binaryFormat, binary);
7639
Geoff Langbfdea662014-07-23 14:16:32 -04007640 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007641
Geoff Langbfdea662014-07-23 14:16:32 -04007642 if (context)
7643 {
7644 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007645 {
Geoff Langbfdea662014-07-23 14:16:32 -04007646 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007647 }
Geoff Langbfdea662014-07-23 14:16:32 -04007648
7649 // glGetProgramBinary
7650 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007651 }
7652}
7653
7654void __stdcall glProgramBinary(GLuint program, GLenum binaryFormat, const GLvoid* binary, GLsizei length)
7655{
7656 EVENT("(GLuint program = %u, GLenum binaryFormat = 0x%X, const GLvoid* binary = 0x%0.8p, GLsizei length = %d)",
7657 program, binaryFormat, binary, length);
7658
Geoff Langbfdea662014-07-23 14:16:32 -04007659 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007660
Geoff Langbfdea662014-07-23 14:16:32 -04007661 if (context)
7662 {
7663 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007664 {
Geoff Langbfdea662014-07-23 14:16:32 -04007665 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007666 }
Geoff Langbfdea662014-07-23 14:16:32 -04007667
7668 // glProgramBinary
7669 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007670 }
7671}
7672
7673void __stdcall glProgramParameteri(GLuint program, GLenum pname, GLint value)
7674{
7675 EVENT("(GLuint program = %u, GLenum pname = 0x%X, GLint value = %d)",
7676 program, pname, value);
7677
Geoff Langbfdea662014-07-23 14:16:32 -04007678 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007679
Geoff Langbfdea662014-07-23 14:16:32 -04007680 if (context)
7681 {
7682 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007683 {
Geoff Langbfdea662014-07-23 14:16:32 -04007684 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007685 }
Geoff Langbfdea662014-07-23 14:16:32 -04007686
7687 // glProgramParameteri
7688 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007689 }
7690}
7691
7692void __stdcall glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments)
7693{
7694 EVENT("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum* attachments = 0x%0.8p)",
7695 target, numAttachments, attachments);
7696
Geoff Langbfdea662014-07-23 14:16:32 -04007697 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007698
Geoff Langbfdea662014-07-23 14:16:32 -04007699 if (context)
7700 {
7701 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007702 {
Geoff Langbfdea662014-07-23 14:16:32 -04007703 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.orgd63ef892013-05-30 00:10:56 +00007704 }
Geoff Langbfdea662014-07-23 14:16:32 -04007705
7706 if (!ValidateInvalidateFramebufferParameters(context, target, numAttachments, attachments))
7707 {
7708 return;
7709 }
7710
7711 GLuint maxDimension = context->getCaps().maxRenderbufferSize;
7712 context->invalidateFrameBuffer(target, numAttachments, attachments, 0, 0, maxDimension, maxDimension);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007713 }
7714}
7715
7716void __stdcall glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height)
7717{
7718 EVENT("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum* attachments = 0x%0.8p, GLint x = %d, "
7719 "GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
7720 target, numAttachments, attachments, x, y, width, height);
7721
Geoff Langbfdea662014-07-23 14:16:32 -04007722 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007723
Geoff Langbfdea662014-07-23 14:16:32 -04007724 if (context)
7725 {
7726 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007727 {
Geoff Langbfdea662014-07-23 14:16:32 -04007728 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.orgd63ef892013-05-30 00:10:56 +00007729 }
Geoff Langbfdea662014-07-23 14:16:32 -04007730
7731 if (!ValidateInvalidateFramebufferParameters(context, target, numAttachments, attachments))
7732 {
7733 return;
7734 }
7735
7736 context->invalidateFrameBuffer(target, numAttachments, attachments, x, y, width, height);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007737 }
7738}
7739
7740void __stdcall glTexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
7741{
7742 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
7743 target, levels, internalformat, width, height);
7744
Geoff Langbfdea662014-07-23 14:16:32 -04007745 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007746
Geoff Langbfdea662014-07-23 14:16:32 -04007747 if (context)
7748 {
7749 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007750 {
Geoff Langbfdea662014-07-23 14:16:32 -04007751 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org8757c062013-05-30 00:14:24 +00007752 }
Geoff Langbfdea662014-07-23 14:16:32 -04007753
7754 if (!ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, 1))
7755 {
7756 return;
7757 }
7758
7759 switch (target)
7760 {
7761 case GL_TEXTURE_2D:
7762 {
7763 gl::Texture2D *texture2d = context->getTexture2D();
7764 texture2d->storage(levels, internalformat, width, height);
7765 }
7766 break;
7767
7768 case GL_TEXTURE_CUBE_MAP:
7769 {
7770 gl::TextureCubeMap *textureCube = context->getTextureCubeMap();
7771 textureCube->storage(levels, internalformat, width);
7772 }
7773 break;
7774
7775 default:
7776 return gl::error(GL_INVALID_ENUM);
7777 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007778 }
7779}
7780
7781void __stdcall glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth)
7782{
7783 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, "
7784 "GLsizei height = %d, GLsizei depth = %d)",
7785 target, levels, internalformat, width, height, depth);
7786
Geoff Langbfdea662014-07-23 14:16:32 -04007787 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007788
Geoff Langbfdea662014-07-23 14:16:32 -04007789 if (context)
7790 {
7791 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007792 {
Geoff Langbfdea662014-07-23 14:16:32 -04007793 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com14eb55e2013-04-13 03:35:06 +00007794 }
Geoff Langbfdea662014-07-23 14:16:32 -04007795
7796 if (!ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, depth))
7797 {
7798 return;
7799 }
7800
7801 switch (target)
7802 {
7803 case GL_TEXTURE_3D:
7804 {
7805 gl::Texture3D *texture3d = context->getTexture3D();
7806 texture3d->storage(levels, internalformat, width, height, depth);
7807 }
7808 break;
7809
7810 case GL_TEXTURE_2D_ARRAY:
7811 {
7812 gl::Texture2DArray *texture2darray = context->getTexture2DArray();
7813 texture2darray->storage(levels, internalformat, width, height, depth);
7814 }
7815 break;
7816
7817 default:
7818 UNREACHABLE();
7819 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007820 }
7821}
7822
7823void __stdcall glGetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint* params)
7824{
7825 EVENT("(GLenum target = 0x%X, GLenum internalformat = 0x%X, GLenum pname = 0x%X, GLsizei bufSize = %d, "
7826 "GLint* params = 0x%0.8p)",
7827 target, internalformat, pname, bufSize, params);
7828
Geoff Langbfdea662014-07-23 14:16:32 -04007829 gl::Context *context = gl::getNonLostContext();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007830
Geoff Langbfdea662014-07-23 14:16:32 -04007831 if (context)
7832 {
7833 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007834 {
Geoff Langbfdea662014-07-23 14:16:32 -04007835 return gl::error(GL_INVALID_OPERATION);
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007836 }
Geoff Langbfdea662014-07-23 14:16:32 -04007837
7838 const gl::TextureCaps &formatCaps = context->getTextureCaps().get(internalformat);
7839 if (!formatCaps.renderable)
7840 {
7841 return gl::error(GL_INVALID_ENUM);
7842 }
7843
7844 if (target != GL_RENDERBUFFER)
7845 {
7846 return gl::error(GL_INVALID_ENUM);
7847 }
7848
7849 if (bufSize < 0)
7850 {
7851 return gl::error(GL_INVALID_VALUE);
7852 }
7853
7854 switch (pname)
7855 {
7856 case GL_NUM_SAMPLE_COUNTS:
7857 if (bufSize != 0)
Geoff Lang5f4c4632014-07-03 13:46:52 -04007858 {
7859 *params = formatCaps.sampleCounts.size();
7860 }
Geoff Langbfdea662014-07-23 14:16:32 -04007861 break;
7862 case GL_SAMPLES:
Geoff Lang5f4c4632014-07-03 13:46:52 -04007863 std::copy_n(formatCaps.sampleCounts.rbegin(), std::min<size_t>(bufSize, formatCaps.sampleCounts.size()), params);
Geoff Langbfdea662014-07-23 14:16:32 -04007864 break;
7865 default:
7866 return gl::error(GL_INVALID_ENUM);
7867 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007868 }
7869}
7870
7871// Extension functions
7872
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00007873void __stdcall glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
7874 GLbitfield mask, GLenum filter)
7875{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00007876 EVENT("(GLint srcX0 = %d, GLint srcY0 = %d, GLint srcX1 = %d, GLint srcY1 = %d, "
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00007877 "GLint dstX0 = %d, GLint dstY0 = %d, GLint dstX1 = %d, GLint dstY1 = %d, "
7878 "GLbitfield mask = 0x%X, GLenum filter = 0x%X)",
7879 srcX0, srcY0, srcX1, srcX1, dstX0, dstY0, dstX1, dstY1, mask, filter);
7880
Geoff Langbfdea662014-07-23 14:16:32 -04007881 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00007882
Geoff Langbfdea662014-07-23 14:16:32 -04007883 if (context)
7884 {
7885 if (!ValidateBlitFramebufferParameters(context, srcX0, srcY0, srcX1, srcY1,
7886 dstX0, dstY0, dstX1, dstY1, mask, filter,
7887 true))
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00007888 {
Geoff Langbfdea662014-07-23 14:16:32 -04007889 return;
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00007890 }
Geoff Langbfdea662014-07-23 14:16:32 -04007891
7892 context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
7893 mask, filter);
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00007894 }
7895}
7896
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00007897void __stdcall glTexImage3DOES(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth,
7898 GLint border, GLenum format, GLenum type, const GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00007899{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00007900 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00007901 "GLsizei width = %d, GLsizei height = %d, GLsizei depth = %d, GLint border = %d, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00007902 "GLenum format = 0x%X, GLenum type = 0x%x, const GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00007903 target, level, internalformat, width, height, depth, border, format, type, pixels);
7904
Geoff Langbfdea662014-07-23 14:16:32 -04007905 UNIMPLEMENTED(); // FIXME
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00007906}
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00007907
Geoff Langbfdea662014-07-23 14:16:32 -04007908void __stdcall glGetProgramBinaryOES(GLuint program, GLsizei bufSize, GLsizei *length,
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007909 GLenum *binaryFormat, void *binary)
7910{
apatrick@chromium.org90080e32012-07-09 22:15:33 +00007911 EVENT("(GLenum program = 0x%X, bufSize = %d, length = 0x%0.8p, binaryFormat = 0x%0.8p, binary = 0x%0.8p)",
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007912 program, bufSize, length, binaryFormat, binary);
7913
Geoff Langbfdea662014-07-23 14:16:32 -04007914 gl::Context *context = gl::getNonLostContext();
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007915
Geoff Langbfdea662014-07-23 14:16:32 -04007916 if (context)
7917 {
7918 gl::Program *programObject = context->getProgram(program);
7919
7920 if (!programObject || !programObject->isLinked())
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007921 {
Geoff Langbfdea662014-07-23 14:16:32 -04007922 return gl::error(GL_INVALID_OPERATION);
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007923 }
Geoff Langbfdea662014-07-23 14:16:32 -04007924
7925 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7926
7927 if (!programBinary)
7928 {
7929 return gl::error(GL_INVALID_OPERATION);
7930 }
7931
Geoff Lang900013c2014-07-07 11:32:19 -04007932 if (!programBinary->save(binaryFormat, binary, bufSize, length))
Geoff Langbfdea662014-07-23 14:16:32 -04007933 {
7934 return gl::error(GL_INVALID_OPERATION);
7935 }
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007936 }
7937}
7938
7939void __stdcall glProgramBinaryOES(GLuint program, GLenum binaryFormat,
7940 const void *binary, GLint length)
7941{
7942 EVENT("(GLenum program = 0x%X, binaryFormat = 0x%x, binary = 0x%0.8p, length = %d)",
7943 program, binaryFormat, binary, length);
7944
Geoff Langbfdea662014-07-23 14:16:32 -04007945 gl::Context *context = gl::getNonLostContext();
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007946
Geoff Langbfdea662014-07-23 14:16:32 -04007947 if (context)
7948 {
Geoff Lang900013c2014-07-07 11:32:19 -04007949 const std::vector<GLenum> &programBinaryFormats = context->getCaps().programBinaryFormats;
7950 if (std::find(programBinaryFormats.begin(), programBinaryFormats.end(), binaryFormat) == programBinaryFormats.end())
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007951 {
Geoff Langbfdea662014-07-23 14:16:32 -04007952 return gl::error(GL_INVALID_ENUM);
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007953 }
Geoff Langbfdea662014-07-23 14:16:32 -04007954
7955 gl::Program *programObject = context->getProgram(program);
Geoff Langbfdea662014-07-23 14:16:32 -04007956 if (!programObject)
7957 {
7958 return gl::error(GL_INVALID_OPERATION);
7959 }
7960
Geoff Lang900013c2014-07-07 11:32:19 -04007961 context->setProgramBinary(program, binaryFormat, binary, length);
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00007962 }
7963}
7964
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00007965void __stdcall glDrawBuffersEXT(GLsizei n, const GLenum *bufs)
7966{
7967 EVENT("(GLenum n = %d, bufs = 0x%0.8p)", n, bufs);
7968
Geoff Langbfdea662014-07-23 14:16:32 -04007969 gl::Context *context = gl::getNonLostContext();
7970
7971 if (context)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00007972 {
Geoff Langbfdea662014-07-23 14:16:32 -04007973 if (n < 0 || static_cast<GLuint>(n) > context->getCaps().maxDrawBuffers)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00007974 {
Geoff Langbfdea662014-07-23 14:16:32 -04007975 return gl::error(GL_INVALID_VALUE);
7976 }
7977
7978 if (context->getState().getDrawFramebuffer()->id() == 0)
7979 {
7980 if (n != 1)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00007981 {
Geoff Langbfdea662014-07-23 14:16:32 -04007982 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00007983 }
7984
Geoff Langbfdea662014-07-23 14:16:32 -04007985 if (bufs[0] != GL_NONE && bufs[0] != GL_BACK)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00007986 {
Geoff Langbfdea662014-07-23 14:16:32 -04007987 return gl::error(GL_INVALID_OPERATION);
shannon.woods%transgaming.com@gtempaccount.com2fa73c52013-04-13 03:37:20 +00007988 }
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00007989 }
Geoff Langbfdea662014-07-23 14:16:32 -04007990 else
7991 {
7992 for (int colorAttachment = 0; colorAttachment < n; colorAttachment++)
7993 {
7994 const GLenum attachment = GL_COLOR_ATTACHMENT0_EXT + colorAttachment;
7995 if (bufs[colorAttachment] != GL_NONE && bufs[colorAttachment] != attachment)
7996 {
7997 return gl::error(GL_INVALID_OPERATION);
7998 }
7999 }
8000 }
8001
8002 gl::Framebuffer *framebuffer = context->getState().getDrawFramebuffer();
8003
8004 for (unsigned int colorAttachment = 0; colorAttachment < static_cast<unsigned int>(n); colorAttachment++)
8005 {
8006 framebuffer->setDrawBufferState(colorAttachment, bufs[colorAttachment]);
8007 }
8008
8009 for (unsigned int colorAttachment = n; colorAttachment < context->getCaps().maxDrawBuffers; colorAttachment++)
8010 {
8011 framebuffer->setDrawBufferState(colorAttachment, GL_NONE);
8012 }
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008013 }
8014}
8015
Shannon Woodsb3801742014-03-27 14:59:19 -04008016void __stdcall glGetBufferPointervOES(GLenum target, GLenum pname, void** params)
8017{
8018 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLvoid** params = 0x%0.8p)", target, pname, params);
8019
Geoff Langbfdea662014-07-23 14:16:32 -04008020 gl::Context *context = gl::getNonLostContext();
Shannon Woodsb3801742014-03-27 14:59:19 -04008021
Geoff Langbfdea662014-07-23 14:16:32 -04008022 if (context)
8023 {
8024 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008025 {
Geoff Langbfdea662014-07-23 14:16:32 -04008026 return gl::error(GL_INVALID_ENUM);
Shannon Woodsb3801742014-03-27 14:59:19 -04008027 }
Geoff Langbfdea662014-07-23 14:16:32 -04008028
8029 if (pname != GL_BUFFER_MAP_POINTER)
8030 {
8031 return gl::error(GL_INVALID_ENUM);
8032 }
8033
8034 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8035
8036 if (!buffer || !buffer->isMapped())
8037 {
8038 *params = NULL;
8039 }
8040 else
8041 {
8042 *params = buffer->getMapPointer();
8043 }
Shannon Woodsb3801742014-03-27 14:59:19 -04008044 }
8045}
8046
8047void * __stdcall glMapBufferOES(GLenum target, GLenum access)
8048{
8049 EVENT("(GLenum target = 0x%X, GLbitfield access = 0x%X)", target, access);
8050
Geoff Langbfdea662014-07-23 14:16:32 -04008051 gl::Context *context = gl::getNonLostContext();
Shannon Woodsb3801742014-03-27 14:59:19 -04008052
Geoff Langbfdea662014-07-23 14:16:32 -04008053 if (context)
8054 {
8055 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008056 {
Geoff Langbfdea662014-07-23 14:16:32 -04008057 return gl::error(GL_INVALID_ENUM, reinterpret_cast<GLvoid*>(NULL));
Shannon Woodsb3801742014-03-27 14:59:19 -04008058 }
Geoff Langbfdea662014-07-23 14:16:32 -04008059
8060 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8061
8062 if (buffer == NULL)
8063 {
8064 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
8065 }
8066
8067 if (access != GL_WRITE_ONLY_OES)
8068 {
8069 return gl::error(GL_INVALID_ENUM, reinterpret_cast<GLvoid*>(NULL));
8070 }
8071
8072 if (buffer->isMapped())
8073 {
8074 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
8075 }
8076
8077 return buffer->mapRange(0, buffer->getSize(), GL_MAP_WRITE_BIT);
Shannon Woodsb3801742014-03-27 14:59:19 -04008078 }
8079
8080 return NULL;
8081}
8082
8083GLboolean __stdcall glUnmapBufferOES(GLenum target)
8084{
8085 EVENT("(GLenum target = 0x%X)", target);
8086
Geoff Langbfdea662014-07-23 14:16:32 -04008087 gl::Context *context = gl::getNonLostContext();
Shannon Woodsb3801742014-03-27 14:59:19 -04008088
Geoff Langbfdea662014-07-23 14:16:32 -04008089 if (context)
8090 {
8091 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008092 {
Geoff Langbfdea662014-07-23 14:16:32 -04008093 return gl::error(GL_INVALID_ENUM, GL_FALSE);
Shannon Woodsb3801742014-03-27 14:59:19 -04008094 }
Geoff Langbfdea662014-07-23 14:16:32 -04008095
8096 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8097
8098 if (buffer == NULL || !buffer->isMapped())
8099 {
8100 return gl::error(GL_INVALID_OPERATION, GL_FALSE);
8101 }
8102
8103 // TODO: detect if we had corruption. if so, throw an error and return false.
8104
8105 buffer->unmap();
8106
8107 return GL_TRUE;
Shannon Woodsb3801742014-03-27 14:59:19 -04008108 }
8109
8110 return GL_FALSE;
8111}
8112
Shannon Woods916e7692014-03-27 16:58:22 -04008113void* __stdcall glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
8114{
8115 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d, GLbitfield access = 0x%X)",
8116 target, offset, length, access);
8117
Geoff Langbfdea662014-07-23 14:16:32 -04008118 gl::Context *context = gl::getNonLostContext();
Shannon Woods916e7692014-03-27 16:58:22 -04008119
Geoff Langbfdea662014-07-23 14:16:32 -04008120 if (context)
8121 {
8122 if (!gl::ValidBufferTarget(context, target))
Shannon Woods916e7692014-03-27 16:58:22 -04008123 {
Geoff Langbfdea662014-07-23 14:16:32 -04008124 return gl::error(GL_INVALID_ENUM, reinterpret_cast<GLvoid*>(NULL));
Shannon Woods916e7692014-03-27 16:58:22 -04008125 }
Geoff Langbfdea662014-07-23 14:16:32 -04008126
8127 if (offset < 0 || length < 0)
8128 {
8129 return gl::error(GL_INVALID_VALUE, reinterpret_cast<GLvoid*>(NULL));
8130 }
8131
8132 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8133
8134 if (buffer == NULL)
8135 {
8136 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
8137 }
8138
8139 // Check for buffer overflow
8140 size_t offsetSize = static_cast<size_t>(offset);
8141 size_t lengthSize = static_cast<size_t>(length);
8142
8143 if (!rx::IsUnsignedAdditionSafe(offsetSize, lengthSize) ||
8144 offsetSize + lengthSize > static_cast<size_t>(buffer->getSize()))
8145 {
8146 return gl::error(GL_INVALID_VALUE, reinterpret_cast<GLvoid*>(NULL));
8147 }
8148
8149 // Check for invalid bits in the mask
8150 GLbitfield allAccessBits = GL_MAP_READ_BIT |
8151 GL_MAP_WRITE_BIT |
8152 GL_MAP_INVALIDATE_RANGE_BIT |
8153 GL_MAP_INVALIDATE_BUFFER_BIT |
8154 GL_MAP_FLUSH_EXPLICIT_BIT |
8155 GL_MAP_UNSYNCHRONIZED_BIT;
8156
8157 if (access & ~(allAccessBits))
8158 {
8159 return gl::error(GL_INVALID_VALUE, reinterpret_cast<GLvoid*>(NULL));
8160 }
8161
8162 if (length == 0 || buffer->isMapped())
8163 {
8164 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
8165 }
8166
8167 // Check for invalid bit combinations
8168 if ((access & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT)) == 0)
8169 {
8170 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
8171 }
8172
8173 GLbitfield writeOnlyBits = GL_MAP_INVALIDATE_RANGE_BIT |
8174 GL_MAP_INVALIDATE_BUFFER_BIT |
8175 GL_MAP_UNSYNCHRONIZED_BIT;
8176
8177 if ((access & GL_MAP_READ_BIT) != 0 && (access & writeOnlyBits) != 0)
8178 {
8179 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
8180 }
8181
8182 if ((access & GL_MAP_WRITE_BIT) == 0 && (access & GL_MAP_FLUSH_EXPLICIT_BIT) != 0)
8183 {
8184 return gl::error(GL_INVALID_OPERATION, reinterpret_cast<GLvoid*>(NULL));
8185 }
8186
8187 return buffer->mapRange(offset, length, access);
Shannon Woods916e7692014-03-27 16:58:22 -04008188 }
8189
8190 return NULL;
8191}
8192
8193void __stdcall glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length)
8194{
8195 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d)", target, offset, length);
8196
Geoff Langbfdea662014-07-23 14:16:32 -04008197 gl::Context *context = gl::getNonLostContext();
Shannon Woods916e7692014-03-27 16:58:22 -04008198
Geoff Langbfdea662014-07-23 14:16:32 -04008199 if (context)
8200 {
8201 if (offset < 0 || length < 0)
Shannon Woods916e7692014-03-27 16:58:22 -04008202 {
Geoff Langbfdea662014-07-23 14:16:32 -04008203 return gl::error(GL_INVALID_VALUE);
Shannon Woods916e7692014-03-27 16:58:22 -04008204 }
Geoff Langbfdea662014-07-23 14:16:32 -04008205
8206 if (!gl::ValidBufferTarget(context, target))
8207 {
8208 return gl::error(GL_INVALID_ENUM);
8209 }
8210
8211 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8212
8213 if (buffer == NULL)
8214 {
8215 return gl::error(GL_INVALID_OPERATION);
8216 }
8217
8218 if (!buffer->isMapped() || (buffer->getAccessFlags() & GL_MAP_FLUSH_EXPLICIT_BIT) == 0)
8219 {
8220 return gl::error(GL_INVALID_OPERATION);
8221 }
8222
8223 // Check for buffer overflow
8224 size_t offsetSize = static_cast<size_t>(offset);
8225 size_t lengthSize = static_cast<size_t>(length);
8226
8227 if (!rx::IsUnsignedAdditionSafe(offsetSize, lengthSize) ||
8228 offsetSize + lengthSize > static_cast<size_t>(buffer->getMapLength()))
8229 {
8230 return gl::error(GL_INVALID_VALUE);
8231 }
8232
8233 // We do not currently support a non-trivial implementation of FlushMappedBufferRange
Shannon Woods916e7692014-03-27 16:58:22 -04008234 }
8235}
8236
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008237__eglMustCastToProperFunctionPointerType __stdcall glGetProcAddress(const char *procname)
8238{
8239 struct Extension
8240 {
8241 const char *name;
8242 __eglMustCastToProperFunctionPointerType address;
8243 };
8244
8245 static const Extension glExtensions[] =
8246 {
8247 {"glTexImage3DOES", (__eglMustCastToProperFunctionPointerType)glTexImage3DOES},
daniel@transgaming.com01868132010-08-24 19:21:17 +00008248 {"glBlitFramebufferANGLE", (__eglMustCastToProperFunctionPointerType)glBlitFramebufferANGLE},
daniel@transgaming.com1fe96c92011-01-14 15:08:44 +00008249 {"glRenderbufferStorageMultisampleANGLE", (__eglMustCastToProperFunctionPointerType)glRenderbufferStorageMultisampleANGLE},
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00008250 {"glDeleteFencesNV", (__eglMustCastToProperFunctionPointerType)glDeleteFencesNV},
8251 {"glGenFencesNV", (__eglMustCastToProperFunctionPointerType)glGenFencesNV},
8252 {"glIsFenceNV", (__eglMustCastToProperFunctionPointerType)glIsFenceNV},
8253 {"glTestFenceNV", (__eglMustCastToProperFunctionPointerType)glTestFenceNV},
8254 {"glGetFenceivNV", (__eglMustCastToProperFunctionPointerType)glGetFenceivNV},
8255 {"glFinishFenceNV", (__eglMustCastToProperFunctionPointerType)glFinishFenceNV},
8256 {"glSetFenceNV", (__eglMustCastToProperFunctionPointerType)glSetFenceNV},
zmo@google.coma574f782011-10-03 21:45:23 +00008257 {"glGetTranslatedShaderSourceANGLE", (__eglMustCastToProperFunctionPointerType)glGetTranslatedShaderSourceANGLE},
daniel@transgaming.com0bd1f2f2011-11-11 04:19:03 +00008258 {"glTexStorage2DEXT", (__eglMustCastToProperFunctionPointerType)glTexStorage2DEXT},
daniel@transgaming.com709ed112011-11-12 03:18:10 +00008259 {"glGetGraphicsResetStatusEXT", (__eglMustCastToProperFunctionPointerType)glGetGraphicsResetStatusEXT},
8260 {"glReadnPixelsEXT", (__eglMustCastToProperFunctionPointerType)glReadnPixelsEXT},
8261 {"glGetnUniformfvEXT", (__eglMustCastToProperFunctionPointerType)glGetnUniformfvEXT},
8262 {"glGetnUniformivEXT", (__eglMustCastToProperFunctionPointerType)glGetnUniformivEXT},
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00008263 {"glGenQueriesEXT", (__eglMustCastToProperFunctionPointerType)glGenQueriesEXT},
8264 {"glDeleteQueriesEXT", (__eglMustCastToProperFunctionPointerType)glDeleteQueriesEXT},
8265 {"glIsQueryEXT", (__eglMustCastToProperFunctionPointerType)glIsQueryEXT},
8266 {"glBeginQueryEXT", (__eglMustCastToProperFunctionPointerType)glBeginQueryEXT},
8267 {"glEndQueryEXT", (__eglMustCastToProperFunctionPointerType)glEndQueryEXT},
8268 {"glGetQueryivEXT", (__eglMustCastToProperFunctionPointerType)glGetQueryivEXT},
8269 {"glGetQueryObjectuivEXT", (__eglMustCastToProperFunctionPointerType)glGetQueryObjectuivEXT},
shannon.woods%transgaming.com@gtempaccount.com77d94722013-04-13 03:34:22 +00008270 {"glDrawBuffersEXT", (__eglMustCastToProperFunctionPointerType)glDrawBuffersEXT},
daniel@transgaming.comdce02fd2012-01-27 15:39:51 +00008271 {"glVertexAttribDivisorANGLE", (__eglMustCastToProperFunctionPointerType)glVertexAttribDivisorANGLE},
8272 {"glDrawArraysInstancedANGLE", (__eglMustCastToProperFunctionPointerType)glDrawArraysInstancedANGLE},
8273 {"glDrawElementsInstancedANGLE", (__eglMustCastToProperFunctionPointerType)glDrawElementsInstancedANGLE},
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008274 {"glGetProgramBinaryOES", (__eglMustCastToProperFunctionPointerType)glGetProgramBinaryOES},
Shannon Woodsb3801742014-03-27 14:59:19 -04008275 {"glProgramBinaryOES", (__eglMustCastToProperFunctionPointerType)glProgramBinaryOES},
8276 {"glGetBufferPointervOES", (__eglMustCastToProperFunctionPointerType)glGetBufferPointervOES},
8277 {"glMapBufferOES", (__eglMustCastToProperFunctionPointerType)glMapBufferOES},
Shannon Woods916e7692014-03-27 16:58:22 -04008278 {"glUnmapBufferOES", (__eglMustCastToProperFunctionPointerType)glUnmapBufferOES},
8279 {"glMapBufferRangeEXT", (__eglMustCastToProperFunctionPointerType)glMapBufferRangeEXT},
8280 {"glFlushMappedBufferRangeEXT", (__eglMustCastToProperFunctionPointerType)glFlushMappedBufferRangeEXT}, };
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008281
shannon.woods@transgaming.comd438fd42013-02-28 23:17:45 +00008282 for (unsigned int ext = 0; ext < ArraySize(glExtensions); ext++)
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008283 {
8284 if (strcmp(procname, glExtensions[ext].name) == 0)
8285 {
8286 return (__eglMustCastToProperFunctionPointerType)glExtensions[ext].address;
8287 }
8288 }
8289
8290 return NULL;
8291}
8292
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00008293// Non-public functions used by EGL
8294
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00008295bool __stdcall glBindTexImage(egl::Surface *surface)
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008296{
8297 EVENT("(egl::Surface* surface = 0x%0.8p)",
8298 surface);
8299
Geoff Langbfdea662014-07-23 14:16:32 -04008300 gl::Context *context = gl::getNonLostContext();
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008301
Geoff Langbfdea662014-07-23 14:16:32 -04008302 if (context)
8303 {
8304 gl::Texture2D *textureObject = context->getTexture2D();
8305 ASSERT(textureObject != NULL);
8306
8307 if (textureObject->isImmutable())
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008308 {
Geoff Langbfdea662014-07-23 14:16:32 -04008309 return false;
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008310 }
Geoff Langbfdea662014-07-23 14:16:32 -04008311
8312 textureObject->bindTexImage(surface);
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008313 }
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00008314
8315 return true;
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008316}
8317
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008318}