blob: b8d51a69b48e8c72e68bf9fd9c54823f846612cb [file] [log] [blame]
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001//
Geoff Lang48dcae72014-02-05 16:28:24 -05002// Copyright (c) 2002-2014 The ANGLE Project Authors. All rights reserved.
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6
7// libGLESv2.cpp: Implements the exported OpenGL ES 2.0 functions.
8
daniel@transgaming.coma0ce7e62011-01-25 14:47:16 +00009#include "common/version.h"
Geoff Lang0b7eef72014-06-12 14:10:47 -040010#include "common/utilities.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000011
12#include "libGLESv2/main.h"
shannonwoods@chromium.org8dcfc6a2013-05-30 00:09:48 +000013#include "libGLESv2/formatutils.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000014#include "libGLESv2/Buffer.h"
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +000015#include "libGLESv2/Fence.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000016#include "libGLESv2/Framebuffer.h"
shannon.woods@transgaming.com486d9e92013-02-28 23:15:41 +000017#include "libGLESv2/Renderbuffer.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000018#include "libGLESv2/Program.h"
apatrick@chromium.orgea09f9b2012-06-08 00:45:32 +000019#include "libGLESv2/ProgramBinary.h"
daniel@transgaming.combbf56f72010-04-20 18:52:13 +000020#include "libGLESv2/Texture.h"
daniel@transgaming.com86bdb822012-01-20 18:24:39 +000021#include "libGLESv2/Query.h"
shannon.woods@transgaming.com486d9e92013-02-28 23:15:41 +000022#include "libGLESv2/Context.h"
Jamie Madill57a89722013-07-02 11:57:03 -040023#include "libGLESv2/VertexArray.h"
Brandon Jones5bf98292014-06-06 17:19:38 -070024#include "libGLESv2/VertexAttribute.h"
Geoff Langc8058452014-02-03 12:04:11 -050025#include "libGLESv2/TransformFeedback.h"
Jamie Madille261b442014-06-25 12:42:21 -040026#include "libGLESv2/FramebufferAttachment.h"
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000027
Geoff Lange8ebe7f2013-08-05 15:03:13 -040028#include "libGLESv2/validationES.h"
29#include "libGLESv2/validationES2.h"
30#include "libGLESv2/validationES3.h"
Jamie Madill55856b12014-01-02 13:59:50 -050031#include "libGLESv2/queryconversions.h"
Jamie Madill478fdb22013-07-19 16:36:59 -040032
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000033extern "C"
34{
35
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +000036// OpenGL ES 2.0 functions
37
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000038void __stdcall glActiveTexture(GLenum texture)
39{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +000040 EVENT("(GLenum texture = 0x%X)", texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000041
Geoff Langbfdea662014-07-23 14:16:32 -040042 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -040043 if (context)
44 {
Geoff Lang3a61c322014-07-10 13:01:54 -040045 if (texture < GL_TEXTURE0 || texture > GL_TEXTURE0 + context->getCaps().maxCombinedTextureImageUnits - 1)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000046 {
Geoff Langb1196682014-07-23 13:47:29 -040047 context->recordError(gl::Error(GL_INVALID_ENUM));
48 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000049 }
Geoff Langbfdea662014-07-23 14:16:32 -040050
51 context->getState().setActiveSampler(texture - GL_TEXTURE0);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000052 }
53}
54
55void __stdcall glAttachShader(GLuint program, GLuint shader)
56{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +000057 EVENT("(GLuint program = %d, GLuint shader = %d)", program, shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000058
Geoff Langbfdea662014-07-23 14:16:32 -040059 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -040060 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000061 {
Geoff Langbfdea662014-07-23 14:16:32 -040062 gl::Program *programObject = context->getProgram(program);
63 gl::Shader *shaderObject = context->getShader(shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000064
Geoff Langbfdea662014-07-23 14:16:32 -040065 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000066 {
Geoff Langbfdea662014-07-23 14:16:32 -040067 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000068 {
Geoff Langb1196682014-07-23 13:47:29 -040069 context->recordError(gl::Error(GL_INVALID_OPERATION));
70 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000071 }
Geoff Langbfdea662014-07-23 14:16:32 -040072 else
73 {
Geoff Langb1196682014-07-23 13:47:29 -040074 context->recordError(gl::Error(GL_INVALID_VALUE));
75 return;
Geoff Langbfdea662014-07-23 14:16:32 -040076 }
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 {
Geoff Langb1196682014-07-23 13:47:29 -040083 context->recordError(gl::Error(GL_INVALID_OPERATION));
84 return;
Geoff Langbfdea662014-07-23 14:16:32 -040085 }
86 else
87 {
Geoff Langb1196682014-07-23 13:47:29 -040088 context->recordError(gl::Error(GL_INVALID_VALUE));
89 return;
Geoff Langbfdea662014-07-23 14:16:32 -040090 }
91 }
92
93 if (!programObject->attachShader(shaderObject))
94 {
Geoff Langb1196682014-07-23 13:47:29 -040095 context->recordError(gl::Error(GL_INVALID_OPERATION));
96 return;
Geoff Langbfdea662014-07-23 14:16:32 -040097 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +000098 }
99}
100
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000101void __stdcall glBeginQueryEXT(GLenum target, GLuint id)
102{
103 EVENT("(GLenum target = 0x%X, GLuint %d)", target, id);
104
Geoff Langbfdea662014-07-23 14:16:32 -0400105 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400106 if (context)
107 {
108 if (!ValidateBeginQuery(context, target, id))
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000109 {
Geoff Langbfdea662014-07-23 14:16:32 -0400110 return;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000111 }
Geoff Langbfdea662014-07-23 14:16:32 -0400112
Geoff Lang5aad9672014-09-08 11:10:42 -0400113 gl::Error error = context->beginQuery(target, id);
114 if (error.isError())
115 {
116 context->recordError(error);
117 return;
118 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +0000119 }
120}
121
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000122void __stdcall glBindAttribLocation(GLuint program, GLuint index, const GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000123{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000124 EVENT("(GLuint program = %d, GLuint index = %d, const GLchar* name = 0x%0.8p)", program, index, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000125
Geoff Langbfdea662014-07-23 14:16:32 -0400126 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400127 if (context)
128 {
Geoff Langb1196682014-07-23 13:47:29 -0400129 if (index >= gl::MAX_VERTEX_ATTRIBS)
130 {
131 context->recordError(gl::Error(GL_INVALID_VALUE));
132 return;
133 }
134
Geoff Langbfdea662014-07-23 14:16:32 -0400135 gl::Program *programObject = context->getProgram(program);
136
137 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000138 {
Geoff Langbfdea662014-07-23 14:16:32 -0400139 if (context->getShader(program))
daniel@transgaming.com98079832010-04-13 03:26:29 +0000140 {
Geoff Langb1196682014-07-23 13:47:29 -0400141 context->recordError(gl::Error(GL_INVALID_OPERATION));
142 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000143 }
Geoff Langbfdea662014-07-23 14:16:32 -0400144 else
145 {
Geoff Langb1196682014-07-23 13:47:29 -0400146 context->recordError(gl::Error(GL_INVALID_VALUE));
147 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400148 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000149 }
Geoff Langbfdea662014-07-23 14:16:32 -0400150
151 if (strncmp(name, "gl_", 3) == 0)
152 {
Geoff Langb1196682014-07-23 13:47:29 -0400153 context->recordError(gl::Error(GL_INVALID_OPERATION));
154 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400155 }
156
157 programObject->bindAttributeLocation(index, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000158 }
159}
160
161void __stdcall glBindBuffer(GLenum target, GLuint buffer)
162{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000163 EVENT("(GLenum target = 0x%X, GLuint buffer = %d)", target, buffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000164
Geoff Langbfdea662014-07-23 14:16:32 -0400165 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400166 if (context)
167 {
168 if (!gl::ValidBufferTarget(context, target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000169 {
Geoff Langb1196682014-07-23 13:47:29 -0400170 context->recordError(gl::Error(GL_INVALID_ENUM));
171 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000172 }
Geoff Langbfdea662014-07-23 14:16:32 -0400173
174 switch (target)
175 {
176 case GL_ARRAY_BUFFER:
177 context->bindArrayBuffer(buffer);
178 return;
179 case GL_ELEMENT_ARRAY_BUFFER:
180 context->bindElementArrayBuffer(buffer);
181 return;
182 case GL_COPY_READ_BUFFER:
183 context->bindCopyReadBuffer(buffer);
184 return;
185 case GL_COPY_WRITE_BUFFER:
186 context->bindCopyWriteBuffer(buffer);
187 return;
188 case GL_PIXEL_PACK_BUFFER:
189 context->bindPixelPackBuffer(buffer);
190 return;
191 case GL_PIXEL_UNPACK_BUFFER:
192 context->bindPixelUnpackBuffer(buffer);
193 return;
194 case GL_UNIFORM_BUFFER:
195 context->bindGenericUniformBuffer(buffer);
196 return;
197 case GL_TRANSFORM_FEEDBACK_BUFFER:
198 context->bindGenericTransformFeedbackBuffer(buffer);
199 return;
Geoff Langb1196682014-07-23 13:47:29 -0400200
Geoff Langbfdea662014-07-23 14:16:32 -0400201 default:
Geoff Langb1196682014-07-23 13:47:29 -0400202 context->recordError(gl::Error(GL_INVALID_ENUM));
203 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400204 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000205 }
206}
207
208void __stdcall glBindFramebuffer(GLenum target, GLuint framebuffer)
209{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000210 EVENT("(GLenum target = 0x%X, GLuint framebuffer = %d)", target, framebuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000211
Geoff Langbfdea662014-07-23 14:16:32 -0400212 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400213 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000214 {
Geoff Langb1196682014-07-23 13:47:29 -0400215 if (!gl::ValidFramebufferTarget(target))
216 {
217 context->recordError(gl::Error(GL_INVALID_ENUM));
218 return;
219 }
220
Geoff Langbfdea662014-07-23 14:16:32 -0400221 if (target == GL_READ_FRAMEBUFFER_ANGLE || target == GL_FRAMEBUFFER)
222 {
223 context->bindReadFramebuffer(framebuffer);
224 }
225
226 if (target == GL_DRAW_FRAMEBUFFER_ANGLE || target == GL_FRAMEBUFFER)
227 {
228 context->bindDrawFramebuffer(framebuffer);
229 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000230 }
231}
232
233void __stdcall glBindRenderbuffer(GLenum target, GLuint renderbuffer)
234{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000235 EVENT("(GLenum target = 0x%X, GLuint renderbuffer = %d)", target, renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000236
Geoff Langbfdea662014-07-23 14:16:32 -0400237 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400238 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000239 {
Geoff Langb1196682014-07-23 13:47:29 -0400240 if (target != GL_RENDERBUFFER)
241 {
242 context->recordError(gl::Error(GL_INVALID_ENUM));
243 return;
244 }
245
Geoff Langbfdea662014-07-23 14:16:32 -0400246 context->bindRenderbuffer(renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000247 }
248}
249
250void __stdcall glBindTexture(GLenum target, GLuint texture)
251{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000252 EVENT("(GLenum target = 0x%X, GLuint texture = %d)", target, texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000253
Geoff Langbfdea662014-07-23 14:16:32 -0400254 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400255 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000256 {
Geoff Langbfdea662014-07-23 14:16:32 -0400257 gl::Texture *textureObject = context->getTexture(texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000258
Geoff Langbfdea662014-07-23 14:16:32 -0400259 if (textureObject && textureObject->getTarget() != target && texture != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000260 {
Geoff Langb1196682014-07-23 13:47:29 -0400261 context->recordError(gl::Error(GL_INVALID_OPERATION));
262 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400263 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000264
Geoff Langbfdea662014-07-23 14:16:32 -0400265 switch (target)
266 {
267 case GL_TEXTURE_2D:
Geoff Langbfdea662014-07-23 14:16:32 -0400268 case GL_TEXTURE_CUBE_MAP:
Geoff Lang76b10c92014-09-05 16:28:14 -0400269 break;
Geoff Langb1196682014-07-23 13:47:29 -0400270
Geoff Langbfdea662014-07-23 14:16:32 -0400271 case GL_TEXTURE_3D:
Geoff Langbfdea662014-07-23 14:16:32 -0400272 case GL_TEXTURE_2D_ARRAY:
273 if (context->getClientVersion() < 3)
274 {
Geoff Langb1196682014-07-23 13:47:29 -0400275 context->recordError(gl::Error(GL_INVALID_ENUM));
276 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400277 }
Geoff Lang76b10c92014-09-05 16:28:14 -0400278 break;
Geoff Langb1196682014-07-23 13:47:29 -0400279
Geoff Langbfdea662014-07-23 14:16:32 -0400280 default:
Geoff Langb1196682014-07-23 13:47:29 -0400281 context->recordError(gl::Error(GL_INVALID_ENUM));
282 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000283 }
Geoff Lang76b10c92014-09-05 16:28:14 -0400284
285 context->bindTexture(target, texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000286 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000287}
288
289void __stdcall glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
290{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000291 EVENT("(GLclampf red = %f, GLclampf green = %f, GLclampf blue = %f, GLclampf alpha = %f)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000292 red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000293
Geoff Langbfdea662014-07-23 14:16:32 -0400294 gl::Context* context = gl::getNonLostContext();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000295
Geoff Langbfdea662014-07-23 14:16:32 -0400296 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000297 {
Geoff Langbfdea662014-07-23 14:16:32 -0400298 context->getState().setBlendColor(gl::clamp01(red), gl::clamp01(green), gl::clamp01(blue), gl::clamp01(alpha));
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000299 }
300}
301
302void __stdcall glBlendEquation(GLenum mode)
303{
304 glBlendEquationSeparate(mode, mode);
305}
306
307void __stdcall glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha)
308{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000309 EVENT("(GLenum modeRGB = 0x%X, GLenum modeAlpha = 0x%X)", modeRGB, modeAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000310
Geoff Langbfdea662014-07-23 14:16:32 -0400311 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400312 if (context)
313 {
Geoff Langb1196682014-07-23 13:47:29 -0400314 switch (modeRGB)
315 {
316 case GL_FUNC_ADD:
317 case GL_FUNC_SUBTRACT:
318 case GL_FUNC_REVERSE_SUBTRACT:
319 case GL_MIN:
320 case GL_MAX:
321 break;
322
323 default:
324 context->recordError(gl::Error(GL_INVALID_ENUM));
325 return;
326 }
327
328 switch (modeAlpha)
329 {
330 case GL_FUNC_ADD:
331 case GL_FUNC_SUBTRACT:
332 case GL_FUNC_REVERSE_SUBTRACT:
333 case GL_MIN:
334 case GL_MAX:
335 break;
336
337 default:
338 context->recordError(gl::Error(GL_INVALID_ENUM));
339 return;
340 }
341
Geoff Langbfdea662014-07-23 14:16:32 -0400342 context->getState().setBlendEquation(modeRGB, modeAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000343 }
344}
345
346void __stdcall glBlendFunc(GLenum sfactor, GLenum dfactor)
347{
348 glBlendFuncSeparate(sfactor, dfactor, sfactor, dfactor);
349}
350
351void __stdcall glBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha)
352{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000353 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 +0000354 srcRGB, dstRGB, srcAlpha, dstAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000355
Geoff Langbfdea662014-07-23 14:16:32 -0400356 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400357 if (context)
358 {
Geoff Langb1196682014-07-23 13:47:29 -0400359 switch (srcRGB)
360 {
361 case GL_ZERO:
362 case GL_ONE:
363 case GL_SRC_COLOR:
364 case GL_ONE_MINUS_SRC_COLOR:
365 case GL_DST_COLOR:
366 case GL_ONE_MINUS_DST_COLOR:
367 case GL_SRC_ALPHA:
368 case GL_ONE_MINUS_SRC_ALPHA:
369 case GL_DST_ALPHA:
370 case GL_ONE_MINUS_DST_ALPHA:
371 case GL_CONSTANT_COLOR:
372 case GL_ONE_MINUS_CONSTANT_COLOR:
373 case GL_CONSTANT_ALPHA:
374 case GL_ONE_MINUS_CONSTANT_ALPHA:
375 case GL_SRC_ALPHA_SATURATE:
376 break;
377
378 default:
379 context->recordError(gl::Error(GL_INVALID_ENUM));
380 return;
381 }
382
383 switch (dstRGB)
384 {
385 case GL_ZERO:
386 case GL_ONE:
387 case GL_SRC_COLOR:
388 case GL_ONE_MINUS_SRC_COLOR:
389 case GL_DST_COLOR:
390 case GL_ONE_MINUS_DST_COLOR:
391 case GL_SRC_ALPHA:
392 case GL_ONE_MINUS_SRC_ALPHA:
393 case GL_DST_ALPHA:
394 case GL_ONE_MINUS_DST_ALPHA:
395 case GL_CONSTANT_COLOR:
396 case GL_ONE_MINUS_CONSTANT_COLOR:
397 case GL_CONSTANT_ALPHA:
398 case GL_ONE_MINUS_CONSTANT_ALPHA:
399 break;
400
401 case GL_SRC_ALPHA_SATURATE:
402 if (context->getClientVersion() < 3)
403 {
404 context->recordError(gl::Error(GL_INVALID_ENUM));
405 return;
406 }
407 break;
408
409 default:
410 context->recordError(gl::Error(GL_INVALID_ENUM));
411 return;
412 }
413
414 switch (srcAlpha)
415 {
416 case GL_ZERO:
417 case GL_ONE:
418 case GL_SRC_COLOR:
419 case GL_ONE_MINUS_SRC_COLOR:
420 case GL_DST_COLOR:
421 case GL_ONE_MINUS_DST_COLOR:
422 case GL_SRC_ALPHA:
423 case GL_ONE_MINUS_SRC_ALPHA:
424 case GL_DST_ALPHA:
425 case GL_ONE_MINUS_DST_ALPHA:
426 case GL_CONSTANT_COLOR:
427 case GL_ONE_MINUS_CONSTANT_COLOR:
428 case GL_CONSTANT_ALPHA:
429 case GL_ONE_MINUS_CONSTANT_ALPHA:
430 case GL_SRC_ALPHA_SATURATE:
431 break;
432
433 default:
434 context->recordError(gl::Error(GL_INVALID_ENUM));
435 return;
436 }
437
438 switch (dstAlpha)
439 {
440 case GL_ZERO:
441 case GL_ONE:
442 case GL_SRC_COLOR:
443 case GL_ONE_MINUS_SRC_COLOR:
444 case GL_DST_COLOR:
445 case GL_ONE_MINUS_DST_COLOR:
446 case GL_SRC_ALPHA:
447 case GL_ONE_MINUS_SRC_ALPHA:
448 case GL_DST_ALPHA:
449 case GL_ONE_MINUS_DST_ALPHA:
450 case GL_CONSTANT_COLOR:
451 case GL_ONE_MINUS_CONSTANT_COLOR:
452 case GL_CONSTANT_ALPHA:
453 case GL_ONE_MINUS_CONSTANT_ALPHA:
454 break;
455
456 case GL_SRC_ALPHA_SATURATE:
457 if (context->getClientVersion() < 3)
458 {
459 context->recordError(gl::Error(GL_INVALID_ENUM));
460 return;
461 }
462 break;
463
464 default:
465 context->recordError(gl::Error(GL_INVALID_ENUM));
466 return;
467 }
468
469 bool constantColorUsed = (srcRGB == GL_CONSTANT_COLOR || srcRGB == GL_ONE_MINUS_CONSTANT_COLOR ||
470 dstRGB == GL_CONSTANT_COLOR || dstRGB == GL_ONE_MINUS_CONSTANT_COLOR);
471
472 bool constantAlphaUsed = (srcRGB == GL_CONSTANT_ALPHA || srcRGB == GL_ONE_MINUS_CONSTANT_ALPHA ||
473 dstRGB == GL_CONSTANT_ALPHA || dstRGB == GL_ONE_MINUS_CONSTANT_ALPHA);
474
475 if (constantColorUsed && constantAlphaUsed)
476 {
477 ERR("Simultaneous use of GL_CONSTANT_ALPHA/GL_ONE_MINUS_CONSTANT_ALPHA and GL_CONSTANT_COLOR/GL_ONE_MINUS_CONSTANT_COLOR invalid under WebGL");
478 context->recordError(gl::Error(GL_INVALID_OPERATION));
479 return;
480 }
481
Geoff Langbfdea662014-07-23 14:16:32 -0400482 context->getState().setBlendFactors(srcRGB, dstRGB, srcAlpha, dstAlpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000483 }
484}
485
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000486void __stdcall glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000487{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000488 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 +0000489 target, size, data, usage);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000490
Geoff Langbfdea662014-07-23 14:16:32 -0400491 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400492 if (context)
493 {
Geoff Langb1196682014-07-23 13:47:29 -0400494 if (size < 0)
495 {
496 context->recordError(gl::Error(GL_INVALID_VALUE));
497 return;
498 }
499
500 switch (usage)
501 {
502 case GL_STREAM_DRAW:
503 case GL_STATIC_DRAW:
504 case GL_DYNAMIC_DRAW:
505 break;
506
507 case GL_STREAM_READ:
508 case GL_STREAM_COPY:
509 case GL_STATIC_READ:
510 case GL_STATIC_COPY:
511 case GL_DYNAMIC_READ:
512 case GL_DYNAMIC_COPY:
513 if (context->getClientVersion() < 3)
514 {
515 context->recordError(gl::Error(GL_INVALID_ENUM));
516 return;
517 }
518 break;
519
520 default:
521 context->recordError(gl::Error(GL_INVALID_ENUM));
522 return;
523 }
524
Geoff Langbfdea662014-07-23 14:16:32 -0400525 if (!gl::ValidBufferTarget(context, target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000526 {
Geoff Langb1196682014-07-23 13:47:29 -0400527 context->recordError(gl::Error(GL_INVALID_ENUM));
528 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000529 }
530
Geoff Langbfdea662014-07-23 14:16:32 -0400531 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
532
533 if (!buffer)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000534 {
Geoff Langb1196682014-07-23 13:47:29 -0400535 context->recordError(gl::Error(GL_INVALID_OPERATION));
536 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000537 }
Geoff Langbfdea662014-07-23 14:16:32 -0400538
Geoff Lang2a1c15a2014-07-25 11:43:00 -0400539 gl::Error error = buffer->bufferData(data, size, usage);
540 if (error.isError())
541 {
542 context->recordError(error);
543 return;
544 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000545 }
546}
547
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000548void __stdcall glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000549{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000550 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 +0000551 target, offset, size, data);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000552
Geoff Langbfdea662014-07-23 14:16:32 -0400553 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400554 if (context)
555 {
Geoff Langb1196682014-07-23 13:47:29 -0400556 if (size < 0 || offset < 0)
557 {
558 context->recordError(gl::Error(GL_INVALID_VALUE));
559 return;
560 }
561
562 if (data == NULL)
563 {
564 return;
565 }
566
Geoff Langbfdea662014-07-23 14:16:32 -0400567 if (!gl::ValidBufferTarget(context, target))
568 {
Geoff Langb1196682014-07-23 13:47:29 -0400569 context->recordError(gl::Error(GL_INVALID_ENUM));
570 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400571 }
572
573 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
574
575 if (!buffer)
576 {
Geoff Langb1196682014-07-23 13:47:29 -0400577 context->recordError(gl::Error(GL_INVALID_OPERATION));
578 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400579 }
580
581 if (buffer->isMapped())
582 {
Geoff Langb1196682014-07-23 13:47:29 -0400583 context->recordError(gl::Error(GL_INVALID_OPERATION));
584 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400585 }
586
587 // Check for possible overflow of size + offset
588 if (!rx::IsUnsignedAdditionSafe<size_t>(size, offset))
589 {
Geoff Langb1196682014-07-23 13:47:29 -0400590 context->recordError(gl::Error(GL_OUT_OF_MEMORY));
591 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400592 }
593
594 if (size + offset > buffer->getSize())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000595 {
Geoff Langb1196682014-07-23 13:47:29 -0400596 context->recordError(gl::Error(GL_INVALID_VALUE));
597 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000598 }
599
Geoff Lang2a1c15a2014-07-25 11:43:00 -0400600 gl::Error error = buffer->bufferSubData(data, size, offset);
601 if (error.isError())
602 {
603 context->recordError(error);
604 return;
605 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000606 }
607}
608
609GLenum __stdcall glCheckFramebufferStatus(GLenum target)
610{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000611 EVENT("(GLenum target = 0x%X)", target);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000612
Geoff Langbfdea662014-07-23 14:16:32 -0400613 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400614 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000615 {
Geoff Langb1196682014-07-23 13:47:29 -0400616 if (!gl::ValidFramebufferTarget(target))
617 {
618 context->recordError(gl::Error(GL_INVALID_ENUM));
619 return 0;
620 }
621
Geoff Langbfdea662014-07-23 14:16:32 -0400622 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
623 ASSERT(framebuffer);
624 return framebuffer->completeness();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000625 }
626
627 return 0;
628}
629
630void __stdcall glClear(GLbitfield mask)
631{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +0000632 EVENT("(GLbitfield mask = 0x%X)", mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000633
Geoff Langbfdea662014-07-23 14:16:32 -0400634 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400635 if (context)
636 {
637 gl::Framebuffer *framebufferObject = context->getState().getDrawFramebuffer();
638
639 if (!framebufferObject || framebufferObject->completeness() != GL_FRAMEBUFFER_COMPLETE)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000640 {
Geoff Langb1196682014-07-23 13:47:29 -0400641 context->recordError(gl::Error(GL_INVALID_FRAMEBUFFER_OPERATION));
642 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000643 }
Geoff Langbfdea662014-07-23 14:16:32 -0400644
645 if ((mask & ~(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT)) != 0)
646 {
Geoff Langb1196682014-07-23 13:47:29 -0400647 context->recordError(gl::Error(GL_INVALID_VALUE));
648 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400649 }
650
Geoff Langcc79b8c2014-07-25 13:48:02 -0400651 gl::Error error = context->clear(mask);
652 if (error.isError())
653 {
654 context->recordError(error);
655 return;
656 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000657 }
658}
659
660void __stdcall glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
661{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000662 EVENT("(GLclampf red = %f, GLclampf green = %f, GLclampf blue = %f, GLclampf alpha = %f)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000663 red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000664
Geoff Langbfdea662014-07-23 14:16:32 -0400665 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400666 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000667 {
Geoff Langbfdea662014-07-23 14:16:32 -0400668 context->getState().setClearColor(red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000669 }
670}
671
672void __stdcall glClearDepthf(GLclampf depth)
673{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000674 EVENT("(GLclampf depth = %f)", depth);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000675
Geoff Langbfdea662014-07-23 14:16:32 -0400676 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400677 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000678 {
Geoff Langbfdea662014-07-23 14:16:32 -0400679 context->getState().setClearDepth(depth);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000680 }
681}
682
683void __stdcall glClearStencil(GLint s)
684{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000685 EVENT("(GLint s = %d)", s);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000686
Geoff Langbfdea662014-07-23 14:16:32 -0400687 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400688 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000689 {
Geoff Langbfdea662014-07-23 14:16:32 -0400690 context->getState().setClearStencil(s);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000691 }
692}
693
694void __stdcall glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
695{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +0000696 EVENT("(GLboolean red = %d, GLboolean green = %u, GLboolean blue = %u, GLboolean alpha = %u)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000697 red, green, blue, alpha);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000698
Geoff Langbfdea662014-07-23 14:16:32 -0400699 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400700 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000701 {
Geoff Langbfdea662014-07-23 14:16:32 -0400702 context->getState().setColorMask(red == GL_TRUE, green == GL_TRUE, blue == GL_TRUE, alpha == GL_TRUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000703 }
704}
705
706void __stdcall glCompileShader(GLuint shader)
707{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000708 EVENT("(GLuint shader = %d)", shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000709
Geoff Langbfdea662014-07-23 14:16:32 -0400710 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400711 if (context)
712 {
713 gl::Shader *shaderObject = context->getShader(shader);
714
715 if (!shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000716 {
Geoff Langbfdea662014-07-23 14:16:32 -0400717 if (context->getProgram(shader))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000718 {
Geoff Langb1196682014-07-23 13:47:29 -0400719 context->recordError(gl::Error(GL_INVALID_OPERATION));
720 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000721 }
Geoff Langbfdea662014-07-23 14:16:32 -0400722 else
daniel@transgaming.com5d752f22010-10-07 13:37:20 +0000723 {
Geoff Langb1196682014-07-23 13:47:29 -0400724 context->recordError(gl::Error(GL_INVALID_VALUE));
725 return;
daniel@transgaming.com5d752f22010-10-07 13:37:20 +0000726 }
daniel@transgaming.com01868132010-08-24 19:21:17 +0000727 }
Geoff Langbfdea662014-07-23 14:16:32 -0400728
729 shaderObject->compile();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000730 }
Geoff Langbfdea662014-07-23 14:16:32 -0400731}
732
733void __stdcall glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height,
734 GLint border, GLsizei imageSize, const GLvoid* data)
735{
736 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, GLsizei width = %d, "
737 "GLsizei height = %d, GLint border = %d, GLsizei imageSize = %d, const GLvoid* data = 0x%0.8p)",
738 target, level, internalformat, width, height, border, imageSize, data);
739
740 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400741 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000742 {
Geoff Langbfdea662014-07-23 14:16:32 -0400743 if (context->getClientVersion() < 3 &&
744 !ValidateES2TexImageParameters(context, target, level, internalformat, true, false,
745 0, 0, width, height, border, GL_NONE, GL_NONE, data))
746 {
747 return;
748 }
749
750 if (context->getClientVersion() >= 3 &&
751 !ValidateES3TexImageParameters(context, target, level, internalformat, true, false,
752 0, 0, 0, width, height, 1, border, GL_NONE, GL_NONE, data))
753 {
754 return;
755 }
756
Geoff Lang5d601382014-07-22 15:14:06 -0400757 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(internalformat);
758 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -0400759 {
Geoff Langb1196682014-07-23 13:47:29 -0400760 context->recordError(gl::Error(GL_INVALID_VALUE));
761 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400762 }
763
764 switch (target)
765 {
766 case GL_TEXTURE_2D:
767 {
768 gl::Texture2D *texture = context->getTexture2D();
769 texture->setCompressedImage(level, internalformat, width, height, imageSize, data);
770 }
771 break;
772
773 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
774 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
775 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
776 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
777 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
778 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
779 {
780 gl::TextureCubeMap *texture = context->getTextureCubeMap();
781 texture->setCompressedImage(target, level, internalformat, width, height, imageSize, data);
782 }
783 break;
784
785 default:
Geoff Langb1196682014-07-23 13:47:29 -0400786 context->recordError(gl::Error(GL_INVALID_ENUM));
787 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400788 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000789 }
790}
791
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000792void __stdcall glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
793 GLenum format, GLsizei imageSize, const GLvoid* data)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000794{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000795 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000796 "GLsizei width = %d, GLsizei height = %d, GLenum format = 0x%X, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +0000797 "GLsizei imageSize = %d, const GLvoid* data = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000798 target, level, xoffset, yoffset, width, height, format, imageSize, data);
799
Geoff Langbfdea662014-07-23 14:16:32 -0400800 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400801 if (context)
802 {
803 if (context->getClientVersion() < 3 &&
804 !ValidateES2TexImageParameters(context, target, level, GL_NONE, true, true,
805 xoffset, yoffset, width, height, 0, GL_NONE, GL_NONE, data))
daniel@transgaming.com01868132010-08-24 19:21:17 +0000806 {
Geoff Langbfdea662014-07-23 14:16:32 -0400807 return;
daniel@transgaming.com01868132010-08-24 19:21:17 +0000808 }
Geoff Langbfdea662014-07-23 14:16:32 -0400809
810 if (context->getClientVersion() >= 3 &&
811 !ValidateES3TexImageParameters(context, target, level, GL_NONE, true, true,
812 xoffset, yoffset, 0, width, height, 1, 0, GL_NONE, GL_NONE, data))
813 {
814 return;
815 }
816
Geoff Lang5d601382014-07-22 15:14:06 -0400817 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(format);
818 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -0400819 {
Geoff Langb1196682014-07-23 13:47:29 -0400820 context->recordError(gl::Error(GL_INVALID_VALUE));
821 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400822 }
823
824 switch (target)
825 {
826 case GL_TEXTURE_2D:
827 {
828 gl::Texture2D *texture = context->getTexture2D();
829 texture->subImageCompressed(level, xoffset, yoffset, width, height, format, imageSize, data);
830 }
831 break;
832
833 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
834 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
835 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
836 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
837 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
838 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
839 {
840 gl::TextureCubeMap *texture = context->getTextureCubeMap();
841 texture->subImageCompressed(target, level, xoffset, yoffset, width, height, format, imageSize, data);
842 }
843 break;
844
845 default:
Geoff Langb1196682014-07-23 13:47:29 -0400846 context->recordError(gl::Error(GL_INVALID_ENUM));
847 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400848 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000849 }
850}
851
852void __stdcall glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
853{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000854 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000855 "GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d, GLint border = %d)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000856 target, level, internalformat, x, y, width, height, border);
857
Geoff Langbfdea662014-07-23 14:16:32 -0400858 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400859 if (context)
860 {
861 if (context->getClientVersion() < 3 &&
862 !ValidateES2CopyTexImageParameters(context, target, level, internalformat, false,
863 0, 0, x, y, width, height, border))
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000864 {
Geoff Langbfdea662014-07-23 14:16:32 -0400865 return;
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000866 }
Geoff Langbfdea662014-07-23 14:16:32 -0400867
868 if (context->getClientVersion() >= 3 &&
869 !ValidateES3CopyTexImageParameters(context, target, level, internalformat, false,
870 0, 0, 0, x, y, width, height, border))
871 {
872 return;
873 }
874
875 gl::Framebuffer *framebuffer = context->getState().getReadFramebuffer();
876
877 switch (target)
878 {
879 case GL_TEXTURE_2D:
880 {
881 gl::Texture2D *texture = context->getTexture2D();
882 texture->copyImage(level, internalformat, x, y, width, height, framebuffer);
883 }
884 break;
885
886 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
887 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
888 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
889 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
890 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
891 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
892 {
893 gl::TextureCubeMap *texture = context->getTextureCubeMap();
894 texture->copyImage(target, level, internalformat, x, y, width, height, framebuffer);
895 }
896 break;
897
Geoff Langb1196682014-07-23 13:47:29 -0400898 default:
899 context->recordError(gl::Error(GL_INVALID_ENUM));
900 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400901 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000902 }
903}
904
905void __stdcall glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
906{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000907 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +0000908 "GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000909 target, level, xoffset, yoffset, x, y, width, height);
910
Geoff Langbfdea662014-07-23 14:16:32 -0400911 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400912 if (context)
913 {
914 if (context->getClientVersion() < 3 &&
915 !ValidateES2CopyTexImageParameters(context, target, level, GL_NONE, true,
916 xoffset, yoffset, x, y, width, height, 0))
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000917 {
Geoff Langbfdea662014-07-23 14:16:32 -0400918 return;
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000919 }
daniel@transgaming.comb8c28ed2010-04-13 03:26:32 +0000920
Geoff Langbfdea662014-07-23 14:16:32 -0400921 if (context->getClientVersion() >= 3 &&
922 !ValidateES3CopyTexImageParameters(context, target, level, GL_NONE, true,
923 xoffset, yoffset, 0, x, y, width, height, 0))
924 {
925 return;
926 }
927
928 gl::Framebuffer *framebuffer = context->getState().getReadFramebuffer();
929
930 switch (target)
931 {
932 case GL_TEXTURE_2D:
933 {
934 gl::Texture2D *texture = context->getTexture2D();
935 texture->copySubImage(target, level, xoffset, yoffset, 0, x, y, width, height, framebuffer);
936 }
937 break;
938
939 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
940 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
941 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
942 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
943 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
944 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
945 {
946 gl::TextureCubeMap *texture = context->getTextureCubeMap();
947 texture->copySubImage(target, level, xoffset, yoffset, 0, x, y, width, height, framebuffer);
948 }
949 break;
950
951 default:
Geoff Langb1196682014-07-23 13:47:29 -0400952 context->recordError(gl::Error(GL_INVALID_ENUM));
953 return;
Geoff Langbfdea662014-07-23 14:16:32 -0400954 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000955 }
956}
957
958GLuint __stdcall glCreateProgram(void)
959{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000960 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000961
Geoff Langbfdea662014-07-23 14:16:32 -0400962 gl::Context *context = gl::getNonLostContext();
963 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000964 {
Geoff Langbfdea662014-07-23 14:16:32 -0400965 return context->createProgram();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000966 }
967
968 return 0;
969}
970
971GLuint __stdcall glCreateShader(GLenum type)
972{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000973 EVENT("(GLenum type = 0x%X)", type);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000974
Geoff Langbfdea662014-07-23 14:16:32 -0400975 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -0400976 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000977 {
Geoff Langbfdea662014-07-23 14:16:32 -0400978 switch (type)
979 {
980 case GL_FRAGMENT_SHADER:
981 case GL_VERTEX_SHADER:
982 return context->createShader(type);
Geoff Langb1196682014-07-23 13:47:29 -0400983
Geoff Langbfdea662014-07-23 14:16:32 -0400984 default:
Geoff Langb1196682014-07-23 13:47:29 -0400985 context->recordError(gl::Error(GL_INVALID_ENUM));
986 return 0;
Geoff Langbfdea662014-07-23 14:16:32 -0400987 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000988 }
989
990 return 0;
991}
992
993void __stdcall glCullFace(GLenum mode)
994{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +0000995 EVENT("(GLenum mode = 0x%X)", mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000996
Geoff Langb1196682014-07-23 13:47:29 -0400997 gl::Context *context = gl::getNonLostContext();
998 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +0000999 {
Geoff Langb1196682014-07-23 13:47:29 -04001000 switch (mode)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001001 {
Geoff Langb1196682014-07-23 13:47:29 -04001002 case GL_FRONT:
1003 case GL_BACK:
1004 case GL_FRONT_AND_BACK:
1005 break;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001006
Geoff Langb1196682014-07-23 13:47:29 -04001007 default:
1008 context->recordError(gl::Error(GL_INVALID_ENUM));
1009 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001010 }
Geoff Langb1196682014-07-23 13:47:29 -04001011
1012 context->getState().setCullMode(mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001013 }
1014}
1015
1016void __stdcall glDeleteBuffers(GLsizei n, const GLuint* buffers)
1017{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001018 EVENT("(GLsizei n = %d, const GLuint* buffers = 0x%0.8p)", n, buffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001019
Geoff Langbfdea662014-07-23 14:16:32 -04001020 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001021 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001022 {
Geoff Langb1196682014-07-23 13:47:29 -04001023 if (n < 0)
1024 {
1025 context->recordError(gl::Error(GL_INVALID_VALUE));
1026 return;
1027 }
1028
Geoff Langbfdea662014-07-23 14:16:32 -04001029 for (int i = 0; i < n; i++)
1030 {
1031 context->deleteBuffer(buffers[i]);
1032 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001033 }
1034}
1035
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001036void __stdcall glDeleteFencesNV(GLsizei n, const GLuint* fences)
1037{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001038 EVENT("(GLsizei n = %d, const GLuint* fences = 0x%0.8p)", n, fences);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001039
Geoff Langbfdea662014-07-23 14:16:32 -04001040 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001041 if (context)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001042 {
Geoff Langb1196682014-07-23 13:47:29 -04001043 if (n < 0)
1044 {
1045 context->recordError(gl::Error(GL_INVALID_VALUE));
1046 return;
1047 }
1048
Geoff Langbfdea662014-07-23 14:16:32 -04001049 for (int i = 0; i < n; i++)
1050 {
1051 context->deleteFenceNV(fences[i]);
1052 }
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001053 }
1054}
1055
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001056void __stdcall glDeleteFramebuffers(GLsizei n, const GLuint* framebuffers)
1057{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001058 EVENT("(GLsizei n = %d, const GLuint* framebuffers = 0x%0.8p)", n, framebuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001059
Geoff Langbfdea662014-07-23 14:16:32 -04001060 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001061 if (context)
1062 {
Geoff Langb1196682014-07-23 13:47:29 -04001063 if (n < 0)
1064 {
1065 context->recordError(gl::Error(GL_INVALID_VALUE));
1066 return;
1067 }
1068
Geoff Langbfdea662014-07-23 14:16:32 -04001069 for (int i = 0; i < n; i++)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001070 {
Geoff Langbfdea662014-07-23 14:16:32 -04001071 if (framebuffers[i] != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001072 {
Geoff Langbfdea662014-07-23 14:16:32 -04001073 context->deleteFramebuffer(framebuffers[i]);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001074 }
1075 }
1076 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001077}
1078
1079void __stdcall glDeleteProgram(GLuint program)
1080{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001081 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001082
Geoff Langbfdea662014-07-23 14:16:32 -04001083 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001084 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001085 {
Geoff Langb1196682014-07-23 13:47:29 -04001086 if (program == 0)
1087 {
1088 return;
1089 }
1090
Geoff Langbfdea662014-07-23 14:16:32 -04001091 if (!context->getProgram(program))
1092 {
1093 if(context->getShader(program))
1094 {
Geoff Langb1196682014-07-23 13:47:29 -04001095 context->recordError(gl::Error(GL_INVALID_OPERATION));
1096 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001097 }
1098 else
1099 {
Geoff Langb1196682014-07-23 13:47:29 -04001100 context->recordError(gl::Error(GL_INVALID_VALUE));
1101 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001102 }
1103 }
1104
1105 context->deleteProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001106 }
1107}
1108
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001109void __stdcall glDeleteQueriesEXT(GLsizei n, const GLuint *ids)
1110{
1111 EVENT("(GLsizei n = %d, const GLuint *ids = 0x%0.8p)", n, ids);
1112
Geoff Langbfdea662014-07-23 14:16:32 -04001113 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001114 if (context)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001115 {
Geoff Langb1196682014-07-23 13:47:29 -04001116 if (n < 0)
1117 {
1118 context->recordError(gl::Error(GL_INVALID_VALUE));
1119 return;
1120 }
1121
Geoff Langbfdea662014-07-23 14:16:32 -04001122 for (int i = 0; i < n; i++)
1123 {
1124 context->deleteQuery(ids[i]);
1125 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001126 }
1127}
1128
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001129void __stdcall glDeleteRenderbuffers(GLsizei n, const GLuint* renderbuffers)
1130{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001131 EVENT("(GLsizei n = %d, const GLuint* renderbuffers = 0x%0.8p)", n, renderbuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001132
Geoff Langbfdea662014-07-23 14:16:32 -04001133 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001134 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001135 {
Geoff Langb1196682014-07-23 13:47:29 -04001136 if (n < 0)
1137 {
1138 context->recordError(gl::Error(GL_INVALID_VALUE));
1139 return;
1140 }
1141
Geoff Langbfdea662014-07-23 14:16:32 -04001142 for (int i = 0; i < n; i++)
1143 {
1144 context->deleteRenderbuffer(renderbuffers[i]);
1145 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001146 }
1147}
1148
1149void __stdcall glDeleteShader(GLuint shader)
1150{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001151 EVENT("(GLuint shader = %d)", shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001152
Geoff Langbfdea662014-07-23 14:16:32 -04001153 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001154 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001155 {
Geoff Langb1196682014-07-23 13:47:29 -04001156 if (shader == 0)
1157 {
1158 return;
1159 }
1160
Geoff Langbfdea662014-07-23 14:16:32 -04001161 if (!context->getShader(shader))
1162 {
1163 if(context->getProgram(shader))
1164 {
Geoff Langb1196682014-07-23 13:47:29 -04001165 context->recordError(gl::Error(GL_INVALID_OPERATION));
1166 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001167 }
1168 else
1169 {
Geoff Langb1196682014-07-23 13:47:29 -04001170 context->recordError(gl::Error(GL_INVALID_VALUE));
1171 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001172 }
1173 }
1174
1175 context->deleteShader(shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001176 }
1177}
1178
1179void __stdcall glDeleteTextures(GLsizei n, const GLuint* textures)
1180{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001181 EVENT("(GLsizei n = %d, const GLuint* textures = 0x%0.8p)", n, textures);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001182
Geoff Langbfdea662014-07-23 14:16:32 -04001183 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001184 if (context)
1185 {
Geoff Langb1196682014-07-23 13:47:29 -04001186 if (n < 0)
1187 {
1188 context->recordError(gl::Error(GL_INVALID_VALUE));
1189 return;
1190 }
1191
Geoff Langbfdea662014-07-23 14:16:32 -04001192 for (int i = 0; i < n; i++)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001193 {
Geoff Langbfdea662014-07-23 14:16:32 -04001194 if (textures[i] != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001195 {
Geoff Langbfdea662014-07-23 14:16:32 -04001196 context->deleteTexture(textures[i]);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001197 }
1198 }
1199 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001200}
1201
1202void __stdcall glDepthFunc(GLenum func)
1203{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001204 EVENT("(GLenum func = 0x%X)", func);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001205
Geoff Langbfdea662014-07-23 14:16:32 -04001206 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001207 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001208 {
Geoff Langb1196682014-07-23 13:47:29 -04001209 switch (func)
1210 {
1211 case GL_NEVER:
1212 case GL_ALWAYS:
1213 case GL_LESS:
1214 case GL_LEQUAL:
1215 case GL_EQUAL:
1216 case GL_GREATER:
1217 case GL_GEQUAL:
1218 case GL_NOTEQUAL:
1219 context->getState().setDepthFunc(func);
1220 break;
1221
1222 default:
1223 context->recordError(gl::Error(GL_INVALID_ENUM));
1224 return;
1225 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001226 }
1227}
1228
1229void __stdcall glDepthMask(GLboolean flag)
1230{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00001231 EVENT("(GLboolean flag = %u)", flag);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001232
Geoff Langbfdea662014-07-23 14:16:32 -04001233 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001234 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001235 {
Geoff Langbfdea662014-07-23 14:16:32 -04001236 context->getState().setDepthMask(flag != GL_FALSE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001237 }
1238}
1239
1240void __stdcall glDepthRangef(GLclampf zNear, GLclampf zFar)
1241{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001242 EVENT("(GLclampf zNear = %f, GLclampf zFar = %f)", zNear, zFar);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001243
Geoff Langbfdea662014-07-23 14:16:32 -04001244 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001245 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001246 {
Geoff Langbfdea662014-07-23 14:16:32 -04001247 context->getState().setDepthRange(zNear, zFar);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001248 }
1249}
1250
1251void __stdcall glDetachShader(GLuint program, GLuint shader)
1252{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001253 EVENT("(GLuint program = %d, GLuint shader = %d)", program, shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001254
Geoff Langbfdea662014-07-23 14:16:32 -04001255 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001256 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001257 {
Geoff Langbfdea662014-07-23 14:16:32 -04001258 gl::Program *programObject = context->getProgram(program);
1259 gl::Shader *shaderObject = context->getShader(shader);
1260
1261 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001262 {
Geoff Langbfdea662014-07-23 14:16:32 -04001263 gl::Shader *shaderByProgramHandle;
1264 shaderByProgramHandle = context->getShader(program);
1265 if (!shaderByProgramHandle)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001266 {
Geoff Langb1196682014-07-23 13:47:29 -04001267 context->recordError(gl::Error(GL_INVALID_VALUE));
1268 return;
daniel@transgaming.com73c2c2e2010-04-13 03:26:11 +00001269 }
Geoff Langbfdea662014-07-23 14:16:32 -04001270 else
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001271 {
Geoff Langb1196682014-07-23 13:47:29 -04001272 context->recordError(gl::Error(GL_INVALID_OPERATION));
1273 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001274 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001275 }
Geoff Langbfdea662014-07-23 14:16:32 -04001276
1277 if (!shaderObject)
1278 {
1279 gl::Program *programByShaderHandle = context->getProgram(shader);
1280 if (!programByShaderHandle)
1281 {
Geoff Langb1196682014-07-23 13:47:29 -04001282 context->recordError(gl::Error(GL_INVALID_VALUE));
1283 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001284 }
1285 else
1286 {
Geoff Langb1196682014-07-23 13:47:29 -04001287 context->recordError(gl::Error(GL_INVALID_OPERATION));
1288 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001289 }
1290 }
1291
1292 if (!programObject->detachShader(shaderObject))
1293 {
Geoff Langb1196682014-07-23 13:47:29 -04001294 context->recordError(gl::Error(GL_INVALID_OPERATION));
1295 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001296 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001297 }
1298}
1299
1300void __stdcall glDisable(GLenum cap)
1301{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001302 EVENT("(GLenum cap = 0x%X)", cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001303
Geoff Langbfdea662014-07-23 14:16:32 -04001304 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001305 if (context)
1306 {
1307 if (!ValidCap(context, cap))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001308 {
Geoff Langb1196682014-07-23 13:47:29 -04001309 context->recordError(gl::Error(GL_INVALID_ENUM));
1310 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001311 }
Geoff Langbfdea662014-07-23 14:16:32 -04001312
1313 context->getState().setEnableFeature(cap, false);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001314 }
1315}
1316
1317void __stdcall glDisableVertexAttribArray(GLuint index)
1318{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001319 EVENT("(GLuint index = %d)", index);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001320
Geoff Langbfdea662014-07-23 14:16:32 -04001321 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001322 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001323 {
Geoff Langb1196682014-07-23 13:47:29 -04001324 if (index >= gl::MAX_VERTEX_ATTRIBS)
1325 {
1326 context->recordError(gl::Error(GL_INVALID_VALUE));
1327 return;
1328 }
1329
Geoff Langbfdea662014-07-23 14:16:32 -04001330 context->getState().setEnableVertexAttribArray(index, false);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001331 }
1332}
1333
1334void __stdcall glDrawArrays(GLenum mode, GLint first, GLsizei count)
1335{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001336 EVENT("(GLenum mode = 0x%X, GLint first = %d, GLsizei count = %d)", mode, first, count);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001337
Geoff Langbfdea662014-07-23 14:16:32 -04001338 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001339 if (context)
1340 {
Jamie Madill2b976812014-08-25 15:47:49 -04001341 if (!ValidateDrawArrays(context, mode, first, count, 0))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001342 {
Geoff Langbfdea662014-07-23 14:16:32 -04001343 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001344 }
Geoff Langbfdea662014-07-23 14:16:32 -04001345
Geoff Langc77e8c32014-09-08 16:28:24 -04001346 gl::Error error = context->drawArrays(mode, first, count, 0);
1347 if (error.isError())
1348 {
1349 context->recordError(error);
1350 return;
1351 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001352 }
1353}
1354
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001355void __stdcall glDrawArraysInstancedANGLE(GLenum mode, GLint first, GLsizei count, GLsizei primcount)
1356{
1357 EVENT("(GLenum mode = 0x%X, GLint first = %d, GLsizei count = %d, GLsizei primcount = %d)", mode, first, count, primcount);
1358
Geoff Langbfdea662014-07-23 14:16:32 -04001359 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001360 if (context)
1361 {
Geoff Lang87a93302014-09-16 13:29:43 -04001362 if (!ValidateDrawArraysInstancedANGLE(context, mode, first, count, primcount))
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001363 {
Geoff Langbfdea662014-07-23 14:16:32 -04001364 return;
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001365 }
Geoff Langbfdea662014-07-23 14:16:32 -04001366
Geoff Langc77e8c32014-09-08 16:28:24 -04001367 gl::Error error = context->drawArrays(mode, first, count, primcount);
1368 if (error.isError())
1369 {
1370 context->recordError(error);
1371 return;
1372 }
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001373 }
1374}
1375
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00001376void __stdcall glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001377{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001378 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 +00001379 mode, count, type, indices);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001380
Geoff Langbfdea662014-07-23 14:16:32 -04001381 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001382 if (context)
1383 {
Jamie Madill2b976812014-08-25 15:47:49 -04001384 rx::RangeUI indexRange;
1385 if (!ValidateDrawElements(context, mode, count, type, indices, 0, &indexRange))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001386 {
Geoff Langbfdea662014-07-23 14:16:32 -04001387 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001388 }
Geoff Langbfdea662014-07-23 14:16:32 -04001389
Geoff Langc77e8c32014-09-08 16:28:24 -04001390 gl::Error error = context->drawElements(mode, count, type, indices, 0, indexRange);
1391 if (error.isError())
1392 {
1393 context->recordError(error);
1394 return;
1395 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001396 }
1397}
1398
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001399void __stdcall glDrawElementsInstancedANGLE(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount)
1400{
1401 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p, GLsizei primcount = %d)",
1402 mode, count, type, indices, primcount);
1403
Geoff Langbfdea662014-07-23 14:16:32 -04001404 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001405 if (context)
1406 {
Jamie Madill2b976812014-08-25 15:47:49 -04001407 rx::RangeUI indexRange;
Geoff Lang87a93302014-09-16 13:29:43 -04001408 if (!ValidateDrawElementsInstancedANGLE(context, mode, count, type, indices, primcount, &indexRange))
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001409 {
Geoff Langbfdea662014-07-23 14:16:32 -04001410 return;
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001411 }
Geoff Langbfdea662014-07-23 14:16:32 -04001412
Geoff Langc77e8c32014-09-08 16:28:24 -04001413 gl::Error error = context->drawElements(mode, count, type, indices, primcount, indexRange);
1414 if (error.isError())
1415 {
1416 context->recordError(error);
1417 return;
1418 }
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00001419 }
1420}
1421
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001422void __stdcall glEnable(GLenum cap)
1423{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001424 EVENT("(GLenum cap = 0x%X)", cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001425
Geoff Langbfdea662014-07-23 14:16:32 -04001426 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001427 if (context)
1428 {
1429 if (!ValidCap(context, cap))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001430 {
Geoff Langb1196682014-07-23 13:47:29 -04001431 context->recordError(gl::Error(GL_INVALID_ENUM));
1432 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001433 }
Geoff Langbfdea662014-07-23 14:16:32 -04001434
1435 context->getState().setEnableFeature(cap, true);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001436 }
1437}
1438
1439void __stdcall glEnableVertexAttribArray(GLuint index)
1440{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001441 EVENT("(GLuint index = %d)", index);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001442
Geoff Langbfdea662014-07-23 14:16:32 -04001443 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001444 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001445 {
Geoff Langb1196682014-07-23 13:47:29 -04001446 if (index >= gl::MAX_VERTEX_ATTRIBS)
1447 {
1448 context->recordError(gl::Error(GL_INVALID_VALUE));
1449 return;
1450 }
1451
Geoff Langbfdea662014-07-23 14:16:32 -04001452 context->getState().setEnableVertexAttribArray(index, true);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001453 }
1454}
1455
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001456void __stdcall glEndQueryEXT(GLenum target)
1457{
1458 EVENT("GLenum target = 0x%X)", target);
1459
Geoff Langbfdea662014-07-23 14:16:32 -04001460 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001461 if (context)
1462 {
1463 if (!ValidateEndQuery(context, target))
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001464 {
Geoff Langbfdea662014-07-23 14:16:32 -04001465 return;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001466 }
Geoff Langbfdea662014-07-23 14:16:32 -04001467
Geoff Lang5aad9672014-09-08 11:10:42 -04001468 gl::Error error = context->endQuery(target);
1469 if (error.isError())
1470 {
1471 context->recordError(error);
1472 return;
1473 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001474 }
1475}
1476
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001477void __stdcall glFinishFenceNV(GLuint fence)
1478{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001479 EVENT("(GLuint fence = %d)", fence);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001480
Geoff Langbfdea662014-07-23 14:16:32 -04001481 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001482 if (context)
1483 {
1484 gl::FenceNV *fenceObject = context->getFenceNV(fence);
1485
1486 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001487 {
Geoff Langb1196682014-07-23 13:47:29 -04001488 context->recordError(gl::Error(GL_INVALID_OPERATION));
1489 return;
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001490 }
Geoff Langbfdea662014-07-23 14:16:32 -04001491
1492 if (fenceObject->isFence() != GL_TRUE)
1493 {
Geoff Langb1196682014-07-23 13:47:29 -04001494 context->recordError(gl::Error(GL_INVALID_OPERATION));
1495 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001496 }
1497
1498 fenceObject->finishFence();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001499 }
1500}
1501
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001502void __stdcall glFinish(void)
1503{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001504 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001505
Geoff Langbfdea662014-07-23 14:16:32 -04001506 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001507 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001508 {
Geoff Langbfdea662014-07-23 14:16:32 -04001509 context->sync(true);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001510 }
1511}
1512
1513void __stdcall glFlush(void)
1514{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001515 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001516
Geoff Langbfdea662014-07-23 14:16:32 -04001517 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001518 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001519 {
Geoff Langbfdea662014-07-23 14:16:32 -04001520 context->sync(false);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001521 }
1522}
1523
1524void __stdcall glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)
1525{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001526 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLenum renderbuffertarget = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00001527 "GLuint renderbuffer = %d)", target, attachment, renderbuffertarget, renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001528
Geoff Langbfdea662014-07-23 14:16:32 -04001529 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001530 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001531 {
Geoff Langb1196682014-07-23 13:47:29 -04001532 if (!gl::ValidFramebufferTarget(target) || (renderbuffertarget != GL_RENDERBUFFER && renderbuffer != 0))
1533 {
1534 context->recordError(gl::Error(GL_INVALID_ENUM));
1535 return;
1536 }
1537
Geoff Langbfdea662014-07-23 14:16:32 -04001538 if (!gl::ValidateFramebufferRenderbufferParameters(context, target, attachment, renderbuffertarget, renderbuffer))
1539 {
1540 return;
1541 }
1542
1543 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
1544 ASSERT(framebuffer);
1545
1546 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
1547 {
1548 unsigned int colorAttachment = (attachment - GL_COLOR_ATTACHMENT0_EXT);
1549 framebuffer->setColorbuffer(colorAttachment, GL_RENDERBUFFER, renderbuffer, 0, 0);
1550 }
1551 else
1552 {
1553 switch (attachment)
1554 {
1555 case GL_DEPTH_ATTACHMENT:
1556 framebuffer->setDepthbuffer(GL_RENDERBUFFER, renderbuffer, 0, 0);
1557 break;
1558 case GL_STENCIL_ATTACHMENT:
1559 framebuffer->setStencilbuffer(GL_RENDERBUFFER, renderbuffer, 0, 0);
1560 break;
1561 case GL_DEPTH_STENCIL_ATTACHMENT:
1562 framebuffer->setDepthStencilBuffer(GL_RENDERBUFFER, renderbuffer, 0, 0);
1563 break;
1564 default:
1565 UNREACHABLE();
1566 break;
1567 }
1568 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001569 }
1570}
1571
1572void __stdcall glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)
1573{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001574 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLenum textarget = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00001575 "GLuint texture = %d, GLint level = %d)", target, attachment, textarget, texture, level);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001576
Geoff Langbfdea662014-07-23 14:16:32 -04001577 gl::Context *context = gl::getNonLostContext();
1578 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001579 {
Geoff Langbfdea662014-07-23 14:16:32 -04001580 if (!ValidateFramebufferTexture2D(context, target, attachment, textarget, texture, level))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001581 {
Geoff Langbfdea662014-07-23 14:16:32 -04001582 return;
1583 }
shannon.woods%transgaming.com@gtempaccount.com89ae1132013-04-13 03:28:43 +00001584
Geoff Langbfdea662014-07-23 14:16:32 -04001585 if (texture == 0)
1586 {
1587 textarget = GL_NONE;
1588 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001589
Geoff Langbfdea662014-07-23 14:16:32 -04001590 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001591
Geoff Langbfdea662014-07-23 14:16:32 -04001592 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
1593 {
1594 const unsigned int colorAttachment = (attachment - GL_COLOR_ATTACHMENT0_EXT);
1595 framebuffer->setColorbuffer(colorAttachment, textarget, texture, level, 0);
1596 }
1597 else
1598 {
1599 switch (attachment)
daniel@transgaming.comfbc09532010-04-26 15:33:41 +00001600 {
Geoff Langbfdea662014-07-23 14:16:32 -04001601 case GL_DEPTH_ATTACHMENT: framebuffer->setDepthbuffer(textarget, texture, level, 0); break;
1602 case GL_STENCIL_ATTACHMENT: framebuffer->setStencilbuffer(textarget, texture, level, 0); break;
1603 case GL_DEPTH_STENCIL_ATTACHMENT: framebuffer->setDepthStencilBuffer(textarget, texture, level, 0); break;
daniel@transgaming.comfbc09532010-04-26 15:33:41 +00001604 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001605 }
1606 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001607}
1608
1609void __stdcall glFrontFace(GLenum mode)
1610{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001611 EVENT("(GLenum mode = 0x%X)", mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001612
Geoff Langb1196682014-07-23 13:47:29 -04001613 gl::Context *context = gl::getNonLostContext();
1614 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001615 {
Geoff Langb1196682014-07-23 13:47:29 -04001616 switch (mode)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001617 {
Geoff Langb1196682014-07-23 13:47:29 -04001618 case GL_CW:
1619 case GL_CCW:
1620 context->getState().setFrontFace(mode);
1621 break;
1622 default:
1623 context->recordError(gl::Error(GL_INVALID_ENUM));
1624 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001625 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001626 }
1627}
1628
1629void __stdcall glGenBuffers(GLsizei n, GLuint* buffers)
1630{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001631 EVENT("(GLsizei n = %d, GLuint* buffers = 0x%0.8p)", n, buffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001632
Geoff Langbfdea662014-07-23 14:16:32 -04001633 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001634 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001635 {
Geoff Langb1196682014-07-23 13:47:29 -04001636 if (n < 0)
1637 {
1638 context->recordError(gl::Error(GL_INVALID_VALUE));
1639 return;
1640 }
1641
Geoff Langbfdea662014-07-23 14:16:32 -04001642 for (int i = 0; i < n; i++)
1643 {
1644 buffers[i] = context->createBuffer();
1645 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001646 }
1647}
1648
1649void __stdcall glGenerateMipmap(GLenum target)
1650{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001651 EVENT("(GLenum target = 0x%X)", target);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001652
Geoff Langbfdea662014-07-23 14:16:32 -04001653 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001654 if (context)
1655 {
1656 if (!ValidTextureTarget(context, target))
daniel@transgaming.com8fd99e22010-04-20 18:52:00 +00001657 {
Geoff Langb1196682014-07-23 13:47:29 -04001658 context->recordError(gl::Error(GL_INVALID_ENUM));
1659 return;
daniel@transgaming.com8fd99e22010-04-20 18:52:00 +00001660 }
Geoff Langbfdea662014-07-23 14:16:32 -04001661
1662 gl::Texture *texture = context->getTargetTexture(target);
1663
1664 if (texture == NULL)
1665 {
Geoff Langb1196682014-07-23 13:47:29 -04001666 context->recordError(gl::Error(GL_INVALID_OPERATION));
1667 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001668 }
1669
1670 GLenum internalFormat = texture->getBaseLevelInternalFormat();
1671 const gl::TextureCaps &formatCaps = context->getTextureCaps().get(internalFormat);
Geoff Lang5d601382014-07-22 15:14:06 -04001672 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(internalFormat);
Geoff Langbfdea662014-07-23 14:16:32 -04001673
1674 // GenerateMipmap should not generate an INVALID_OPERATION for textures created with
1675 // unsized formats or that are color renderable and filterable. Since we do not track if
1676 // the texture was created with sized or unsized format (only sized formats are stored),
1677 // it is not possible to make sure the the LUMA formats can generate mipmaps (they should
1678 // be able to) because they aren't color renderable. Simply do a special case for LUMA
1679 // textures since they're the only texture format that can be created with unsized formats
1680 // that is not color renderable. New unsized formats are unlikely to be added, since ES2
1681 // was the last version to use add them.
1682 bool isLUMA = internalFormat == GL_LUMINANCE8_EXT ||
1683 internalFormat == GL_LUMINANCE8_ALPHA8_EXT ||
1684 internalFormat == GL_ALPHA8_EXT;
1685
Geoff Lang5d601382014-07-22 15:14:06 -04001686 if (formatInfo.depthBits > 0 || formatInfo.stencilBits > 0 || !formatCaps.filterable ||
1687 (!formatCaps.renderable && !isLUMA) || formatInfo.compressed)
Geoff Langbfdea662014-07-23 14:16:32 -04001688 {
Geoff Langb1196682014-07-23 13:47:29 -04001689 context->recordError(gl::Error(GL_INVALID_OPERATION));
1690 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001691 }
1692
1693 // GL_EXT_sRGB does not support mipmap generation on sRGB textures
Geoff Lang5d601382014-07-22 15:14:06 -04001694 if (context->getClientVersion() == 2 && formatInfo.colorEncoding == GL_SRGB)
Geoff Langbfdea662014-07-23 14:16:32 -04001695 {
Geoff Langb1196682014-07-23 13:47:29 -04001696 context->recordError(gl::Error(GL_INVALID_OPERATION));
1697 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001698 }
1699
1700 // Non-power of 2 ES2 check
1701 if (!context->getExtensions().textureNPOT && (!gl::isPow2(texture->getBaseLevelWidth()) || !gl::isPow2(texture->getBaseLevelHeight())))
1702 {
1703 ASSERT(context->getClientVersion() <= 2 && (target == GL_TEXTURE_2D || target == GL_TEXTURE_CUBE_MAP));
Geoff Langb1196682014-07-23 13:47:29 -04001704 context->recordError(gl::Error(GL_INVALID_OPERATION));
1705 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001706 }
1707
1708 // Cube completeness check
1709 if (target == GL_TEXTURE_CUBE_MAP)
1710 {
1711 gl::TextureCubeMap *textureCube = static_cast<gl::TextureCubeMap *>(texture);
1712 if (!textureCube->isCubeComplete())
1713 {
Geoff Langb1196682014-07-23 13:47:29 -04001714 context->recordError(gl::Error(GL_INVALID_OPERATION));
1715 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001716 }
1717 }
1718
1719 texture->generateMipmaps();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001720 }
1721}
1722
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001723void __stdcall glGenFencesNV(GLsizei n, GLuint* fences)
1724{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001725 EVENT("(GLsizei n = %d, GLuint* fences = 0x%0.8p)", n, fences);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001726
Geoff Langbfdea662014-07-23 14:16:32 -04001727 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001728 if (context)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001729 {
Geoff Langb1196682014-07-23 13:47:29 -04001730 if (n < 0)
1731 {
1732 context->recordError(gl::Error(GL_INVALID_VALUE));
1733 return;
1734 }
1735
Geoff Langbfdea662014-07-23 14:16:32 -04001736 for (int i = 0; i < n; i++)
1737 {
1738 fences[i] = context->createFenceNV();
1739 }
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00001740 }
1741}
1742
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001743void __stdcall glGenFramebuffers(GLsizei n, GLuint* framebuffers)
1744{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001745 EVENT("(GLsizei n = %d, GLuint* framebuffers = 0x%0.8p)", n, framebuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001746
Geoff Langbfdea662014-07-23 14:16:32 -04001747 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001748 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001749 {
Geoff Langb1196682014-07-23 13:47:29 -04001750 if (n < 0)
1751 {
1752 context->recordError(gl::Error(GL_INVALID_VALUE));
1753 return;
1754 }
1755
Geoff Langbfdea662014-07-23 14:16:32 -04001756 for (int i = 0; i < n; i++)
1757 {
1758 framebuffers[i] = context->createFramebuffer();
1759 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001760 }
1761}
1762
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001763void __stdcall glGenQueriesEXT(GLsizei n, GLuint* ids)
1764{
1765 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
1766
Geoff Langbfdea662014-07-23 14:16:32 -04001767 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001768 if (context)
1769 {
1770 if (n < 0)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001771 {
Geoff Langb1196682014-07-23 13:47:29 -04001772 context->recordError(gl::Error(GL_INVALID_VALUE));
1773 return;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001774 }
Geoff Langbfdea662014-07-23 14:16:32 -04001775
1776 for (GLsizei i = 0; i < n; i++)
1777 {
1778 ids[i] = context->createQuery();
1779 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00001780 }
1781}
1782
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001783void __stdcall glGenRenderbuffers(GLsizei n, GLuint* renderbuffers)
1784{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001785 EVENT("(GLsizei n = %d, GLuint* renderbuffers = 0x%0.8p)", n, renderbuffers);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001786
Geoff Langbfdea662014-07-23 14:16:32 -04001787 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001788 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001789 {
Geoff Langb1196682014-07-23 13:47:29 -04001790 if (n < 0)
1791 {
1792 context->recordError(gl::Error(GL_INVALID_VALUE));
1793 return;
1794 }
1795
Geoff Langbfdea662014-07-23 14:16:32 -04001796 for (int i = 0; i < n; i++)
1797 {
1798 renderbuffers[i] = context->createRenderbuffer();
1799 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001800 }
1801}
1802
1803void __stdcall glGenTextures(GLsizei n, GLuint* textures)
1804{
Jamie Madill1fc7e2c2014-01-21 16:47:10 -05001805 EVENT("(GLsizei n = %d, GLuint* textures = 0x%0.8p)", n, textures);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001806
Geoff Langbfdea662014-07-23 14:16:32 -04001807 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001808 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001809 {
Geoff Langb1196682014-07-23 13:47:29 -04001810 if (n < 0)
1811 {
1812 context->recordError(gl::Error(GL_INVALID_VALUE));
1813 return;
1814 }
1815
Geoff Langbfdea662014-07-23 14:16:32 -04001816 for (int i = 0; i < n; i++)
1817 {
1818 textures[i] = context->createTexture();
1819 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001820 }
1821}
1822
daniel@transgaming.com85423182010-04-22 13:35:27 +00001823void __stdcall glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, GLchar *name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001824{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001825 EVENT("(GLuint program = %d, GLuint index = %d, GLsizei bufsize = %d, GLsizei *length = 0x%0.8p, "
daniel@transgaming.com85423182010-04-22 13:35:27 +00001826 "GLint *size = 0x%0.8p, GLenum *type = %0.8p, GLchar *name = %0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001827 program, index, bufsize, length, size, type, name);
1828
Geoff Langbfdea662014-07-23 14:16:32 -04001829 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001830 if (context)
1831 {
Geoff Langb1196682014-07-23 13:47:29 -04001832 if (bufsize < 0)
1833 {
1834 context->recordError(gl::Error(GL_INVALID_VALUE));
1835 return;
1836 }
1837
Geoff Langbfdea662014-07-23 14:16:32 -04001838 gl::Program *programObject = context->getProgram(program);
1839
1840 if (!programObject)
1841 {
1842 if (context->getShader(program))
1843 {
Geoff Langb1196682014-07-23 13:47:29 -04001844 context->recordError(gl::Error(GL_INVALID_OPERATION));
1845 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001846 }
1847 else
1848 {
Geoff Langb1196682014-07-23 13:47:29 -04001849 context->recordError(gl::Error(GL_INVALID_VALUE));
1850 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001851 }
1852 }
1853
1854 if (index >= (GLuint)programObject->getActiveAttributeCount())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001855 {
Geoff Langb1196682014-07-23 13:47:29 -04001856 context->recordError(gl::Error(GL_INVALID_VALUE));
1857 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001858 }
1859
Geoff Langbfdea662014-07-23 14:16:32 -04001860 programObject->getActiveAttribute(index, bufsize, length, size, type, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001861 }
1862}
1863
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00001864void __stdcall glGetActiveUniform(GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001865{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001866 EVENT("(GLuint program = %d, GLuint index = %d, GLsizei bufsize = %d, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00001867 "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 +00001868 program, index, bufsize, length, size, type, name);
1869
Geoff Langbfdea662014-07-23 14:16:32 -04001870
1871 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001872 if (context)
1873 {
Geoff Langb1196682014-07-23 13:47:29 -04001874 if (bufsize < 0)
1875 {
1876 context->recordError(gl::Error(GL_INVALID_VALUE));
1877 return;
1878 }
1879
Geoff Langbfdea662014-07-23 14:16:32 -04001880 gl::Program *programObject = context->getProgram(program);
1881
1882 if (!programObject)
1883 {
1884 if (context->getShader(program))
1885 {
Geoff Langb1196682014-07-23 13:47:29 -04001886 context->recordError(gl::Error(GL_INVALID_OPERATION));
1887 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001888 }
1889 else
1890 {
Geoff Langb1196682014-07-23 13:47:29 -04001891 context->recordError(gl::Error(GL_INVALID_VALUE));
1892 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001893 }
1894 }
1895
1896 if (index >= (GLuint)programObject->getActiveUniformCount())
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001897 {
Geoff Langb1196682014-07-23 13:47:29 -04001898 context->recordError(gl::Error(GL_INVALID_VALUE));
1899 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001900 }
1901
Geoff Langbfdea662014-07-23 14:16:32 -04001902 programObject->getActiveUniform(index, bufsize, length, size, type, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001903 }
1904}
1905
1906void __stdcall glGetAttachedShaders(GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders)
1907{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001908 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 +00001909 program, maxcount, count, shaders);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001910
Geoff Langbfdea662014-07-23 14:16:32 -04001911 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001912 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001913 {
Geoff Langb1196682014-07-23 13:47:29 -04001914 if (maxcount < 0)
1915 {
1916 context->recordError(gl::Error(GL_INVALID_VALUE));
1917 return;
1918 }
1919
Geoff Langbfdea662014-07-23 14:16:32 -04001920 gl::Program *programObject = context->getProgram(program);
1921
1922 if (!programObject)
1923 {
1924 if (context->getShader(program))
1925 {
Geoff Langb1196682014-07-23 13:47:29 -04001926 context->recordError(gl::Error(GL_INVALID_OPERATION));
1927 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001928 }
1929 else
1930 {
Geoff Langb1196682014-07-23 13:47:29 -04001931 context->recordError(gl::Error(GL_INVALID_VALUE));
1932 return;
Geoff Langbfdea662014-07-23 14:16:32 -04001933 }
1934 }
1935
1936 return programObject->getAttachedShaders(maxcount, count, shaders);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001937 }
1938}
1939
Geoff Langb1196682014-07-23 13:47:29 -04001940GLint __stdcall glGetAttribLocation(GLuint program, const GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001941{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001942 EVENT("(GLuint program = %d, const GLchar* name = %s)", program, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001943
Geoff Langbfdea662014-07-23 14:16:32 -04001944 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001945 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001946 {
Geoff Langbfdea662014-07-23 14:16:32 -04001947 gl::Program *programObject = context->getProgram(program);
1948
1949 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001950 {
Geoff Langbfdea662014-07-23 14:16:32 -04001951 if (context->getShader(program))
daniel@transgaming.comcf4aa872010-04-13 03:26:27 +00001952 {
Geoff Langb1196682014-07-23 13:47:29 -04001953 context->recordError(gl::Error(GL_INVALID_OPERATION));
1954 return -1;
daniel@transgaming.comcf4aa872010-04-13 03:26:27 +00001955 }
Geoff Langbfdea662014-07-23 14:16:32 -04001956 else
1957 {
Geoff Langb1196682014-07-23 13:47:29 -04001958 context->recordError(gl::Error(GL_INVALID_VALUE));
1959 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04001960 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001961 }
Geoff Langbfdea662014-07-23 14:16:32 -04001962
1963 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
1964 if (!programObject->isLinked() || !programBinary)
1965 {
Geoff Langb1196682014-07-23 13:47:29 -04001966 context->recordError(gl::Error(GL_INVALID_OPERATION));
1967 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04001968 }
1969
1970 return programBinary->getAttributeLocation(name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001971 }
1972
1973 return -1;
1974}
1975
1976void __stdcall glGetBooleanv(GLenum pname, GLboolean* params)
1977{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00001978 EVENT("(GLenum pname = 0x%X, GLboolean* params = 0x%0.8p)", pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001979
Geoff Langbfdea662014-07-23 14:16:32 -04001980 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04001981 if (context)
1982 {
1983 GLenum nativeType;
1984 unsigned int numParams = 0;
1985 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001986 {
Geoff Langbfdea662014-07-23 14:16:32 -04001987 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001988 }
Geoff Langbfdea662014-07-23 14:16:32 -04001989
1990 if (nativeType == GL_BOOL)
1991 {
1992 context->getBooleanv(pname, params);
1993 }
1994 else
1995 {
1996 CastStateValues(context, nativeType, pname, numParams, params);
1997 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001998 }
1999}
2000
2001void __stdcall glGetBufferParameteriv(GLenum target, GLenum pname, GLint* params)
2002{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002003 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 +00002004
Geoff Langbfdea662014-07-23 14:16:32 -04002005 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002006 if (context)
2007 {
2008 if (!gl::ValidBufferTarget(context, target))
daniel@transgaming.comaa0ccbd2010-04-15 20:45:05 +00002009 {
Geoff Langb1196682014-07-23 13:47:29 -04002010 context->recordError(gl::Error(GL_INVALID_ENUM));
2011 return;
daniel@transgaming.comaa0ccbd2010-04-15 20:45:05 +00002012 }
Geoff Langbfdea662014-07-23 14:16:32 -04002013
2014 if (!gl::ValidBufferParameter(context, pname))
2015 {
Geoff Langb1196682014-07-23 13:47:29 -04002016 context->recordError(gl::Error(GL_INVALID_ENUM));
2017 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002018 }
2019
2020 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
2021
2022 if (!buffer)
2023 {
2024 // A null buffer means that "0" is bound to the requested buffer target
Geoff Langb1196682014-07-23 13:47:29 -04002025 context->recordError(gl::Error(GL_INVALID_OPERATION));
2026 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002027 }
2028
2029 switch (pname)
2030 {
2031 case GL_BUFFER_USAGE:
2032 *params = static_cast<GLint>(buffer->getUsage());
2033 break;
2034 case GL_BUFFER_SIZE:
2035 *params = gl::clampCast<GLint>(buffer->getSize());
2036 break;
2037 case GL_BUFFER_ACCESS_FLAGS:
2038 *params = buffer->getAccessFlags();
2039 break;
2040 case GL_BUFFER_MAPPED:
2041 *params = static_cast<GLint>(buffer->isMapped());
2042 break;
2043 case GL_BUFFER_MAP_OFFSET:
2044 *params = gl::clampCast<GLint>(buffer->getMapOffset());
2045 break;
2046 case GL_BUFFER_MAP_LENGTH:
2047 *params = gl::clampCast<GLint>(buffer->getMapLength());
2048 break;
2049 default: UNREACHABLE(); break;
2050 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002051 }
2052}
2053
2054GLenum __stdcall glGetError(void)
2055{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002056 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002057
2058 gl::Context *context = gl::getContext();
2059
2060 if (context)
2061 {
daniel@transgaming.com82b28912011-12-12 21:01:35 +00002062 return context->getError();
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002063 }
2064
2065 return GL_NO_ERROR;
2066}
2067
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002068void __stdcall glGetFenceivNV(GLuint fence, GLenum pname, GLint *params)
2069{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002070 EVENT("(GLuint fence = %d, GLenum pname = 0x%X, GLint *params = 0x%0.8p)", fence, pname, params);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002071
Geoff Langbfdea662014-07-23 14:16:32 -04002072 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002073 if (context)
2074 {
2075 gl::FenceNV *fenceObject = context->getFenceNV(fence);
2076
2077 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002078 {
Geoff Langb1196682014-07-23 13:47:29 -04002079 context->recordError(gl::Error(GL_INVALID_OPERATION));
2080 return;
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002081 }
Geoff Langbfdea662014-07-23 14:16:32 -04002082
2083 if (fenceObject->isFence() != GL_TRUE)
2084 {
Geoff Langb1196682014-07-23 13:47:29 -04002085 context->recordError(gl::Error(GL_INVALID_OPERATION));
2086 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002087 }
2088
2089 switch (pname)
2090 {
2091 case GL_FENCE_STATUS_NV:
2092 case GL_FENCE_CONDITION_NV:
2093 break;
2094
Geoff Langb1196682014-07-23 13:47:29 -04002095 default:
2096 context->recordError(gl::Error(GL_INVALID_ENUM));
2097 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002098 }
2099
2100 params[0] = fenceObject->getFencei(pname);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00002101 }
2102}
2103
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002104void __stdcall glGetFloatv(GLenum pname, GLfloat* params)
2105{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002106 EVENT("(GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002107
Geoff Langbfdea662014-07-23 14:16:32 -04002108 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002109 if (context)
2110 {
2111 GLenum nativeType;
2112 unsigned int numParams = 0;
2113 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
daniel@transgaming.com32e58cd2010-03-24 09:44:10 +00002114 {
Geoff Langbfdea662014-07-23 14:16:32 -04002115 return;
daniel@transgaming.com32e58cd2010-03-24 09:44:10 +00002116 }
Geoff Langbfdea662014-07-23 14:16:32 -04002117
2118 if (nativeType == GL_FLOAT)
2119 {
2120 context->getFloatv(pname, params);
2121 }
2122 else
2123 {
2124 CastStateValues(context, nativeType, pname, numParams, params);
2125 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002126 }
2127}
2128
2129void __stdcall glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint* params)
2130{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002131 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 +00002132 target, attachment, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002133
Geoff Langbfdea662014-07-23 14:16:32 -04002134 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002135 if (context)
2136 {
2137 if (!gl::ValidFramebufferTarget(target))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002138 {
Geoff Langb1196682014-07-23 13:47:29 -04002139 context->recordError(gl::Error(GL_INVALID_ENUM));
2140 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002141 }
2142
2143 int clientVersion = context->getClientVersion();
2144
2145 switch (pname)
2146 {
2147 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
2148 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:
2149 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:
2150 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:
2151 break;
Geoff Langb1196682014-07-23 13:47:29 -04002152
Geoff Langbfdea662014-07-23 14:16:32 -04002153 case GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:
2154 if (clientVersion < 3 && !context->getExtensions().sRGB)
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002155 {
Geoff Langb1196682014-07-23 13:47:29 -04002156 context->recordError(gl::Error(GL_INVALID_ENUM));
2157 return;
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002158 }
Geoff Langbfdea662014-07-23 14:16:32 -04002159 break;
Geoff Langb1196682014-07-23 13:47:29 -04002160
Geoff Langbfdea662014-07-23 14:16:32 -04002161 case GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE:
2162 case GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:
2163 case GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:
2164 case GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:
2165 case GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:
2166 case GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:
2167 case GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:
2168 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:
2169 if (clientVersion < 3)
2170 {
Geoff Langb1196682014-07-23 13:47:29 -04002171 context->recordError(gl::Error(GL_INVALID_ENUM));
2172 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002173 }
2174 break;
Geoff Langb1196682014-07-23 13:47:29 -04002175
Geoff Langbfdea662014-07-23 14:16:32 -04002176 default:
Geoff Langb1196682014-07-23 13:47:29 -04002177 context->recordError(gl::Error(GL_INVALID_ENUM));
2178 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002179 }
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002180
Geoff Langbfdea662014-07-23 14:16:32 -04002181 // Determine if the attachment is a valid enum
2182 switch (attachment)
2183 {
2184 case GL_BACK:
2185 case GL_FRONT:
2186 case GL_DEPTH:
2187 case GL_STENCIL:
2188 case GL_DEPTH_STENCIL_ATTACHMENT:
2189 if (clientVersion < 3)
2190 {
Geoff Langb1196682014-07-23 13:47:29 -04002191 context->recordError(gl::Error(GL_INVALID_ENUM));
2192 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002193 }
2194 break;
2195
2196 case GL_DEPTH_ATTACHMENT:
2197 case GL_STENCIL_ATTACHMENT:
2198 break;
2199
2200 default:
2201 if (attachment < GL_COLOR_ATTACHMENT0_EXT ||
2202 (attachment - GL_COLOR_ATTACHMENT0_EXT) >= context->getCaps().maxColorAttachments)
2203 {
Geoff Langb1196682014-07-23 13:47:29 -04002204 context->recordError(gl::Error(GL_INVALID_ENUM));
2205 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002206 }
2207 break;
2208 }
2209
2210 GLuint framebufferHandle = context->getState().getTargetFramebuffer(target)->id();
2211 gl::Framebuffer *framebuffer = context->getFramebuffer(framebufferHandle);
2212
2213 if (framebufferHandle == 0)
2214 {
2215 if (clientVersion < 3)
2216 {
Geoff Langb1196682014-07-23 13:47:29 -04002217 context->recordError(gl::Error(GL_INVALID_OPERATION));
2218 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002219 }
2220
2221 switch (attachment)
2222 {
2223 case GL_BACK:
2224 case GL_DEPTH:
2225 case GL_STENCIL:
2226 break;
Geoff Langb1196682014-07-23 13:47:29 -04002227
Geoff Langbfdea662014-07-23 14:16:32 -04002228 default:
Geoff Langb1196682014-07-23 13:47:29 -04002229 context->recordError(gl::Error(GL_INVALID_OPERATION));
2230 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002231 }
2232 }
2233 else
2234 {
2235 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
2236 {
2237 // Valid attachment query
2238 }
2239 else
2240 {
2241 switch (attachment)
2242 {
2243 case GL_DEPTH_ATTACHMENT:
2244 case GL_STENCIL_ATTACHMENT:
2245 break;
Geoff Langb1196682014-07-23 13:47:29 -04002246
Geoff Langbfdea662014-07-23 14:16:32 -04002247 case GL_DEPTH_STENCIL_ATTACHMENT:
2248 if (framebuffer->hasValidDepthStencil())
2249 {
Geoff Langb1196682014-07-23 13:47:29 -04002250 context->recordError(gl::Error(GL_INVALID_OPERATION));
2251 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002252 }
2253 break;
Geoff Langb1196682014-07-23 13:47:29 -04002254
Geoff Langbfdea662014-07-23 14:16:32 -04002255 default:
Geoff Langb1196682014-07-23 13:47:29 -04002256 context->recordError(gl::Error(GL_INVALID_OPERATION));
2257 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002258 }
2259 }
2260 }
2261
2262 GLenum attachmentType = GL_NONE;
2263 GLuint attachmentHandle = 0;
2264 GLuint attachmentLevel = 0;
2265 GLuint attachmentLayer = 0;
2266
2267 const gl::FramebufferAttachment *attachmentObject = framebuffer->getAttachment(attachment);
2268
2269 if (attachmentObject)
2270 {
2271 attachmentType = attachmentObject->type();
2272 attachmentHandle = attachmentObject->id();
2273 attachmentLevel = attachmentObject->mipLevel();
2274 attachmentLayer = attachmentObject->layer();
2275 }
2276
2277 GLenum attachmentObjectType; // Type category
2278 if (framebufferHandle == 0)
2279 {
2280 attachmentObjectType = GL_FRAMEBUFFER_DEFAULT;
2281 }
2282 else if (attachmentType == GL_NONE || attachmentType == GL_RENDERBUFFER)
2283 {
2284 attachmentObjectType = attachmentType;
2285 }
2286 else if (gl::ValidTexture2DDestinationTarget(context, attachmentType))
2287 {
2288 attachmentObjectType = GL_TEXTURE;
2289 }
2290 else
2291 {
2292 UNREACHABLE();
2293 return;
2294 }
2295
2296 if (attachmentObjectType == GL_NONE)
2297 {
2298 // ES 2.0.25 spec pg 127 states that if the value of FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE
2299 // is NONE, then querying any other pname will generate INVALID_ENUM.
2300
2301 // ES 3.0.2 spec pg 235 states that if the attachment type is none,
2302 // GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME will return zero and be an
2303 // INVALID_OPERATION for all other pnames
Jamie Madill1e3fa742014-06-16 10:34:00 -04002304
Geoff Lang646559f2013-08-15 11:08:15 -04002305 switch (pname)
daniel@transgaming.coma27ff1e2010-08-24 19:20:11 +00002306 {
Geoff Lang646559f2013-08-15 11:08:15 -04002307 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
Geoff Langbfdea662014-07-23 14:16:32 -04002308 *params = attachmentObjectType;
2309 break;
2310
Geoff Lang646559f2013-08-15 11:08:15 -04002311 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:
Geoff Lang05b05022014-06-11 15:31:45 -04002312 if (clientVersion < 3)
daniel@transgaming.coma27ff1e2010-08-24 19:20:11 +00002313 {
Geoff Langb1196682014-07-23 13:47:29 -04002314 context->recordError(gl::Error(GL_INVALID_ENUM));
2315 return;
daniel@transgaming.coma27ff1e2010-08-24 19:20:11 +00002316 }
Geoff Langbfdea662014-07-23 14:16:32 -04002317 *params = 0;
Geoff Lang646559f2013-08-15 11:08:15 -04002318 break;
2319
2320 default:
Jamie Madill1e3fa742014-06-16 10:34:00 -04002321 if (clientVersion < 3)
shannon.woods%transgaming.com@gtempaccount.com89ae1132013-04-13 03:28:43 +00002322 {
Geoff Langb1196682014-07-23 13:47:29 -04002323 context->recordError(gl::Error(GL_INVALID_ENUM));
2324 return;
Geoff Lang646559f2013-08-15 11:08:15 -04002325 }
2326 else
2327 {
Geoff Langb1196682014-07-23 13:47:29 -04002328 context->recordError(gl::Error(GL_INVALID_OPERATION));
2329 return;
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002330 }
daniel@transgaming.comc46c9c02010-04-23 18:34:55 +00002331 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002332 }
Geoff Langbfdea662014-07-23 14:16:32 -04002333 else
2334 {
2335 ASSERT(attachmentObjectType == GL_RENDERBUFFER || attachmentObjectType == GL_TEXTURE ||
2336 attachmentObjectType == GL_FRAMEBUFFER_DEFAULT);
2337 ASSERT(attachmentObject != NULL);
2338
2339 switch (pname)
2340 {
2341 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
2342 *params = attachmentObjectType;
2343 break;
2344
2345 case GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:
2346 if (attachmentObjectType != GL_RENDERBUFFER && attachmentObjectType != GL_TEXTURE)
2347 {
Geoff Langb1196682014-07-23 13:47:29 -04002348 context->recordError(gl::Error(GL_INVALID_ENUM));
2349 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002350 }
2351 *params = attachmentHandle;
2352 break;
2353
2354 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:
2355 if (attachmentObjectType != GL_TEXTURE)
2356 {
Geoff Langb1196682014-07-23 13:47:29 -04002357 context->recordError(gl::Error(GL_INVALID_ENUM));
2358 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002359 }
2360 *params = attachmentLevel;
2361 break;
2362
2363 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE:
2364 if (attachmentObjectType != GL_TEXTURE)
2365 {
Geoff Langb1196682014-07-23 13:47:29 -04002366 context->recordError(gl::Error(GL_INVALID_ENUM));
2367 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002368 }
2369 *params = gl::IsCubemapTextureTarget(attachmentType) ? attachmentType : 0;
2370 break;
2371
2372 case GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE:
2373 *params = attachmentObject->getRedSize();
2374 break;
2375
2376 case GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE:
2377 *params = attachmentObject->getGreenSize();
2378 break;
2379
2380 case GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE:
2381 *params = attachmentObject->getBlueSize();
2382 break;
2383
2384 case GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE:
2385 *params = attachmentObject->getAlphaSize();
2386 break;
2387
2388 case GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE:
2389 *params = attachmentObject->getDepthSize();
2390 break;
2391
2392 case GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE:
2393 *params = attachmentObject->getStencilSize();
2394 break;
2395
2396 case GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE:
Jamie Madillee85d1b2014-09-17 10:35:23 -04002397 if (attachment == GL_DEPTH_STENCIL_ATTACHMENT)
Geoff Langbfdea662014-07-23 14:16:32 -04002398 {
Geoff Langb1196682014-07-23 13:47:29 -04002399 context->recordError(gl::Error(GL_INVALID_OPERATION));
2400 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002401 }
2402 *params = attachmentObject->getComponentType();
2403 break;
2404
2405 case GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING:
2406 *params = attachmentObject->getColorEncoding();
2407 break;
2408
2409 case GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER:
2410 if (attachmentObjectType != GL_TEXTURE)
2411 {
Geoff Langb1196682014-07-23 13:47:29 -04002412 context->recordError(gl::Error(GL_INVALID_ENUM));
2413 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002414 }
2415 *params = attachmentLayer;
2416 break;
2417
2418 default:
2419 UNREACHABLE();
2420 break;
2421 }
2422 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002423 }
2424}
2425
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002426GLenum __stdcall glGetGraphicsResetStatusEXT(void)
2427{
2428 EVENT("()");
2429
Geoff Langbfdea662014-07-23 14:16:32 -04002430 gl::Context *context = gl::getContext();
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002431
Geoff Langbfdea662014-07-23 14:16:32 -04002432 if (context)
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002433 {
Geoff Langbfdea662014-07-23 14:16:32 -04002434 return context->getResetStatus();
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002435 }
Geoff Langbfdea662014-07-23 14:16:32 -04002436
2437 return GL_NO_ERROR;
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00002438}
2439
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002440void __stdcall glGetIntegerv(GLenum pname, GLint* params)
2441{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002442 EVENT("(GLenum pname = 0x%X, GLint* params = 0x%0.8p)", pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002443
Geoff Langbfdea662014-07-23 14:16:32 -04002444 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002445 if (context)
2446 {
2447 GLenum nativeType;
2448 unsigned int numParams = 0;
2449
2450 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002451 {
Geoff Langbfdea662014-07-23 14:16:32 -04002452 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002453 }
Geoff Langbfdea662014-07-23 14:16:32 -04002454
2455 if (nativeType == GL_INT)
2456 {
2457 context->getIntegerv(pname, params);
2458 }
2459 else
2460 {
2461 CastStateValues(context, nativeType, pname, numParams, params);
2462 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002463 }
2464}
2465
2466void __stdcall glGetProgramiv(GLuint program, GLenum pname, GLint* params)
2467{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002468 EVENT("(GLuint program = %d, GLenum pname = %d, GLint* params = 0x%0.8p)", program, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002469
Geoff Langbfdea662014-07-23 14:16:32 -04002470 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002471 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002472 {
Geoff Langbfdea662014-07-23 14:16:32 -04002473 gl::Program *programObject = context->getProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002474
Geoff Langbfdea662014-07-23 14:16:32 -04002475 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002476 {
Geoff Langb1196682014-07-23 13:47:29 -04002477 context->recordError(gl::Error(GL_INVALID_VALUE));
2478 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002479 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002480
Geoff Langbfdea662014-07-23 14:16:32 -04002481 if (context->getClientVersion() < 3)
2482 {
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002483 switch (pname)
2484 {
shannonwoods@chromium.orge684b582013-05-30 00:07:42 +00002485 case GL_ACTIVE_UNIFORM_BLOCKS:
shannonwoods@chromium.orge684b582013-05-30 00:07:42 +00002486 case GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH:
Geoff Lang1b6edcb2014-02-03 14:27:56 -05002487 case GL_TRANSFORM_FEEDBACK_BUFFER_MODE:
Geoff Lang1b6edcb2014-02-03 14:27:56 -05002488 case GL_TRANSFORM_FEEDBACK_VARYINGS:
Geoff Lang1b6edcb2014-02-03 14:27:56 -05002489 case GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH:
Geoff Langb1196682014-07-23 13:47:29 -04002490 context->recordError(gl::Error(GL_INVALID_ENUM));
2491 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002492 }
2493 }
Geoff Langbfdea662014-07-23 14:16:32 -04002494
2495 switch (pname)
2496 {
2497 case GL_DELETE_STATUS:
2498 *params = programObject->isFlaggedForDeletion();
2499 return;
2500 case GL_LINK_STATUS:
2501 *params = programObject->isLinked();
2502 return;
2503 case GL_VALIDATE_STATUS:
2504 *params = programObject->isValidated();
2505 return;
2506 case GL_INFO_LOG_LENGTH:
2507 *params = programObject->getInfoLogLength();
2508 return;
2509 case GL_ATTACHED_SHADERS:
2510 *params = programObject->getAttachedShadersCount();
2511 return;
2512 case GL_ACTIVE_ATTRIBUTES:
2513 *params = programObject->getActiveAttributeCount();
2514 return;
2515 case GL_ACTIVE_ATTRIBUTE_MAX_LENGTH:
2516 *params = programObject->getActiveAttributeMaxLength();
2517 return;
2518 case GL_ACTIVE_UNIFORMS:
2519 *params = programObject->getActiveUniformCount();
2520 return;
2521 case GL_ACTIVE_UNIFORM_MAX_LENGTH:
2522 *params = programObject->getActiveUniformMaxLength();
2523 return;
2524 case GL_PROGRAM_BINARY_LENGTH_OES:
2525 *params = programObject->getProgramBinaryLength();
2526 return;
2527 case GL_ACTIVE_UNIFORM_BLOCKS:
2528 *params = programObject->getActiveUniformBlockCount();
2529 return;
2530 case GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH:
2531 *params = programObject->getActiveUniformBlockMaxLength();
2532 break;
2533 case GL_TRANSFORM_FEEDBACK_BUFFER_MODE:
2534 *params = programObject->getTransformFeedbackBufferMode();
2535 break;
2536 case GL_TRANSFORM_FEEDBACK_VARYINGS:
2537 *params = programObject->getTransformFeedbackVaryingCount();
2538 break;
2539 case GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH:
2540 *params = programObject->getTransformFeedbackVaryingMaxLength();
2541 break;
Geoff Langb1196682014-07-23 13:47:29 -04002542
Geoff Langbfdea662014-07-23 14:16:32 -04002543 default:
Geoff Langb1196682014-07-23 13:47:29 -04002544 context->recordError(gl::Error(GL_INVALID_ENUM));
2545 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002546 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002547 }
2548}
2549
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00002550void __stdcall glGetProgramInfoLog(GLuint program, GLsizei bufsize, GLsizei* length, GLchar* infolog)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002551{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002552 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 +00002553 program, bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002554
Geoff Langbfdea662014-07-23 14:16:32 -04002555 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002556 if (context)
2557 {
Geoff Langb1196682014-07-23 13:47:29 -04002558 if (bufsize < 0)
2559 {
2560 context->recordError(gl::Error(GL_INVALID_VALUE));
2561 return;
2562 }
2563
Geoff Langbfdea662014-07-23 14:16:32 -04002564 gl::Program *programObject = context->getProgram(program);
2565
2566 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002567 {
Geoff Langb1196682014-07-23 13:47:29 -04002568 context->recordError(gl::Error(GL_INVALID_VALUE));
2569 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002570 }
2571
Geoff Langbfdea662014-07-23 14:16:32 -04002572 programObject->getInfoLog(bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002573 }
2574}
2575
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002576void __stdcall glGetQueryivEXT(GLenum target, GLenum pname, GLint *params)
2577{
2578 EVENT("GLenum target = 0x%X, GLenum pname = 0x%X, GLint *params = 0x%0.8p)", target, pname, params);
2579
Geoff Langbfdea662014-07-23 14:16:32 -04002580 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002581 if (context)
2582 {
2583 if (!ValidQueryType(context, target))
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002584 {
Geoff Langb1196682014-07-23 13:47:29 -04002585 context->recordError(gl::Error(GL_INVALID_ENUM));
2586 return;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002587 }
Geoff Langbfdea662014-07-23 14:16:32 -04002588
2589 switch (pname)
2590 {
2591 case GL_CURRENT_QUERY_EXT:
2592 params[0] = context->getState().getActiveQueryId(target);
2593 break;
2594
2595 default:
Geoff Langb1196682014-07-23 13:47:29 -04002596 context->recordError(gl::Error(GL_INVALID_ENUM));
2597 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002598 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002599 }
2600}
2601
2602void __stdcall glGetQueryObjectuivEXT(GLuint id, GLenum pname, GLuint *params)
2603{
2604 EVENT("(GLuint id = %d, GLenum pname = 0x%X, GLuint *params = 0x%0.8p)", id, pname, params);
2605
Geoff Langbfdea662014-07-23 14:16:32 -04002606 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002607 if (context)
2608 {
2609 gl::Query *queryObject = context->getQuery(id, false, GL_NONE);
2610
2611 if (!queryObject)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002612 {
Geoff Langb1196682014-07-23 13:47:29 -04002613 context->recordError(gl::Error(GL_INVALID_OPERATION));
2614 return;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002615 }
Geoff Langbfdea662014-07-23 14:16:32 -04002616
2617 if (context->getState().getActiveQueryId(queryObject->getType()) == id)
2618 {
Geoff Langb1196682014-07-23 13:47:29 -04002619 context->recordError(gl::Error(GL_INVALID_OPERATION));
2620 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002621 }
2622
2623 switch(pname)
2624 {
2625 case GL_QUERY_RESULT_EXT:
Geoff Lang5aad9672014-09-08 11:10:42 -04002626 {
2627 gl::Error error = queryObject->getResult(params);
2628 if (error.isError())
2629 {
2630 context->recordError(error);
2631 return;
2632 }
2633 }
Geoff Langbfdea662014-07-23 14:16:32 -04002634 break;
Geoff Lang5aad9672014-09-08 11:10:42 -04002635
Geoff Langbfdea662014-07-23 14:16:32 -04002636 case GL_QUERY_RESULT_AVAILABLE_EXT:
Geoff Lang5aad9672014-09-08 11:10:42 -04002637 {
2638 gl::Error error = queryObject->isResultAvailable(params);
2639 if (error.isError())
2640 {
2641 context->recordError(error);
2642 return;
2643 }
2644 }
Geoff Langbfdea662014-07-23 14:16:32 -04002645 break;
Geoff Lang5aad9672014-09-08 11:10:42 -04002646
Geoff Langbfdea662014-07-23 14:16:32 -04002647 default:
Geoff Langb1196682014-07-23 13:47:29 -04002648 context->recordError(gl::Error(GL_INVALID_ENUM));
2649 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002650 }
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00002651 }
2652}
2653
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002654void __stdcall glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint* params)
2655{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002656 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 +00002657
Geoff Langbfdea662014-07-23 14:16:32 -04002658 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002659 if (context)
2660 {
2661 if (target != GL_RENDERBUFFER)
daniel@transgaming.com4901fca2010-04-20 18:52:41 +00002662 {
Geoff Langb1196682014-07-23 13:47:29 -04002663 context->recordError(gl::Error(GL_INVALID_ENUM));
2664 return;
daniel@transgaming.com4901fca2010-04-20 18:52:41 +00002665 }
Geoff Langbfdea662014-07-23 14:16:32 -04002666
2667 if (context->getState().getRenderbufferId() == 0)
2668 {
Geoff Langb1196682014-07-23 13:47:29 -04002669 context->recordError(gl::Error(GL_INVALID_OPERATION));
2670 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002671 }
2672
2673 gl::Renderbuffer *renderbuffer = context->getRenderbuffer(context->getState().getRenderbufferId());
2674
2675 switch (pname)
2676 {
2677 case GL_RENDERBUFFER_WIDTH: *params = renderbuffer->getWidth(); break;
2678 case GL_RENDERBUFFER_HEIGHT: *params = renderbuffer->getHeight(); break;
2679 case GL_RENDERBUFFER_INTERNAL_FORMAT: *params = renderbuffer->getInternalFormat(); break;
2680 case GL_RENDERBUFFER_RED_SIZE: *params = renderbuffer->getRedSize(); break;
2681 case GL_RENDERBUFFER_GREEN_SIZE: *params = renderbuffer->getGreenSize(); break;
2682 case GL_RENDERBUFFER_BLUE_SIZE: *params = renderbuffer->getBlueSize(); break;
2683 case GL_RENDERBUFFER_ALPHA_SIZE: *params = renderbuffer->getAlphaSize(); break;
2684 case GL_RENDERBUFFER_DEPTH_SIZE: *params = renderbuffer->getDepthSize(); break;
2685 case GL_RENDERBUFFER_STENCIL_SIZE: *params = renderbuffer->getStencilSize(); break;
Geoff Langb1196682014-07-23 13:47:29 -04002686
Geoff Langbfdea662014-07-23 14:16:32 -04002687 case GL_RENDERBUFFER_SAMPLES_ANGLE:
2688 if (!context->getExtensions().framebufferMultisample)
2689 {
Geoff Langb1196682014-07-23 13:47:29 -04002690 context->recordError(gl::Error(GL_INVALID_ENUM));
2691 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002692 }
2693 *params = renderbuffer->getSamples();
2694 break;
Geoff Langb1196682014-07-23 13:47:29 -04002695
Geoff Langbfdea662014-07-23 14:16:32 -04002696 default:
Geoff Langb1196682014-07-23 13:47:29 -04002697 context->recordError(gl::Error(GL_INVALID_ENUM));
2698 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002699 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002700 }
2701}
2702
2703void __stdcall glGetShaderiv(GLuint shader, GLenum pname, GLint* params)
2704{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002705 EVENT("(GLuint shader = %d, GLenum pname = %d, GLint* params = 0x%0.8p)", shader, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002706
Geoff Langbfdea662014-07-23 14:16:32 -04002707 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002708 if (context)
2709 {
2710 gl::Shader *shaderObject = context->getShader(shader);
2711
2712 if (!shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002713 {
Geoff Langb1196682014-07-23 13:47:29 -04002714 context->recordError(gl::Error(GL_INVALID_VALUE));
2715 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002716 }
Geoff Langbfdea662014-07-23 14:16:32 -04002717
2718 switch (pname)
2719 {
2720 case GL_SHADER_TYPE:
2721 *params = shaderObject->getType();
2722 return;
2723 case GL_DELETE_STATUS:
2724 *params = shaderObject->isFlaggedForDeletion();
2725 return;
2726 case GL_COMPILE_STATUS:
2727 *params = shaderObject->isCompiled() ? GL_TRUE : GL_FALSE;
2728 return;
2729 case GL_INFO_LOG_LENGTH:
2730 *params = shaderObject->getInfoLogLength();
2731 return;
2732 case GL_SHADER_SOURCE_LENGTH:
2733 *params = shaderObject->getSourceLength();
2734 return;
2735 case GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE:
2736 *params = shaderObject->getTranslatedSourceLength();
2737 return;
Geoff Langb1196682014-07-23 13:47:29 -04002738
Geoff Langbfdea662014-07-23 14:16:32 -04002739 default:
Geoff Langb1196682014-07-23 13:47:29 -04002740 context->recordError(gl::Error(GL_INVALID_ENUM));
2741 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002742 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002743 }
2744}
2745
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00002746void __stdcall glGetShaderInfoLog(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* infolog)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002747{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002748 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 +00002749 shader, bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002750
Geoff Langbfdea662014-07-23 14:16:32 -04002751 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002752 if (context)
2753 {
Geoff Langb1196682014-07-23 13:47:29 -04002754 if (bufsize < 0)
2755 {
2756 context->recordError(gl::Error(GL_INVALID_VALUE));
2757 return;
2758 }
2759
Geoff Langbfdea662014-07-23 14:16:32 -04002760 gl::Shader *shaderObject = context->getShader(shader);
2761
2762 if (!shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002763 {
Geoff Langb1196682014-07-23 13:47:29 -04002764 context->recordError(gl::Error(GL_INVALID_VALUE));
2765 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002766 }
2767
Geoff Langbfdea662014-07-23 14:16:32 -04002768 shaderObject->getInfoLog(bufsize, length, infolog);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002769 }
2770}
2771
2772void __stdcall glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision)
2773{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002774 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 +00002775 shadertype, precisiontype, range, precision);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002776
Geoff Langb1196682014-07-23 13:47:29 -04002777 gl::Context *context = gl::getNonLostContext();
2778 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002779 {
Geoff Langb1196682014-07-23 13:47:29 -04002780 switch (shadertype)
2781 {
2782 case GL_VERTEX_SHADER:
2783 case GL_FRAGMENT_SHADER:
2784 break;
Geoff Langbfdea662014-07-23 14:16:32 -04002785
Geoff Langb1196682014-07-23 13:47:29 -04002786 default:
2787 context->recordError(gl::Error(GL_INVALID_ENUM));
2788 return;
2789 }
2790
2791 switch (precisiontype)
2792 {
2793 case GL_LOW_FLOAT:
2794 case GL_MEDIUM_FLOAT:
2795 case GL_HIGH_FLOAT:
2796 // Assume IEEE 754 precision
2797 range[0] = 127;
2798 range[1] = 127;
2799 *precision = 23;
2800 break;
2801
2802 case GL_LOW_INT:
2803 case GL_MEDIUM_INT:
2804 case GL_HIGH_INT:
2805 // Some (most) hardware only supports single-precision floating-point numbers,
2806 // which can accurately represent integers up to +/-16777216
2807 range[0] = 24;
2808 range[1] = 24;
2809 *precision = 0;
2810 break;
2811
2812 default:
2813 context->recordError(gl::Error(GL_INVALID_ENUM));
2814 return;
2815 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002816 }
2817}
2818
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00002819void __stdcall glGetShaderSource(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002820{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002821 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 +00002822 shader, bufsize, length, source);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002823
Geoff Langbfdea662014-07-23 14:16:32 -04002824 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002825 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002826 {
Geoff Langb1196682014-07-23 13:47:29 -04002827 if (bufsize < 0)
2828 {
2829 context->recordError(gl::Error(GL_INVALID_VALUE));
2830 return;
2831 }
2832
Geoff Langbfdea662014-07-23 14:16:32 -04002833 gl::Shader *shaderObject = context->getShader(shader);
2834
2835 if (!shaderObject)
2836 {
Geoff Langb1196682014-07-23 13:47:29 -04002837 context->recordError(gl::Error(GL_INVALID_OPERATION));
2838 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002839 }
2840
2841 shaderObject->getSource(bufsize, length, source);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002842 }
2843}
2844
zmo@google.coma574f782011-10-03 21:45:23 +00002845void __stdcall glGetTranslatedShaderSourceANGLE(GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source)
2846{
2847 EVENT("(GLuint shader = %d, GLsizei bufsize = %d, GLsizei* length = 0x%0.8p, GLchar* source = 0x%0.8p)",
2848 shader, bufsize, length, source);
2849
Geoff Langbfdea662014-07-23 14:16:32 -04002850 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002851 if (context)
zmo@google.coma574f782011-10-03 21:45:23 +00002852 {
Geoff Langb1196682014-07-23 13:47:29 -04002853 if (bufsize < 0)
2854 {
2855 context->recordError(gl::Error(GL_INVALID_VALUE));
2856 return;
2857 }
2858
Geoff Langbfdea662014-07-23 14:16:32 -04002859 gl::Shader *shaderObject = context->getShader(shader);
2860
2861 if (!shaderObject)
2862 {
Geoff Langb1196682014-07-23 13:47:29 -04002863 context->recordError(gl::Error(GL_INVALID_OPERATION));
2864 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002865 }
2866
2867 shaderObject->getTranslatedSource(bufsize, length, source);
zmo@google.coma574f782011-10-03 21:45:23 +00002868 }
2869}
2870
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002871const GLubyte* __stdcall glGetString(GLenum name)
2872{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002873 EVENT("(GLenum name = 0x%X)", name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002874
Geoff Langbfdea662014-07-23 14:16:32 -04002875 gl::Context *context = gl::getNonLostContext();
daniel@transgaming.com3e4c6002010-05-05 18:50:13 +00002876
Geoff Langbfdea662014-07-23 14:16:32 -04002877 switch (name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002878 {
Geoff Langbfdea662014-07-23 14:16:32 -04002879 case GL_VENDOR:
2880 return (GLubyte*)"Google Inc.";
Geoff Langb1196682014-07-23 13:47:29 -04002881
Geoff Langbfdea662014-07-23 14:16:32 -04002882 case GL_RENDERER:
2883 return (GLubyte*)((context != NULL) ? context->getRendererString().c_str() : "ANGLE");
Geoff Langb1196682014-07-23 13:47:29 -04002884
Geoff Langbfdea662014-07-23 14:16:32 -04002885 case GL_VERSION:
2886 if (context->getClientVersion() == 2)
2887 {
2888 return (GLubyte*)"OpenGL ES 2.0 (ANGLE " ANGLE_VERSION_STRING ")";
2889 }
2890 else
2891 {
2892 return (GLubyte*)"OpenGL ES 3.0 (ANGLE " ANGLE_VERSION_STRING ")";
2893 }
Geoff Langb1196682014-07-23 13:47:29 -04002894
Geoff Langbfdea662014-07-23 14:16:32 -04002895 case GL_SHADING_LANGUAGE_VERSION:
2896 if (context->getClientVersion() == 2)
2897 {
2898 return (GLubyte*)"OpenGL ES GLSL ES 1.00 (ANGLE " ANGLE_VERSION_STRING ")";
2899 }
2900 else
2901 {
2902 return (GLubyte*)"OpenGL ES GLSL ES 3.00 (ANGLE " ANGLE_VERSION_STRING ")";
2903 }
Geoff Langb1196682014-07-23 13:47:29 -04002904
Geoff Langbfdea662014-07-23 14:16:32 -04002905 case GL_EXTENSIONS:
2906 return (GLubyte*)((context != NULL) ? context->getExtensionString().c_str() : "");
Geoff Langb1196682014-07-23 13:47:29 -04002907
Geoff Langbfdea662014-07-23 14:16:32 -04002908 default:
Geoff Langb1196682014-07-23 13:47:29 -04002909 if (context)
2910 {
2911 context->recordError(gl::Error(GL_INVALID_ENUM));
2912 }
2913 return NULL;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002914 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00002915}
2916
2917void __stdcall glGetTexParameterfv(GLenum target, GLenum pname, GLfloat* params)
2918{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00002919 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 +00002920
Geoff Langbfdea662014-07-23 14:16:32 -04002921 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04002922 if (context)
2923 {
2924 gl::Texture *texture = context->getTargetTexture(target);
2925
2926 if (!texture)
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002927 {
Geoff Langb1196682014-07-23 13:47:29 -04002928 context->recordError(gl::Error(GL_INVALID_ENUM));
2929 return;
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00002930 }
Geoff Langbfdea662014-07-23 14:16:32 -04002931
2932 switch (pname)
2933 {
2934 case GL_TEXTURE_MAG_FILTER:
2935 *params = (GLfloat)texture->getSamplerState().magFilter;
2936 break;
2937 case GL_TEXTURE_MIN_FILTER:
2938 *params = (GLfloat)texture->getSamplerState().minFilter;
2939 break;
2940 case GL_TEXTURE_WRAP_S:
2941 *params = (GLfloat)texture->getSamplerState().wrapS;
2942 break;
2943 case GL_TEXTURE_WRAP_T:
2944 *params = (GLfloat)texture->getSamplerState().wrapT;
2945 break;
2946 case GL_TEXTURE_WRAP_R:
2947 if (context->getClientVersion() < 3)
2948 {
Geoff Langb1196682014-07-23 13:47:29 -04002949 context->recordError(gl::Error(GL_INVALID_ENUM));
2950 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002951 }
2952 *params = (GLfloat)texture->getSamplerState().wrapR;
2953 break;
2954 case GL_TEXTURE_IMMUTABLE_FORMAT:
2955 // Exposed to ES2.0 through EXT_texture_storage, no client version validation.
2956 *params = (GLfloat)(texture->isImmutable() ? GL_TRUE : GL_FALSE);
2957 break;
2958 case GL_TEXTURE_IMMUTABLE_LEVELS:
2959 if (context->getClientVersion() < 3)
2960 {
Geoff Langb1196682014-07-23 13:47:29 -04002961 context->recordError(gl::Error(GL_INVALID_ENUM));
2962 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002963 }
2964 *params = (GLfloat)texture->immutableLevelCount();
2965 break;
2966 case GL_TEXTURE_USAGE_ANGLE:
2967 *params = (GLfloat)texture->getUsage();
2968 break;
2969 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
2970 if (!context->getExtensions().textureFilterAnisotropic)
2971 {
Geoff Langb1196682014-07-23 13:47:29 -04002972 context->recordError(gl::Error(GL_INVALID_ENUM));
2973 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002974 }
2975 *params = (GLfloat)texture->getSamplerState().maxAnisotropy;
2976 break;
2977 case GL_TEXTURE_SWIZZLE_R:
2978 if (context->getClientVersion() < 3)
2979 {
Geoff Langb1196682014-07-23 13:47:29 -04002980 context->recordError(gl::Error(GL_INVALID_ENUM));
2981 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002982 }
2983 *params = (GLfloat)texture->getSamplerState().swizzleRed;
2984 break;
2985 case GL_TEXTURE_SWIZZLE_G:
2986 if (context->getClientVersion() < 3)
2987 {
Geoff Langb1196682014-07-23 13:47:29 -04002988 context->recordError(gl::Error(GL_INVALID_ENUM));
2989 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002990 }
2991 *params = (GLfloat)texture->getSamplerState().swizzleGreen;
2992 break;
2993 case GL_TEXTURE_SWIZZLE_B:
2994 if (context->getClientVersion() < 3)
2995 {
Geoff Langb1196682014-07-23 13:47:29 -04002996 context->recordError(gl::Error(GL_INVALID_ENUM));
2997 return;
Geoff Langbfdea662014-07-23 14:16:32 -04002998 }
2999 *params = (GLfloat)texture->getSamplerState().swizzleBlue;
3000 break;
3001 case GL_TEXTURE_SWIZZLE_A:
3002 if (context->getClientVersion() < 3)
3003 {
Geoff Langb1196682014-07-23 13:47:29 -04003004 context->recordError(gl::Error(GL_INVALID_ENUM));
3005 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003006 }
3007 *params = (GLfloat)texture->getSamplerState().swizzleAlpha;
3008 break;
3009 case GL_TEXTURE_BASE_LEVEL:
3010 if (context->getClientVersion() < 3)
3011 {
Geoff Langb1196682014-07-23 13:47:29 -04003012 context->recordError(gl::Error(GL_INVALID_ENUM));
3013 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003014 }
3015 *params = (GLfloat)texture->getSamplerState().baseLevel;
3016 break;
3017 case GL_TEXTURE_MAX_LEVEL:
3018 if (context->getClientVersion() < 3)
3019 {
Geoff Langb1196682014-07-23 13:47:29 -04003020 context->recordError(gl::Error(GL_INVALID_ENUM));
3021 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003022 }
3023 *params = (GLfloat)texture->getSamplerState().maxLevel;
3024 break;
3025 case GL_TEXTURE_MIN_LOD:
3026 if (context->getClientVersion() < 3)
3027 {
Geoff Langb1196682014-07-23 13:47:29 -04003028 context->recordError(gl::Error(GL_INVALID_ENUM));
3029 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003030 }
3031 *params = texture->getSamplerState().minLod;
3032 break;
3033 case GL_TEXTURE_MAX_LOD:
3034 if (context->getClientVersion() < 3)
3035 {
Geoff Langb1196682014-07-23 13:47:29 -04003036 context->recordError(gl::Error(GL_INVALID_ENUM));
3037 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003038 }
3039 *params = texture->getSamplerState().maxLod;
3040 break;
Geoff Langb1196682014-07-23 13:47:29 -04003041
Geoff Langbfdea662014-07-23 14:16:32 -04003042 default:
Geoff Langb1196682014-07-23 13:47:29 -04003043 context->recordError(gl::Error(GL_INVALID_ENUM));
3044 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003045 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003046 }
3047}
3048
3049void __stdcall glGetTexParameteriv(GLenum target, GLenum pname, GLint* params)
3050{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003051 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 +00003052
Geoff Langbfdea662014-07-23 14:16:32 -04003053 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003054 if (context)
3055 {
3056 gl::Texture *texture = context->getTargetTexture(target);
3057
3058 if (!texture)
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00003059 {
Geoff Langb1196682014-07-23 13:47:29 -04003060 context->recordError(gl::Error(GL_INVALID_ENUM));
3061 return;
daniel@transgaming.com5d2bee92010-04-20 18:51:56 +00003062 }
Geoff Langbfdea662014-07-23 14:16:32 -04003063
3064 switch (pname)
3065 {
3066 case GL_TEXTURE_MAG_FILTER:
3067 *params = texture->getSamplerState().magFilter;
3068 break;
3069 case GL_TEXTURE_MIN_FILTER:
3070 *params = texture->getSamplerState().minFilter;
3071 break;
3072 case GL_TEXTURE_WRAP_S:
3073 *params = texture->getSamplerState().wrapS;
3074 break;
3075 case GL_TEXTURE_WRAP_T:
3076 *params = texture->getSamplerState().wrapT;
3077 break;
3078 case GL_TEXTURE_WRAP_R:
3079 if (context->getClientVersion() < 3)
3080 {
Geoff Langb1196682014-07-23 13:47:29 -04003081 context->recordError(gl::Error(GL_INVALID_ENUM));
3082 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003083 }
3084 *params = texture->getSamplerState().wrapR;
3085 break;
3086 case GL_TEXTURE_IMMUTABLE_FORMAT:
3087 // Exposed to ES2.0 through EXT_texture_storage, no client version validation.
3088 *params = texture->isImmutable() ? GL_TRUE : GL_FALSE;
3089 break;
3090 case GL_TEXTURE_IMMUTABLE_LEVELS:
3091 if (context->getClientVersion() < 3)
3092 {
Geoff Langb1196682014-07-23 13:47:29 -04003093 context->recordError(gl::Error(GL_INVALID_ENUM));
3094 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003095 }
3096 *params = texture->immutableLevelCount();
3097 break;
3098 case GL_TEXTURE_USAGE_ANGLE:
3099 *params = texture->getUsage();
3100 break;
3101 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
3102 if (!context->getExtensions().textureFilterAnisotropic)
3103 {
Geoff Langb1196682014-07-23 13:47:29 -04003104 context->recordError(gl::Error(GL_INVALID_ENUM));
3105 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003106 }
3107 *params = (GLint)texture->getSamplerState().maxAnisotropy;
3108 break;
3109 case GL_TEXTURE_SWIZZLE_R:
3110 if (context->getClientVersion() < 3)
3111 {
Geoff Langb1196682014-07-23 13:47:29 -04003112 context->recordError(gl::Error(GL_INVALID_ENUM));
3113 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003114 }
3115 *params = texture->getSamplerState().swizzleRed;
3116 break;
3117 case GL_TEXTURE_SWIZZLE_G:
3118 if (context->getClientVersion() < 3)
3119 {
Geoff Langb1196682014-07-23 13:47:29 -04003120 context->recordError(gl::Error(GL_INVALID_ENUM));
3121 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003122 }
3123 *params = texture->getSamplerState().swizzleGreen;
3124 break;
3125 case GL_TEXTURE_SWIZZLE_B:
3126 if (context->getClientVersion() < 3)
3127 {
Geoff Langb1196682014-07-23 13:47:29 -04003128 context->recordError(gl::Error(GL_INVALID_ENUM));
3129 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003130 }
3131 *params = texture->getSamplerState().swizzleBlue;
3132 break;
3133 case GL_TEXTURE_SWIZZLE_A:
3134 if (context->getClientVersion() < 3)
3135 {
Geoff Langb1196682014-07-23 13:47:29 -04003136 context->recordError(gl::Error(GL_INVALID_ENUM));
3137 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003138 }
3139 *params = texture->getSamplerState().swizzleAlpha;
3140 break;
3141 case GL_TEXTURE_BASE_LEVEL:
3142 if (context->getClientVersion() < 3)
3143 {
Geoff Langb1196682014-07-23 13:47:29 -04003144 context->recordError(gl::Error(GL_INVALID_ENUM));
3145 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003146 }
3147 *params = texture->getSamplerState().baseLevel;
3148 break;
3149 case GL_TEXTURE_MAX_LEVEL:
3150 if (context->getClientVersion() < 3)
3151 {
Geoff Langb1196682014-07-23 13:47:29 -04003152 context->recordError(gl::Error(GL_INVALID_ENUM));
3153 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003154 }
3155 *params = texture->getSamplerState().maxLevel;
3156 break;
3157 case GL_TEXTURE_MIN_LOD:
3158 if (context->getClientVersion() < 3)
3159 {
Geoff Langb1196682014-07-23 13:47:29 -04003160 context->recordError(gl::Error(GL_INVALID_ENUM));
3161 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003162 }
3163 *params = (GLint)texture->getSamplerState().minLod;
3164 break;
3165 case GL_TEXTURE_MAX_LOD:
3166 if (context->getClientVersion() < 3)
3167 {
Geoff Langb1196682014-07-23 13:47:29 -04003168 context->recordError(gl::Error(GL_INVALID_ENUM));
3169 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003170 }
3171 *params = (GLint)texture->getSamplerState().maxLod;
3172 break;
Geoff Langb1196682014-07-23 13:47:29 -04003173
Geoff Langbfdea662014-07-23 14:16:32 -04003174 default:
Geoff Langb1196682014-07-23 13:47:29 -04003175 context->recordError(gl::Error(GL_INVALID_ENUM));
3176 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003177 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003178 }
3179}
3180
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003181void __stdcall glGetnUniformfvEXT(GLuint program, GLint location, GLsizei bufSize, GLfloat* params)
3182{
3183 EVENT("(GLuint program = %d, GLint location = %d, GLsizei bufSize = %d, GLfloat* params = 0x%0.8p)",
3184 program, location, bufSize, params);
3185
Geoff Langbfdea662014-07-23 14:16:32 -04003186 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003187 if (context)
3188 {
Jamie Madill0063c512014-08-25 15:47:53 -04003189 if (!ValidateGetnUniformfvEXT(context, program, location, bufSize, params))
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003190 {
Jamie Madill0063c512014-08-25 15:47:53 -04003191 return;
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003192 }
3193
Jamie Madilla502c742014-08-28 17:19:13 -04003194 gl::Program *programObject = context->getProgram(program);
3195 ASSERT(programObject);
3196 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
Jamie Madill0063c512014-08-25 15:47:53 -04003197 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003198
Jamie Madill99a1e982014-08-25 15:47:54 -04003199 programBinary->getUniformfv(location, params);
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003200 }
3201}
3202
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003203void __stdcall glGetUniformfv(GLuint program, GLint location, GLfloat* params)
3204{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003205 EVENT("(GLuint program = %d, GLint location = %d, GLfloat* params = 0x%0.8p)", program, location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003206
Geoff Langbfdea662014-07-23 14:16:32 -04003207 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003208 if (context)
3209 {
Jamie Madill0063c512014-08-25 15:47:53 -04003210 if (!ValidateGetUniformfv(context, program, location, params))
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003211 {
Jamie Madill0063c512014-08-25 15:47:53 -04003212 return;
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003213 }
Geoff Langbfdea662014-07-23 14:16:32 -04003214
Jamie Madilla502c742014-08-28 17:19:13 -04003215 gl::Program *programObject = context->getProgram(program);
3216 ASSERT(programObject);
3217 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
Jamie Madill0063c512014-08-25 15:47:53 -04003218 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003219
Jamie Madill99a1e982014-08-25 15:47:54 -04003220 programBinary->getUniformfv(location, params);
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003221 }
3222}
3223
3224void __stdcall glGetnUniformivEXT(GLuint program, GLint location, GLsizei bufSize, GLint* params)
3225{
Geoff Langbfdea662014-07-23 14:16:32 -04003226 EVENT("(GLuint program = %d, GLint location = %d, GLsizei bufSize = %d, GLint* params = 0x%0.8p)",
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003227 program, location, bufSize, params);
3228
Geoff Langbfdea662014-07-23 14:16:32 -04003229 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003230 if (context)
3231 {
Jamie Madill0063c512014-08-25 15:47:53 -04003232 if (!ValidateGetnUniformivEXT(context, program, location, bufSize, params))
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003233 {
Jamie Madill0063c512014-08-25 15:47:53 -04003234 return;
daniel@transgaming.com9a849122011-11-12 03:18:00 +00003235 }
3236
Jamie Madilla502c742014-08-28 17:19:13 -04003237 gl::Program *programObject = context->getProgram(program);
3238 ASSERT(programObject);
3239 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
Jamie Madill0063c512014-08-25 15:47:53 -04003240 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003241
Jamie Madill99a1e982014-08-25 15:47:54 -04003242 programBinary->getUniformiv(location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003243 }
3244}
3245
3246void __stdcall glGetUniformiv(GLuint program, GLint location, GLint* params)
3247{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003248 EVENT("(GLuint program = %d, GLint location = %d, GLint* params = 0x%0.8p)", program, location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003249
Geoff Langbfdea662014-07-23 14:16:32 -04003250 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003251 if (context)
3252 {
Jamie Madill0063c512014-08-25 15:47:53 -04003253 if (!ValidateGetUniformiv(context, program, location, params))
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003254 {
Jamie Madill0063c512014-08-25 15:47:53 -04003255 return;
daniel@transgaming.combb3d9d02010-04-13 03:26:06 +00003256 }
Geoff Langbfdea662014-07-23 14:16:32 -04003257
Jamie Madilla502c742014-08-28 17:19:13 -04003258 gl::Program *programObject = context->getProgram(program);
3259 ASSERT(programObject);
3260 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
Jamie Madill0063c512014-08-25 15:47:53 -04003261 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04003262
Jamie Madill99a1e982014-08-25 15:47:54 -04003263 programBinary->getUniformiv(location, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003264 }
3265}
3266
Geoff Langb1196682014-07-23 13:47:29 -04003267GLint __stdcall glGetUniformLocation(GLuint program, const GLchar* name)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003268{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003269 EVENT("(GLuint program = %d, const GLchar* name = 0x%0.8p)", program, name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003270
Geoff Langbfdea662014-07-23 14:16:32 -04003271 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003272 if (context)
3273 {
Geoff Langb1196682014-07-23 13:47:29 -04003274 if (strstr(name, "gl_") == name)
3275 {
3276 return -1;
3277 }
3278
Geoff Langbfdea662014-07-23 14:16:32 -04003279 gl::Program *programObject = context->getProgram(program);
3280
3281 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003282 {
Geoff Langbfdea662014-07-23 14:16:32 -04003283 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003284 {
Geoff Langb1196682014-07-23 13:47:29 -04003285 context->recordError(gl::Error(GL_INVALID_OPERATION));
3286 return -1;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003287 }
Geoff Langbfdea662014-07-23 14:16:32 -04003288 else
3289 {
Geoff Langb1196682014-07-23 13:47:29 -04003290 context->recordError(gl::Error(GL_INVALID_VALUE));
3291 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04003292 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003293 }
Geoff Langbfdea662014-07-23 14:16:32 -04003294
3295 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
3296 if (!programObject->isLinked() || !programBinary)
3297 {
Geoff Langb1196682014-07-23 13:47:29 -04003298 context->recordError(gl::Error(GL_INVALID_OPERATION));
3299 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04003300 }
3301
3302 return programBinary->getUniformLocation(name);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003303 }
3304
3305 return -1;
3306}
3307
3308void __stdcall glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat* params)
3309{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003310 EVENT("(GLuint index = %d, GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", index, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003311
Geoff Langbfdea662014-07-23 14:16:32 -04003312 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003313 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003314 {
Geoff Langbfdea662014-07-23 14:16:32 -04003315 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003316 {
Geoff Langb1196682014-07-23 13:47:29 -04003317 context->recordError(gl::Error(GL_INVALID_VALUE));
3318 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003319 }
daniel@transgaming.come0078962010-04-15 20:45:08 +00003320
Geoff Langbfdea662014-07-23 14:16:32 -04003321 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
Geoff Langb1196682014-07-23 13:47:29 -04003322 if (!gl::ValidateGetVertexAttribParameters(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04003323 {
3324 return;
3325 }
daniel@transgaming.com428d1582010-05-04 03:35:25 +00003326
Geoff Langbfdea662014-07-23 14:16:32 -04003327 if (pname == GL_CURRENT_VERTEX_ATTRIB)
3328 {
3329 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
3330 for (int i = 0; i < 4; ++i)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003331 {
Geoff Langbfdea662014-07-23 14:16:32 -04003332 params[i] = currentValueData.FloatValues[i];
daniel@transgaming.come0078962010-04-15 20:45:08 +00003333 }
3334 }
Geoff Langbfdea662014-07-23 14:16:32 -04003335 else
3336 {
3337 *params = gl::QuerySingleVertexAttributeParameter<GLfloat>(attribState, pname);
3338 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003339 }
3340}
3341
3342void __stdcall glGetVertexAttribiv(GLuint index, GLenum pname, GLint* params)
3343{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003344 EVENT("(GLuint index = %d, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", index, pname, params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003345
Geoff Langbfdea662014-07-23 14:16:32 -04003346 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003347 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003348 {
Geoff Langbfdea662014-07-23 14:16:32 -04003349 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003350 {
Geoff Langb1196682014-07-23 13:47:29 -04003351 context->recordError(gl::Error(GL_INVALID_VALUE));
3352 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003353 }
daniel@transgaming.come0078962010-04-15 20:45:08 +00003354
Geoff Langbfdea662014-07-23 14:16:32 -04003355 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
daniel@transgaming.com428d1582010-05-04 03:35:25 +00003356
Geoff Langb1196682014-07-23 13:47:29 -04003357 if (!gl::ValidateGetVertexAttribParameters(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04003358 {
3359 return;
3360 }
Jamie Madillaff71502013-07-02 11:57:05 -04003361
Geoff Langbfdea662014-07-23 14:16:32 -04003362 if (pname == GL_CURRENT_VERTEX_ATTRIB)
3363 {
3364 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
3365 for (int i = 0; i < 4; ++i)
Jamie Madillaff71502013-07-02 11:57:05 -04003366 {
Geoff Langbfdea662014-07-23 14:16:32 -04003367 float currentValue = currentValueData.FloatValues[i];
3368 params[i] = gl::iround<GLint>(currentValue);
daniel@transgaming.come0078962010-04-15 20:45:08 +00003369 }
3370 }
Geoff Langbfdea662014-07-23 14:16:32 -04003371 else
3372 {
3373 *params = gl::QuerySingleVertexAttributeParameter<GLint>(attribState, pname);
3374 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003375 }
3376}
3377
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003378void __stdcall glGetVertexAttribPointerv(GLuint index, GLenum pname, GLvoid** pointer)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003379{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003380 EVENT("(GLuint index = %d, GLenum pname = 0x%X, GLvoid** pointer = 0x%0.8p)", index, pname, pointer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003381
Geoff Langbfdea662014-07-23 14:16:32 -04003382 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003383 if (context)
3384 {
3385 if (index >= gl::MAX_VERTEX_ATTRIBS)
daniel@transgaming.come0078962010-04-15 20:45:08 +00003386 {
Geoff Langb1196682014-07-23 13:47:29 -04003387 context->recordError(gl::Error(GL_INVALID_VALUE));
3388 return;
daniel@transgaming.come0078962010-04-15 20:45:08 +00003389 }
Geoff Langbfdea662014-07-23 14:16:32 -04003390
3391 if (pname != GL_VERTEX_ATTRIB_ARRAY_POINTER)
3392 {
Geoff Langb1196682014-07-23 13:47:29 -04003393 context->recordError(gl::Error(GL_INVALID_ENUM));
3394 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003395 }
3396
3397 *pointer = const_cast<GLvoid*>(context->getState().getVertexAttribPointer(index));
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003398 }
3399}
3400
3401void __stdcall glHint(GLenum target, GLenum mode)
3402{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003403 EVENT("(GLenum target = 0x%X, GLenum mode = 0x%X)", target, mode);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003404
Geoff Langbfdea662014-07-23 14:16:32 -04003405 gl::Context *context = gl::getNonLostContext();
Geoff Langb1196682014-07-23 13:47:29 -04003406 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003407 {
Geoff Langb1196682014-07-23 13:47:29 -04003408 switch (mode)
3409 {
3410 case GL_FASTEST:
3411 case GL_NICEST:
3412 case GL_DONT_CARE:
3413 break;
3414
3415 default:
3416 context->recordError(gl::Error(GL_INVALID_ENUM));
3417 return;
3418 }
3419
3420 switch (target)
3421 {
3422 case GL_GENERATE_MIPMAP_HINT:
3423 context->getState().setGenerateMipmapHint(mode);
3424 break;
3425
3426 case GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES:
3427 context->getState().setFragmentShaderDerivativeHint(mode);
3428 break;
3429
3430 default:
3431 context->recordError(gl::Error(GL_INVALID_ENUM));
3432 return;
3433 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003434 }
3435}
3436
3437GLboolean __stdcall glIsBuffer(GLuint buffer)
3438{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003439 EVENT("(GLuint buffer = %d)", buffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003440
Geoff Langbfdea662014-07-23 14:16:32 -04003441 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003442 if (context && buffer)
3443 {
3444 gl::Buffer *bufferObject = context->getBuffer(buffer);
3445
3446 if (bufferObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003447 {
Geoff Langbfdea662014-07-23 14:16:32 -04003448 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003449 }
3450 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003451
3452 return GL_FALSE;
3453}
3454
3455GLboolean __stdcall glIsEnabled(GLenum cap)
3456{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003457 EVENT("(GLenum cap = 0x%X)", cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003458
Geoff Langbfdea662014-07-23 14:16:32 -04003459 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003460 if (context)
3461 {
3462 if (!ValidCap(context, cap))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003463 {
Geoff Langb1196682014-07-23 13:47:29 -04003464 context->recordError(gl::Error(GL_INVALID_ENUM));
3465 return GL_FALSE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003466 }
Geoff Langbfdea662014-07-23 14:16:32 -04003467
3468 return context->getState().getEnableFeature(cap);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003469 }
3470
3471 return false;
3472}
3473
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003474GLboolean __stdcall glIsFenceNV(GLuint fence)
3475{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003476 EVENT("(GLuint fence = %d)", fence);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003477
Geoff Langbfdea662014-07-23 14:16:32 -04003478 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003479 if (context)
3480 {
3481 gl::FenceNV *fenceObject = context->getFenceNV(fence);
3482
3483 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003484 {
Geoff Langbfdea662014-07-23 14:16:32 -04003485 return GL_FALSE;
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003486 }
Geoff Langbfdea662014-07-23 14:16:32 -04003487
3488 return fenceObject->isFence();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003489 }
3490
3491 return GL_FALSE;
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003492}
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003493
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003494GLboolean __stdcall glIsFramebuffer(GLuint framebuffer)
3495{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003496 EVENT("(GLuint framebuffer = %d)", framebuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003497
Geoff Langbfdea662014-07-23 14:16:32 -04003498 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003499 if (context && framebuffer)
3500 {
3501 gl::Framebuffer *framebufferObject = context->getFramebuffer(framebuffer);
3502
3503 if (framebufferObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003504 {
Geoff Langbfdea662014-07-23 14:16:32 -04003505 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003506 }
3507 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003508
3509 return GL_FALSE;
3510}
3511
3512GLboolean __stdcall glIsProgram(GLuint program)
3513{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003514 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003515
Geoff Langbfdea662014-07-23 14:16:32 -04003516 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003517 if (context && program)
3518 {
3519 gl::Program *programObject = context->getProgram(program);
3520
3521 if (programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003522 {
Geoff Langbfdea662014-07-23 14:16:32 -04003523 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003524 }
3525 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003526
3527 return GL_FALSE;
3528}
3529
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00003530GLboolean __stdcall glIsQueryEXT(GLuint id)
3531{
3532 EVENT("(GLuint id = %d)", id);
3533
Geoff Langbfdea662014-07-23 14:16:32 -04003534 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003535 if (context)
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00003536 {
Geoff Langbfdea662014-07-23 14:16:32 -04003537 return (context->getQuery(id, false, GL_NONE) != NULL) ? GL_TRUE : GL_FALSE;
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00003538 }
3539
3540 return GL_FALSE;
3541}
3542
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003543GLboolean __stdcall glIsRenderbuffer(GLuint renderbuffer)
3544{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003545 EVENT("(GLuint renderbuffer = %d)", renderbuffer);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003546
Geoff Langbfdea662014-07-23 14:16:32 -04003547 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003548 if (context && renderbuffer)
3549 {
3550 gl::Renderbuffer *renderbufferObject = context->getRenderbuffer(renderbuffer);
3551
3552 if (renderbufferObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003553 {
Geoff Langbfdea662014-07-23 14:16:32 -04003554 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003555 }
3556 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003557
3558 return GL_FALSE;
3559}
3560
3561GLboolean __stdcall glIsShader(GLuint shader)
3562{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003563 EVENT("(GLuint shader = %d)", shader);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003564
Geoff Langbfdea662014-07-23 14:16:32 -04003565 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003566 if (context && shader)
3567 {
3568 gl::Shader *shaderObject = context->getShader(shader);
3569
3570 if (shaderObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003571 {
Geoff Langbfdea662014-07-23 14:16:32 -04003572 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003573 }
3574 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003575
3576 return GL_FALSE;
3577}
3578
3579GLboolean __stdcall glIsTexture(GLuint texture)
3580{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003581 EVENT("(GLuint texture = %d)", texture);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003582
Geoff Langbfdea662014-07-23 14:16:32 -04003583 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003584 if (context && texture)
3585 {
3586 gl::Texture *textureObject = context->getTexture(texture);
3587
3588 if (textureObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003589 {
Geoff Langbfdea662014-07-23 14:16:32 -04003590 return GL_TRUE;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003591 }
3592 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003593
3594 return GL_FALSE;
3595}
3596
3597void __stdcall glLineWidth(GLfloat width)
3598{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003599 EVENT("(GLfloat width = %f)", width);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003600
Geoff Langbfdea662014-07-23 14:16:32 -04003601 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003602 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003603 {
Geoff Langb1196682014-07-23 13:47:29 -04003604 if (width <= 0.0f)
3605 {
3606 context->recordError(gl::Error(GL_INVALID_VALUE));
3607 return;
3608 }
3609
Geoff Langbfdea662014-07-23 14:16:32 -04003610 context->getState().setLineWidth(width);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003611 }
3612}
3613
3614void __stdcall glLinkProgram(GLuint program)
3615{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003616 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003617
Geoff Langbfdea662014-07-23 14:16:32 -04003618 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003619 if (context)
3620 {
3621 gl::Program *programObject = context->getProgram(program);
3622
3623 if (!programObject)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003624 {
Geoff Langbfdea662014-07-23 14:16:32 -04003625 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003626 {
Geoff Langb1196682014-07-23 13:47:29 -04003627 context->recordError(gl::Error(GL_INVALID_OPERATION));
3628 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003629 }
Geoff Langbfdea662014-07-23 14:16:32 -04003630 else
3631 {
Geoff Langb1196682014-07-23 13:47:29 -04003632 context->recordError(gl::Error(GL_INVALID_VALUE));
3633 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003634 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003635 }
Geoff Langbfdea662014-07-23 14:16:32 -04003636
3637 context->linkProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003638 }
3639}
3640
3641void __stdcall glPixelStorei(GLenum pname, GLint param)
3642{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003643 EVENT("(GLenum pname = 0x%X, GLint param = %d)", pname, param);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003644
Geoff Langbfdea662014-07-23 14:16:32 -04003645 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003646 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003647 {
Geoff Langbfdea662014-07-23 14:16:32 -04003648 switch (pname)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003649 {
Geoff Langbfdea662014-07-23 14:16:32 -04003650 case GL_UNPACK_ALIGNMENT:
3651 if (param != 1 && param != 2 && param != 4 && param != 8)
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003652 {
Geoff Langb1196682014-07-23 13:47:29 -04003653 context->recordError(gl::Error(GL_INVALID_VALUE));
3654 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003655 }
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003656
Geoff Langbfdea662014-07-23 14:16:32 -04003657 context->getState().setUnpackAlignment(param);
3658 break;
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003659
Geoff Langbfdea662014-07-23 14:16:32 -04003660 case GL_PACK_ALIGNMENT:
3661 if (param != 1 && param != 2 && param != 4 && param != 8)
3662 {
Geoff Langb1196682014-07-23 13:47:29 -04003663 context->recordError(gl::Error(GL_INVALID_VALUE));
3664 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003665 }
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003666
Geoff Langbfdea662014-07-23 14:16:32 -04003667 context->getState().setPackAlignment(param);
3668 break;
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003669
Geoff Langbfdea662014-07-23 14:16:32 -04003670 case GL_PACK_REVERSE_ROW_ORDER_ANGLE:
3671 context->getState().setPackReverseRowOrder(param != 0);
3672 break;
bsalomon@google.com56d46ab2011-11-23 14:53:10 +00003673
Geoff Langbfdea662014-07-23 14:16:32 -04003674 case GL_UNPACK_IMAGE_HEIGHT:
3675 case GL_UNPACK_SKIP_IMAGES:
3676 case GL_UNPACK_ROW_LENGTH:
3677 case GL_UNPACK_SKIP_ROWS:
3678 case GL_UNPACK_SKIP_PIXELS:
3679 case GL_PACK_ROW_LENGTH:
3680 case GL_PACK_SKIP_ROWS:
3681 case GL_PACK_SKIP_PIXELS:
3682 if (context->getClientVersion() < 3)
3683 {
Geoff Langb1196682014-07-23 13:47:29 -04003684 context->recordError(gl::Error(GL_INVALID_ENUM));
3685 return;
daniel@transgaming.com3489e3a2010-03-21 04:31:11 +00003686 }
Geoff Langbfdea662014-07-23 14:16:32 -04003687 UNIMPLEMENTED();
3688 break;
3689
3690 default:
Geoff Langb1196682014-07-23 13:47:29 -04003691 context->recordError(gl::Error(GL_INVALID_ENUM));
3692 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003693 }
3694 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003695}
3696
3697void __stdcall glPolygonOffset(GLfloat factor, GLfloat units)
3698{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003699 EVENT("(GLfloat factor = %f, GLfloat units = %f)", factor, units);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003700
Geoff Langbfdea662014-07-23 14:16:32 -04003701 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003702 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003703 {
Geoff Langbfdea662014-07-23 14:16:32 -04003704 context->getState().setPolygonOffsetParams(factor, units);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003705 }
3706}
3707
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003708void __stdcall glReadnPixelsEXT(GLint x, GLint y, GLsizei width, GLsizei height,
3709 GLenum format, GLenum type, GLsizei bufSize,
3710 GLvoid *data)
3711{
3712 EVENT("(GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d, "
3713 "GLenum format = 0x%X, GLenum type = 0x%X, GLsizei bufSize = 0x%d, GLvoid *data = 0x%0.8p)",
3714 x, y, width, height, format, type, bufSize, data);
3715
Geoff Langbfdea662014-07-23 14:16:32 -04003716 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003717 if (context)
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003718 {
Geoff Langb1196682014-07-23 13:47:29 -04003719 if (width < 0 || height < 0 || bufSize < 0)
3720 {
3721 context->recordError(gl::Error(GL_INVALID_VALUE));
3722 return;
3723 }
3724
Geoff Langbfdea662014-07-23 14:16:32 -04003725 if (!gl::ValidateReadPixelsParameters(context, x, y, width, height,
3726 format, type, &bufSize, data))
3727 {
3728 return;
3729 }
3730
Geoff Lang63d2fc72014-07-25 14:51:41 -04003731 gl::Error error = context->readPixels(x, y, width, height, format, type, &bufSize, data);
3732 if (error.isError())
3733 {
3734 context->recordError(error);
3735 return;
3736 }
daniel@transgaming.comb7915a52011-11-12 03:14:20 +00003737 }
3738}
3739
3740void __stdcall glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
3741 GLenum format, GLenum type, GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003742{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003743 EVENT("(GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003744 "GLenum format = 0x%X, GLenum type = 0x%X, GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00003745 x, y, width, height, format, type, pixels);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003746
Geoff Langbfdea662014-07-23 14:16:32 -04003747 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003748 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003749 {
Geoff Langb1196682014-07-23 13:47:29 -04003750 if (width < 0 || height < 0)
3751 {
3752 context->recordError(gl::Error(GL_INVALID_VALUE));
3753 return;
3754 }
3755
Geoff Langbfdea662014-07-23 14:16:32 -04003756 if (!gl::ValidateReadPixelsParameters(context, x, y, width, height,
3757 format, type, NULL, pixels))
3758 {
3759 return;
3760 }
3761
Geoff Lang63d2fc72014-07-25 14:51:41 -04003762 gl::Error error = context->readPixels(x, y, width, height, format, type, NULL, pixels);
3763 if (error.isError())
3764 {
3765 context->recordError(error);
3766 return;
3767 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003768 }
3769}
3770
3771void __stdcall glReleaseShaderCompiler(void)
3772{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003773 EVENT("()");
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003774
Brandon Jonesf05cdee2014-08-27 15:24:07 -07003775 gl::Context *context = gl::getNonLostContext();
3776
3777 if (context)
3778 {
3779 context->releaseShaderCompiler();
3780 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003781}
3782
daniel@transgaming.com1f135d82010-08-24 19:20:36 +00003783void __stdcall glRenderbufferStorageMultisampleANGLE(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003784{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003785 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 +00003786 target, samples, internalformat, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003787
Geoff Langbfdea662014-07-23 14:16:32 -04003788 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003789 if (context)
3790 {
3791 if (!ValidateRenderbufferStorageParameters(context, target, samples, internalformat,
3792 width, height, true))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003793 {
Geoff Langbfdea662014-07-23 14:16:32 -04003794 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003795 }
Geoff Langbfdea662014-07-23 14:16:32 -04003796
3797 context->setRenderbufferStorage(width, height, internalformat, samples);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003798 }
3799}
3800
daniel@transgaming.com1f135d82010-08-24 19:20:36 +00003801void __stdcall glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height)
3802{
3803 glRenderbufferStorageMultisampleANGLE(target, 0, internalformat, width, height);
3804}
3805
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003806void __stdcall glSampleCoverage(GLclampf value, GLboolean invert)
3807{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00003808 EVENT("(GLclampf value = %f, GLboolean invert = %u)", value, invert);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003809
Geoff Langbfdea662014-07-23 14:16:32 -04003810 gl::Context* context = gl::getNonLostContext();
daniel@transgaming.comfab5a1a2010-03-11 19:22:30 +00003811
Geoff Langbfdea662014-07-23 14:16:32 -04003812 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003813 {
Geoff Langbfdea662014-07-23 14:16:32 -04003814 context->getState().setSampleCoverageParams(gl::clamp01(value), invert == GL_TRUE);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003815 }
3816}
3817
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003818void __stdcall glSetFenceNV(GLuint fence, GLenum condition)
3819{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003820 EVENT("(GLuint fence = %d, GLenum condition = 0x%X)", fence, condition);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003821
Geoff Langbfdea662014-07-23 14:16:32 -04003822 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003823 if (context)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003824 {
Geoff Langb1196682014-07-23 13:47:29 -04003825 if (condition != GL_ALL_COMPLETED_NV)
3826 {
3827 context->recordError(gl::Error(GL_INVALID_ENUM));
3828 return;
3829 }
3830
Geoff Langbfdea662014-07-23 14:16:32 -04003831 gl::FenceNV *fenceObject = context->getFenceNV(fence);
3832
3833 if (fenceObject == NULL)
3834 {
Geoff Langb1196682014-07-23 13:47:29 -04003835 context->recordError(gl::Error(GL_INVALID_OPERATION));
3836 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003837 }
3838
3839 fenceObject->setFence(condition);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003840 }
daniel@transgaming.comfe208882010-09-01 15:47:57 +00003841}
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00003842
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003843void __stdcall glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
3844{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003845 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 +00003846
Geoff Langbfdea662014-07-23 14:16:32 -04003847 gl::Context* context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003848 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003849 {
Geoff Langb1196682014-07-23 13:47:29 -04003850 if (width < 0 || height < 0)
3851 {
3852 context->recordError(gl::Error(GL_INVALID_VALUE));
3853 return;
3854 }
3855
Geoff Langbfdea662014-07-23 14:16:32 -04003856 context->getState().setScissorParams(x, y, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003857 }
3858}
3859
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003860void __stdcall glShaderBinary(GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003861{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003862 EVENT("(GLsizei n = %d, const GLuint* shaders = 0x%0.8p, GLenum binaryformat = 0x%X, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00003863 "const GLvoid* binary = 0x%0.8p, GLsizei length = %d)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00003864 n, shaders, binaryformat, binary, length);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003865
Geoff Lang900013c2014-07-07 11:32:19 -04003866 gl::Context* context = gl::getNonLostContext();
3867 if (context)
3868 {
3869 const std::vector<GLenum> &shaderBinaryFormats = context->getCaps().shaderBinaryFormats;
3870 if (std::find(shaderBinaryFormats.begin(), shaderBinaryFormats.end(), binaryformat) == shaderBinaryFormats.end())
3871 {
Geoff Langb1196682014-07-23 13:47:29 -04003872 context->recordError(gl::Error(GL_INVALID_ENUM));
3873 return;
Geoff Lang900013c2014-07-07 11:32:19 -04003874 }
3875
3876 // No binary shader formats are supported.
3877 UNIMPLEMENTED();
3878 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003879}
3880
shannon.woods%transgaming.com@gtempaccount.com5f339332013-04-13 03:29:02 +00003881void __stdcall glShaderSource(GLuint shader, GLsizei count, const GLchar* const* string, const GLint* length)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003882{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003883 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 +00003884 shader, count, string, length);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003885
Geoff Langbfdea662014-07-23 14:16:32 -04003886 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003887 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003888 {
Geoff Langb1196682014-07-23 13:47:29 -04003889 if (count < 0)
3890 {
3891 context->recordError(gl::Error(GL_INVALID_VALUE));
3892 return;
3893 }
3894
Geoff Langbfdea662014-07-23 14:16:32 -04003895 gl::Shader *shaderObject = context->getShader(shader);
3896
3897 if (!shaderObject)
3898 {
3899 if (context->getProgram(shader))
3900 {
Geoff Langb1196682014-07-23 13:47:29 -04003901 context->recordError(gl::Error(GL_INVALID_OPERATION));
3902 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003903 }
3904 else
3905 {
Geoff Langb1196682014-07-23 13:47:29 -04003906 context->recordError(gl::Error(GL_INVALID_VALUE));
3907 return;
Geoff Langbfdea662014-07-23 14:16:32 -04003908 }
3909 }
3910
3911 shaderObject->setSource(count, string, length);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003912 }
3913}
3914
3915void __stdcall glStencilFunc(GLenum func, GLint ref, GLuint mask)
3916{
daniel@transgaming.comfab5a1a2010-03-11 19:22:30 +00003917 glStencilFuncSeparate(GL_FRONT_AND_BACK, func, ref, mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003918}
3919
3920void __stdcall glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask)
3921{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003922 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 +00003923
Geoff Langbfdea662014-07-23 14:16:32 -04003924 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003925 if (context)
3926 {
Geoff Langb1196682014-07-23 13:47:29 -04003927 switch (face)
3928 {
3929 case GL_FRONT:
3930 case GL_BACK:
3931 case GL_FRONT_AND_BACK:
3932 break;
3933
3934 default:
3935 context->recordError(gl::Error(GL_INVALID_ENUM));
3936 return;
3937 }
3938
3939 switch (func)
3940 {
3941 case GL_NEVER:
3942 case GL_ALWAYS:
3943 case GL_LESS:
3944 case GL_LEQUAL:
3945 case GL_EQUAL:
3946 case GL_GEQUAL:
3947 case GL_GREATER:
3948 case GL_NOTEQUAL:
3949 break;
3950
3951 default:
3952 context->recordError(gl::Error(GL_INVALID_ENUM));
3953 return;
3954 }
3955
Geoff Langbfdea662014-07-23 14:16:32 -04003956 if (face == GL_FRONT || face == GL_FRONT_AND_BACK)
3957 {
3958 context->getState().setStencilParams(func, ref, mask);
3959 }
3960
3961 if (face == GL_BACK || face == GL_FRONT_AND_BACK)
3962 {
3963 context->getState().setStencilBackParams(func, ref, mask);
3964 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003965 }
3966}
3967
3968void __stdcall glStencilMask(GLuint mask)
3969{
3970 glStencilMaskSeparate(GL_FRONT_AND_BACK, mask);
3971}
3972
3973void __stdcall glStencilMaskSeparate(GLenum face, GLuint mask)
3974{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00003975 EVENT("(GLenum face = 0x%X, GLuint mask = %d)", face, mask);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003976
Geoff Langbfdea662014-07-23 14:16:32 -04003977 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04003978 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00003979 {
Geoff Langb1196682014-07-23 13:47:29 -04003980 switch (face)
3981 {
3982 case GL_FRONT:
3983 case GL_BACK:
3984 case GL_FRONT_AND_BACK:
3985 break;
3986
3987 default:
3988 context->recordError(gl::Error(GL_INVALID_ENUM));
3989 return;
3990 }
3991
Geoff Langbfdea662014-07-23 14:16:32 -04003992 if (face == GL_FRONT || face == GL_FRONT_AND_BACK)
3993 {
3994 context->getState().setStencilWritemask(mask);
3995 }
3996
3997 if (face == GL_BACK || face == GL_FRONT_AND_BACK)
3998 {
3999 context->getState().setStencilBackWritemask(mask);
4000 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004001 }
4002}
4003
4004void __stdcall glStencilOp(GLenum fail, GLenum zfail, GLenum zpass)
4005{
4006 glStencilOpSeparate(GL_FRONT_AND_BACK, fail, zfail, zpass);
4007}
4008
4009void __stdcall glStencilOpSeparate(GLenum face, GLenum fail, GLenum zfail, GLenum zpass)
4010{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004011 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 +00004012 face, fail, zfail, zpass);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004013
Geoff Langbfdea662014-07-23 14:16:32 -04004014 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004015 if (context)
4016 {
Geoff Langb1196682014-07-23 13:47:29 -04004017 switch (face)
4018 {
4019 case GL_FRONT:
4020 case GL_BACK:
4021 case GL_FRONT_AND_BACK:
4022 break;
4023
4024 default:
4025 context->recordError(gl::Error(GL_INVALID_ENUM));
4026 return;
4027 }
4028
4029 switch (fail)
4030 {
4031 case GL_ZERO:
4032 case GL_KEEP:
4033 case GL_REPLACE:
4034 case GL_INCR:
4035 case GL_DECR:
4036 case GL_INVERT:
4037 case GL_INCR_WRAP:
4038 case GL_DECR_WRAP:
4039 break;
4040
4041 default:
4042 context->recordError(gl::Error(GL_INVALID_ENUM));
4043 return;
4044 }
4045
4046 switch (zfail)
4047 {
4048 case GL_ZERO:
4049 case GL_KEEP:
4050 case GL_REPLACE:
4051 case GL_INCR:
4052 case GL_DECR:
4053 case GL_INVERT:
4054 case GL_INCR_WRAP:
4055 case GL_DECR_WRAP:
4056 break;
4057
4058 default:
4059 context->recordError(gl::Error(GL_INVALID_ENUM));
4060 return;
4061 }
4062
4063 switch (zpass)
4064 {
4065 case GL_ZERO:
4066 case GL_KEEP:
4067 case GL_REPLACE:
4068 case GL_INCR:
4069 case GL_DECR:
4070 case GL_INVERT:
4071 case GL_INCR_WRAP:
4072 case GL_DECR_WRAP:
4073 break;
4074
4075 default:
4076 context->recordError(gl::Error(GL_INVALID_ENUM));
4077 return;
4078 }
4079
Geoff Langbfdea662014-07-23 14:16:32 -04004080 if (face == GL_FRONT || face == GL_FRONT_AND_BACK)
4081 {
4082 context->getState().setStencilOperations(fail, zfail, zpass);
4083 }
4084
4085 if (face == GL_BACK || face == GL_FRONT_AND_BACK)
4086 {
4087 context->getState().setStencilBackOperations(fail, zfail, zpass);
4088 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004089 }
4090}
4091
daniel@transgaming.comfe208882010-09-01 15:47:57 +00004092GLboolean __stdcall glTestFenceNV(GLuint fence)
4093{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004094 EVENT("(GLuint fence = %d)", fence);
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00004095
Geoff Langbfdea662014-07-23 14:16:32 -04004096 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004097 if (context)
4098 {
4099 gl::FenceNV *fenceObject = context->getFenceNV(fence);
4100
4101 if (fenceObject == NULL)
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00004102 {
Geoff Langb1196682014-07-23 13:47:29 -04004103 context->recordError(gl::Error(GL_INVALID_OPERATION));
4104 return GL_TRUE;
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00004105 }
Geoff Langbfdea662014-07-23 14:16:32 -04004106
4107 if (fenceObject->isFence() != GL_TRUE)
4108 {
Geoff Langb1196682014-07-23 13:47:29 -04004109 context->recordError(gl::Error(GL_INVALID_OPERATION));
4110 return GL_TRUE;
Geoff Langbfdea662014-07-23 14:16:32 -04004111 }
4112
4113 return fenceObject->testFence();
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00004114 }
Geoff Langbfdea662014-07-23 14:16:32 -04004115
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00004116 return GL_TRUE;
daniel@transgaming.comfe208882010-09-01 15:47:57 +00004117}
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00004118
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00004119void __stdcall glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height,
4120 GLint border, GLenum format, GLenum type, const GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004121{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004122 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint internalformat = %d, GLsizei width = %d, GLsizei height = %d, "
Jamie Madill1fc7e2c2014-01-21 16:47:10 -05004123 "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 +00004124 target, level, internalformat, width, height, border, format, type, pixels);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004125
Geoff Langbfdea662014-07-23 14:16:32 -04004126 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004127 if (context)
4128 {
4129 if (context->getClientVersion() < 3 &&
4130 !ValidateES2TexImageParameters(context, target, level, internalformat, false, false,
4131 0, 0, width, height, border, format, type, pixels))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004132 {
Geoff Langbfdea662014-07-23 14:16:32 -04004133 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004134 }
Geoff Langbfdea662014-07-23 14:16:32 -04004135
4136 if (context->getClientVersion() >= 3 &&
4137 !ValidateES3TexImageParameters(context, target, level, internalformat, false, false,
4138 0, 0, 0, width, height, 1, border, format, type, pixels))
4139 {
4140 return;
4141 }
4142
4143 switch (target)
4144 {
4145 case GL_TEXTURE_2D:
4146 {
4147 gl::Texture2D *texture = context->getTexture2D();
4148 texture->setImage(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
4149 }
4150 break;
4151 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
4152 {
4153 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4154 texture->setImagePosX(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
4155 }
4156 break;
4157 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
4158 {
4159 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4160 texture->setImageNegX(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
4161 }
4162 break;
4163 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
4164 {
4165 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4166 texture->setImagePosY(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
4167 }
4168 break;
4169 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
4170 {
4171 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4172 texture->setImageNegY(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
4173 }
4174 break;
4175 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
4176 {
4177 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4178 texture->setImagePosZ(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
4179 }
4180 break;
4181 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
4182 {
4183 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4184 texture->setImageNegZ(level, width, height, internalformat, format, type, context->getState().getUnpackState(), pixels);
4185 }
4186 break;
4187 default: UNREACHABLE();
4188 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004189 }
4190}
4191
4192void __stdcall glTexParameterf(GLenum target, GLenum pname, GLfloat param)
4193{
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004194 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint param = %f)", target, pname, param);
4195
Geoff Langbfdea662014-07-23 14:16:32 -04004196 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004197 if (context)
4198 {
4199 if (!ValidateTexParamParameters(context, pname, static_cast<GLint>(param)))
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004200 {
Geoff Langbfdea662014-07-23 14:16:32 -04004201 return;
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004202 }
Geoff Langbfdea662014-07-23 14:16:32 -04004203
4204 gl::Texture *texture = context->getTargetTexture(target);
4205
4206 if (!texture)
4207 {
Geoff Langb1196682014-07-23 13:47:29 -04004208 context->recordError(gl::Error(GL_INVALID_ENUM));
4209 return;
Geoff Langbfdea662014-07-23 14:16:32 -04004210 }
4211
4212 switch (pname)
4213 {
4214 case GL_TEXTURE_WRAP_S: texture->getSamplerState().wrapS = gl::uiround<GLenum>(param); break;
4215 case GL_TEXTURE_WRAP_T: texture->getSamplerState().wrapT = gl::uiround<GLenum>(param); break;
4216 case GL_TEXTURE_WRAP_R: texture->getSamplerState().wrapR = gl::uiround<GLenum>(param); break;
4217 case GL_TEXTURE_MIN_FILTER: texture->getSamplerState().minFilter = gl::uiround<GLenum>(param); break;
4218 case GL_TEXTURE_MAG_FILTER: texture->getSamplerState().magFilter = gl::uiround<GLenum>(param); break;
4219 case GL_TEXTURE_USAGE_ANGLE: texture->setUsage(gl::uiround<GLenum>(param)); break;
4220 case GL_TEXTURE_MAX_ANISOTROPY_EXT: texture->getSamplerState().maxAnisotropy = std::min(param, context->getExtensions().maxTextureAnisotropy); break;
4221 case GL_TEXTURE_COMPARE_MODE: texture->getSamplerState().compareMode = gl::uiround<GLenum>(param); break;
4222 case GL_TEXTURE_COMPARE_FUNC: texture->getSamplerState().compareFunc = gl::uiround<GLenum>(param); break;
4223 case GL_TEXTURE_SWIZZLE_R: texture->getSamplerState().swizzleRed = gl::uiround<GLenum>(param); break;
4224 case GL_TEXTURE_SWIZZLE_G: texture->getSamplerState().swizzleGreen = gl::uiround<GLenum>(param); break;
4225 case GL_TEXTURE_SWIZZLE_B: texture->getSamplerState().swizzleBlue = gl::uiround<GLenum>(param); break;
4226 case GL_TEXTURE_SWIZZLE_A: texture->getSamplerState().swizzleAlpha = gl::uiround<GLenum>(param); break;
4227 case GL_TEXTURE_BASE_LEVEL: texture->getSamplerState().baseLevel = gl::iround<GLint>(param); break;
4228 case GL_TEXTURE_MAX_LEVEL: texture->getSamplerState().maxLevel = gl::iround<GLint>(param); break;
4229 case GL_TEXTURE_MIN_LOD: texture->getSamplerState().minLod = param; break;
4230 case GL_TEXTURE_MAX_LOD: texture->getSamplerState().maxLod = param; break;
4231 default: UNREACHABLE(); break;
4232 }
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004233 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004234}
4235
4236void __stdcall glTexParameterfv(GLenum target, GLenum pname, const GLfloat* params)
4237{
daniel@transgaming.com07ab8412012-07-12 15:17:09 +00004238 glTexParameterf(target, pname, (GLfloat)*params);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004239}
4240
4241void __stdcall glTexParameteri(GLenum target, GLenum pname, GLint param)
4242{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004243 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint param = %d)", target, pname, param);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004244
Geoff Langbfdea662014-07-23 14:16:32 -04004245 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004246 if (context)
4247 {
4248 if (!ValidateTexParamParameters(context, pname, param))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004249 {
Geoff Langbfdea662014-07-23 14:16:32 -04004250 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004251 }
Geoff Langbfdea662014-07-23 14:16:32 -04004252
4253 gl::Texture *texture = context->getTargetTexture(target);
4254
4255 if (!texture)
4256 {
Geoff Langb1196682014-07-23 13:47:29 -04004257 context->recordError(gl::Error(GL_INVALID_ENUM));
4258 return;
Geoff Langbfdea662014-07-23 14:16:32 -04004259 }
4260
4261 switch (pname)
4262 {
4263 case GL_TEXTURE_WRAP_S: texture->getSamplerState().wrapS = (GLenum)param; break;
4264 case GL_TEXTURE_WRAP_T: texture->getSamplerState().wrapT = (GLenum)param; break;
4265 case GL_TEXTURE_WRAP_R: texture->getSamplerState().wrapR = (GLenum)param; break;
4266 case GL_TEXTURE_MIN_FILTER: texture->getSamplerState().minFilter = (GLenum)param; break;
4267 case GL_TEXTURE_MAG_FILTER: texture->getSamplerState().magFilter = (GLenum)param; break;
4268 case GL_TEXTURE_USAGE_ANGLE: texture->setUsage((GLenum)param); break;
4269 case GL_TEXTURE_MAX_ANISOTROPY_EXT: texture->getSamplerState().maxAnisotropy = std::min((float)param, context->getExtensions().maxTextureAnisotropy); break;
4270 case GL_TEXTURE_COMPARE_MODE: texture->getSamplerState().compareMode = (GLenum)param; break;
4271 case GL_TEXTURE_COMPARE_FUNC: texture->getSamplerState().compareFunc = (GLenum)param; break;
4272 case GL_TEXTURE_SWIZZLE_R: texture->getSamplerState().swizzleRed = (GLenum)param; break;
4273 case GL_TEXTURE_SWIZZLE_G: texture->getSamplerState().swizzleGreen = (GLenum)param; break;
4274 case GL_TEXTURE_SWIZZLE_B: texture->getSamplerState().swizzleBlue = (GLenum)param; break;
4275 case GL_TEXTURE_SWIZZLE_A: texture->getSamplerState().swizzleAlpha = (GLenum)param; break;
4276 case GL_TEXTURE_BASE_LEVEL: texture->getSamplerState().baseLevel = param; break;
4277 case GL_TEXTURE_MAX_LEVEL: texture->getSamplerState().maxLevel = param; break;
4278 case GL_TEXTURE_MIN_LOD: texture->getSamplerState().minLod = (GLfloat)param; break;
4279 case GL_TEXTURE_MAX_LOD: texture->getSamplerState().maxLod = (GLfloat)param; break;
4280 default: UNREACHABLE(); break;
4281 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004282 }
4283}
4284
4285void __stdcall glTexParameteriv(GLenum target, GLenum pname, const GLint* params)
4286{
4287 glTexParameteri(target, pname, *params);
4288}
4289
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004290void __stdcall glTexStorage2DEXT(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
4291{
4292 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
4293 target, levels, internalformat, width, height);
4294
Geoff Langbfdea662014-07-23 14:16:32 -04004295 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004296 if (context)
4297 {
4298 if (!context->getExtensions().textureStorage)
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004299 {
Geoff Langb1196682014-07-23 13:47:29 -04004300 context->recordError(gl::Error(GL_INVALID_OPERATION));
4301 return;
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004302 }
Geoff Langbfdea662014-07-23 14:16:32 -04004303
4304 if (context->getClientVersion() < 3 &&
4305 !ValidateES2TexStorageParameters(context, target, levels, internalformat, width, height))
4306 {
4307 return;
4308 }
4309
4310 if (context->getClientVersion() >= 3 &&
4311 !ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, 1))
4312 {
4313 return;
4314 }
4315
4316 switch (target)
4317 {
4318 case GL_TEXTURE_2D:
4319 {
4320 gl::Texture2D *texture2d = context->getTexture2D();
4321 texture2d->storage(levels, internalformat, width, height);
4322 }
4323 break;
4324
4325 case GL_TEXTURE_CUBE_MAP:
4326 {
4327 gl::TextureCubeMap *textureCube = context->getTextureCubeMap();
4328 textureCube->storage(levels, internalformat, width);
4329 }
4330 break;
4331
4332 default:
Geoff Langb1196682014-07-23 13:47:29 -04004333 context->recordError(gl::Error(GL_INVALID_ENUM));
4334 return;
Geoff Langbfdea662014-07-23 14:16:32 -04004335 }
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00004336 }
4337}
4338
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00004339void __stdcall glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height,
4340 GLenum format, GLenum type, const GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004341{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004342 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004343 "GLsizei width = %d, GLsizei height = %d, GLenum format = 0x%X, GLenum type = 0x%X, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00004344 "const GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004345 target, level, xoffset, yoffset, width, height, format, type, pixels);
4346
Geoff Langbfdea662014-07-23 14:16:32 -04004347 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004348 if (context)
4349 {
4350 if (context->getClientVersion() < 3 &&
4351 !ValidateES2TexImageParameters(context, target, level, GL_NONE, false, true,
4352 xoffset, yoffset, width, height, 0, format, type, pixels))
daniel@transgaming.com00c75962010-03-11 20:36:15 +00004353 {
Geoff Langbfdea662014-07-23 14:16:32 -04004354 return;
daniel@transgaming.com00c75962010-03-11 20:36:15 +00004355 }
Geoff Langbfdea662014-07-23 14:16:32 -04004356
4357 if (context->getClientVersion() >= 3 &&
4358 !ValidateES3TexImageParameters(context, target, level, GL_NONE, false, true,
4359 xoffset, yoffset, 0, width, height, 1, 0, format, type, pixels))
4360 {
4361 return;
4362 }
4363
4364 // Zero sized uploads are valid but no-ops
4365 if (width == 0 || height == 0)
4366 {
4367 return;
4368 }
4369
4370 switch (target)
4371 {
4372 case GL_TEXTURE_2D:
4373 {
4374 gl::Texture2D *texture = context->getTexture2D();
4375 texture->subImage(level, xoffset, yoffset, width, height, format, type, context->getState().getUnpackState(), pixels);
4376 }
4377 break;
4378
4379 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
4380 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
4381 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
4382 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
4383 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
4384 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
4385 {
4386 gl::TextureCubeMap *texture = context->getTextureCubeMap();
4387 texture->subImage(target, level, xoffset, yoffset, width, height, format, type, context->getState().getUnpackState(), pixels);
4388 }
4389 break;
4390
4391 default:
4392 UNREACHABLE();
4393 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004394 }
4395}
4396
4397void __stdcall glUniform1f(GLint location, GLfloat x)
4398{
4399 glUniform1fv(location, 1, &x);
4400}
4401
4402void __stdcall glUniform1fv(GLint location, GLsizei count, const GLfloat* v)
4403{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004404 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004405
Geoff Langbfdea662014-07-23 14:16:32 -04004406 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004407 if (context)
4408 {
4409 if (!ValidateUniform(context, GL_FLOAT, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004410 {
Geoff Langbfdea662014-07-23 14:16:32 -04004411 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004412 }
Geoff Langbfdea662014-07-23 14:16:32 -04004413
4414 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4415 programBinary->setUniform1fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004416 }
4417}
4418
4419void __stdcall glUniform1i(GLint location, GLint x)
4420{
4421 glUniform1iv(location, 1, &x);
4422}
4423
4424void __stdcall glUniform1iv(GLint location, GLsizei count, const GLint* v)
4425{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004426 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004427
Geoff Langbfdea662014-07-23 14:16:32 -04004428 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004429 if (context)
4430 {
4431 if (!ValidateUniform(context, GL_INT, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004432 {
Geoff Langbfdea662014-07-23 14:16:32 -04004433 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004434 }
Geoff Langbfdea662014-07-23 14:16:32 -04004435
4436 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4437 programBinary->setUniform1iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004438 }
4439}
4440
4441void __stdcall glUniform2f(GLint location, GLfloat x, GLfloat y)
4442{
4443 GLfloat xy[2] = {x, y};
4444
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004445 glUniform2fv(location, 1, xy);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004446}
4447
4448void __stdcall glUniform2fv(GLint location, GLsizei count, const GLfloat* v)
4449{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004450 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004451
Geoff Langbfdea662014-07-23 14:16:32 -04004452 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004453 if (context)
4454 {
4455 if (!ValidateUniform(context, GL_FLOAT_VEC2, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004456 {
Geoff Langbfdea662014-07-23 14:16:32 -04004457 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004458 }
Geoff Langbfdea662014-07-23 14:16:32 -04004459
4460 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4461 programBinary->setUniform2fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004462 }
4463}
4464
4465void __stdcall glUniform2i(GLint location, GLint x, GLint y)
4466{
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004467 GLint xy[2] = {x, y};
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004468
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004469 glUniform2iv(location, 1, xy);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004470}
4471
4472void __stdcall glUniform2iv(GLint location, GLsizei count, const GLint* v)
4473{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004474 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004475
Geoff Langbfdea662014-07-23 14:16:32 -04004476 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004477 if (context)
4478 {
4479 if (!ValidateUniform(context, GL_INT_VEC2, location, count))
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004480 {
Geoff Langbfdea662014-07-23 14:16:32 -04004481 return;
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004482 }
Geoff Langbfdea662014-07-23 14:16:32 -04004483
4484 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4485 programBinary->setUniform2iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004486 }
4487}
4488
4489void __stdcall glUniform3f(GLint location, GLfloat x, GLfloat y, GLfloat z)
4490{
4491 GLfloat xyz[3] = {x, y, z};
4492
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004493 glUniform3fv(location, 1, xyz);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004494}
4495
4496void __stdcall glUniform3fv(GLint location, GLsizei count, const GLfloat* v)
4497{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004498 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004499
Geoff Langbfdea662014-07-23 14:16:32 -04004500 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004501 if (context)
4502 {
4503 if (!ValidateUniform(context, GL_FLOAT_VEC3, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004504 {
Geoff Langbfdea662014-07-23 14:16:32 -04004505 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004506 }
Geoff Langbfdea662014-07-23 14:16:32 -04004507
4508 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4509 programBinary->setUniform3fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004510 }
4511}
4512
4513void __stdcall glUniform3i(GLint location, GLint x, GLint y, GLint z)
4514{
4515 GLint xyz[3] = {x, y, z};
4516
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004517 glUniform3iv(location, 1, xyz);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004518}
4519
4520void __stdcall glUniform3iv(GLint location, GLsizei count, const GLint* v)
4521{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004522 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004523
Geoff Langbfdea662014-07-23 14:16:32 -04004524 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004525 if (context)
4526 {
4527 if (!ValidateUniform(context, GL_INT_VEC3, location, count))
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004528 {
Geoff Langbfdea662014-07-23 14:16:32 -04004529 return;
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004530 }
Geoff Langbfdea662014-07-23 14:16:32 -04004531
4532 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4533 programBinary->setUniform3iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004534 }
4535}
4536
4537void __stdcall glUniform4f(GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
4538{
4539 GLfloat xyzw[4] = {x, y, z, w};
4540
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004541 glUniform4fv(location, 1, xyzw);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004542}
4543
4544void __stdcall glUniform4fv(GLint location, GLsizei count, const GLfloat* v)
4545{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004546 EVENT("(GLint location = %d, GLsizei count = %d, const GLfloat* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004547
Geoff Langbfdea662014-07-23 14:16:32 -04004548 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004549 if (context)
4550 {
4551 if (!ValidateUniform(context, GL_FLOAT_VEC4, location, count))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004552 {
Geoff Langbfdea662014-07-23 14:16:32 -04004553 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004554 }
Geoff Langbfdea662014-07-23 14:16:32 -04004555
4556 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4557 programBinary->setUniform4fv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004558 }
4559}
4560
4561void __stdcall glUniform4i(GLint location, GLint x, GLint y, GLint z, GLint w)
4562{
4563 GLint xyzw[4] = {x, y, z, w};
4564
Geoff Lang3b3ad1f2014-03-05 14:35:01 -05004565 glUniform4iv(location, 1, xyzw);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004566}
4567
4568void __stdcall glUniform4iv(GLint location, GLsizei count, const GLint* v)
4569{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004570 EVENT("(GLint location = %d, GLsizei count = %d, const GLint* v = 0x%0.8p)", location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004571
Geoff Langbfdea662014-07-23 14:16:32 -04004572 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004573 if (context)
4574 {
4575 if (!ValidateUniform(context, GL_INT_VEC4, location, count))
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004576 {
Geoff Langbfdea662014-07-23 14:16:32 -04004577 return;
daniel@transgaming.com9a95e2b2010-04-13 03:26:03 +00004578 }
Geoff Langbfdea662014-07-23 14:16:32 -04004579
4580 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4581 programBinary->setUniform4iv(location, count, v);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004582 }
4583}
4584
4585void __stdcall glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
4586{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004587 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004588 location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004589
Geoff Langbfdea662014-07-23 14:16:32 -04004590 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004591 if (context)
4592 {
4593 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT2, location, count, transpose))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004594 {
Geoff Langbfdea662014-07-23 14:16:32 -04004595 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004596 }
Geoff Langbfdea662014-07-23 14:16:32 -04004597
4598 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4599 programBinary->setUniformMatrix2fv(location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004600 }
4601}
4602
4603void __stdcall glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
4604{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004605 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004606 location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004607
Geoff Langbfdea662014-07-23 14:16:32 -04004608 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004609 if (context)
4610 {
4611 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT3, location, count, transpose))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004612 {
Geoff Langbfdea662014-07-23 14:16:32 -04004613 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004614 }
Geoff Langbfdea662014-07-23 14:16:32 -04004615
4616 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4617 programBinary->setUniformMatrix3fv(location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004618 }
4619}
4620
4621void __stdcall glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
4622{
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004623 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004624 location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004625
Geoff Langbfdea662014-07-23 14:16:32 -04004626 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004627 if (context)
4628 {
4629 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT4, location, count, transpose))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004630 {
Geoff Langbfdea662014-07-23 14:16:32 -04004631 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004632 }
Geoff Langbfdea662014-07-23 14:16:32 -04004633
4634 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
4635 programBinary->setUniformMatrix4fv(location, count, transpose, value);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004636 }
4637}
4638
4639void __stdcall glUseProgram(GLuint program)
4640{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004641 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004642
Geoff Langbfdea662014-07-23 14:16:32 -04004643 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004644 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004645 {
Geoff Langbfdea662014-07-23 14:16:32 -04004646 gl::Program *programObject = context->getProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004647
Geoff Langbfdea662014-07-23 14:16:32 -04004648 if (!programObject && program != 0)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004649 {
Geoff Langbfdea662014-07-23 14:16:32 -04004650 if (context->getShader(program))
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004651 {
Geoff Langb1196682014-07-23 13:47:29 -04004652 context->recordError(gl::Error(GL_INVALID_OPERATION));
4653 return;
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004654 }
Geoff Langbfdea662014-07-23 14:16:32 -04004655 else
4656 {
Geoff Langb1196682014-07-23 13:47:29 -04004657 context->recordError(gl::Error(GL_INVALID_VALUE));
4658 return;
Geoff Langbfdea662014-07-23 14:16:32 -04004659 }
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004660 }
Geoff Langbfdea662014-07-23 14:16:32 -04004661
4662 if (program != 0 && !programObject->isLinked())
4663 {
Geoff Langb1196682014-07-23 13:47:29 -04004664 context->recordError(gl::Error(GL_INVALID_OPERATION));
4665 return;
Geoff Langbfdea662014-07-23 14:16:32 -04004666 }
4667
4668 context->useProgram(program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004669 }
4670}
4671
4672void __stdcall glValidateProgram(GLuint program)
4673{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004674 EVENT("(GLuint program = %d)", program);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004675
Geoff Langbfdea662014-07-23 14:16:32 -04004676 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004677 if (context)
4678 {
4679 gl::Program *programObject = context->getProgram(program);
4680
4681 if (!programObject)
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004682 {
Geoff Langbfdea662014-07-23 14:16:32 -04004683 if (context->getShader(program))
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004684 {
Geoff Langb1196682014-07-23 13:47:29 -04004685 context->recordError(gl::Error(GL_INVALID_OPERATION));
4686 return;
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004687 }
Geoff Langbfdea662014-07-23 14:16:32 -04004688 else
4689 {
Geoff Langb1196682014-07-23 13:47:29 -04004690 context->recordError(gl::Error(GL_INVALID_VALUE));
4691 return;
Geoff Langbfdea662014-07-23 14:16:32 -04004692 }
daniel@transgaming.com86a7a132010-04-29 03:32:32 +00004693 }
Geoff Langbfdea662014-07-23 14:16:32 -04004694
Brandon Jones43a53e22014-08-28 16:23:22 -07004695 programObject->validate(context->getCaps());
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004696 }
4697}
4698
4699void __stdcall glVertexAttrib1f(GLuint index, GLfloat x)
4700{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004701 EVENT("(GLuint index = %d, GLfloat x = %f)", index, x);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004702
Geoff Langbfdea662014-07-23 14:16:32 -04004703 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004704 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004705 {
Geoff Langb1196682014-07-23 13:47:29 -04004706 if (index >= gl::MAX_VERTEX_ATTRIBS)
4707 {
4708 context->recordError(gl::Error(GL_INVALID_VALUE));
4709 return;
4710 }
4711
Geoff Langbfdea662014-07-23 14:16:32 -04004712 GLfloat vals[4] = { x, 0, 0, 1 };
4713 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004714 }
4715}
4716
4717void __stdcall glVertexAttrib1fv(GLuint index, const GLfloat* values)
4718{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004719 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004720
Geoff Langbfdea662014-07-23 14:16:32 -04004721 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004722 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004723 {
Geoff Langb1196682014-07-23 13:47:29 -04004724 if (index >= gl::MAX_VERTEX_ATTRIBS)
4725 {
4726 context->recordError(gl::Error(GL_INVALID_VALUE));
4727 return;
4728 }
4729
Geoff Langbfdea662014-07-23 14:16:32 -04004730 GLfloat vals[4] = { values[0], 0, 0, 1 };
4731 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004732 }
4733}
4734
4735void __stdcall glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y)
4736{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004737 EVENT("(GLuint index = %d, GLfloat x = %f, GLfloat y = %f)", index, x, y);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004738
Geoff Langbfdea662014-07-23 14:16:32 -04004739 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004740 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004741 {
Geoff Langb1196682014-07-23 13:47:29 -04004742 if (index >= gl::MAX_VERTEX_ATTRIBS)
4743 {
4744 context->recordError(gl::Error(GL_INVALID_VALUE));
4745 return;
4746 }
4747
Geoff Langbfdea662014-07-23 14:16:32 -04004748 GLfloat vals[4] = { x, y, 0, 1 };
4749 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004750 }
4751}
4752
4753void __stdcall glVertexAttrib2fv(GLuint index, const GLfloat* values)
4754{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004755 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004756
Geoff Langbfdea662014-07-23 14:16:32 -04004757 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004758 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004759 {
Geoff Langb1196682014-07-23 13:47:29 -04004760 if (index >= gl::MAX_VERTEX_ATTRIBS)
4761 {
4762 context->recordError(gl::Error(GL_INVALID_VALUE));
4763 return;
4764 }
4765
Geoff Langbfdea662014-07-23 14:16:32 -04004766 GLfloat vals[4] = { values[0], values[1], 0, 1 };
4767 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004768 }
4769}
4770
4771void __stdcall glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z)
4772{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004773 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 +00004774
Geoff Langbfdea662014-07-23 14:16:32 -04004775 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004776 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004777 {
Geoff Langb1196682014-07-23 13:47:29 -04004778 if (index >= gl::MAX_VERTEX_ATTRIBS)
4779 {
4780 context->recordError(gl::Error(GL_INVALID_VALUE));
4781 return;
4782 }
4783
Geoff Langbfdea662014-07-23 14:16:32 -04004784 GLfloat vals[4] = { x, y, z, 1 };
4785 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004786 }
4787}
4788
4789void __stdcall glVertexAttrib3fv(GLuint index, const GLfloat* values)
4790{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004791 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004792
Geoff Langbfdea662014-07-23 14:16:32 -04004793 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004794 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004795 {
Geoff Langb1196682014-07-23 13:47:29 -04004796 if (index >= gl::MAX_VERTEX_ATTRIBS)
4797 {
4798 context->recordError(gl::Error(GL_INVALID_VALUE));
4799 return;
4800 }
4801
Geoff Langbfdea662014-07-23 14:16:32 -04004802 GLfloat vals[4] = { values[0], values[1], values[2], 1 };
4803 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004804 }
4805}
4806
4807void __stdcall glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)
4808{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004809 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 +00004810
Geoff Langbfdea662014-07-23 14:16:32 -04004811 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004812 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004813 {
Geoff Langb1196682014-07-23 13:47:29 -04004814 if (index >= gl::MAX_VERTEX_ATTRIBS)
4815 {
4816 context->recordError(gl::Error(GL_INVALID_VALUE));
4817 return;
4818 }
4819
Geoff Langbfdea662014-07-23 14:16:32 -04004820 GLfloat vals[4] = { x, y, z, w };
4821 context->getState().setVertexAttribf(index, vals);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004822 }
4823}
4824
4825void __stdcall glVertexAttrib4fv(GLuint index, const GLfloat* values)
4826{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004827 EVENT("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004828
Geoff Langbfdea662014-07-23 14:16:32 -04004829 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004830 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004831 {
Geoff Langb1196682014-07-23 13:47:29 -04004832 if (index >= gl::MAX_VERTEX_ATTRIBS)
4833 {
4834 context->recordError(gl::Error(GL_INVALID_VALUE));
4835 return;
4836 }
4837
Geoff Langbfdea662014-07-23 14:16:32 -04004838 context->getState().setVertexAttribf(index, values);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004839 }
4840}
4841
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004842void __stdcall glVertexAttribDivisorANGLE(GLuint index, GLuint divisor)
4843{
4844 EVENT("(GLuint index = %d, GLuint divisor = %d)", index, divisor);
4845
Geoff Langbfdea662014-07-23 14:16:32 -04004846 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004847 if (context)
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004848 {
Geoff Langb1196682014-07-23 13:47:29 -04004849 if (index >= gl::MAX_VERTEX_ATTRIBS)
4850 {
4851 context->recordError(gl::Error(GL_INVALID_VALUE));
4852 return;
4853 }
4854
Geoff Langbfdea662014-07-23 14:16:32 -04004855 context->setVertexAttribDivisor(index, divisor);
daniel@transgaming.comd2820bf2012-01-27 15:38:48 +00004856 }
4857}
4858
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00004859void __stdcall glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004860{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004861 EVENT("(GLuint index = %d, GLint size = %d, GLenum type = 0x%X, "
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004862 "GLboolean normalized = %u, GLsizei stride = %d, const GLvoid* ptr = 0x%0.8p)",
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00004863 index, size, type, normalized, stride, ptr);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004864
Geoff Langbfdea662014-07-23 14:16:32 -04004865 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004866 if (context)
4867 {
Geoff Langb1196682014-07-23 13:47:29 -04004868 if (index >= gl::MAX_VERTEX_ATTRIBS)
4869 {
4870 context->recordError(gl::Error(GL_INVALID_VALUE));
4871 return;
4872 }
4873
4874 if (size < 1 || size > 4)
4875 {
4876 context->recordError(gl::Error(GL_INVALID_VALUE));
4877 return;
4878 }
4879
4880 switch (type)
4881 {
4882 case GL_BYTE:
4883 case GL_UNSIGNED_BYTE:
4884 case GL_SHORT:
4885 case GL_UNSIGNED_SHORT:
4886 case GL_FIXED:
4887 case GL_FLOAT:
4888 break;
4889
4890 case GL_HALF_FLOAT:
4891 case GL_INT:
4892 case GL_UNSIGNED_INT:
4893 case GL_INT_2_10_10_10_REV:
4894 case GL_UNSIGNED_INT_2_10_10_10_REV:
4895 if (context->getClientVersion() < 3)
4896 {
4897 context->recordError(gl::Error(GL_INVALID_ENUM));
4898 return;
4899 }
4900 break;
4901
4902 default:
4903 context->recordError(gl::Error(GL_INVALID_ENUM));
4904 return;
4905 }
4906
4907 if (stride < 0)
4908 {
4909 context->recordError(gl::Error(GL_INVALID_VALUE));
4910 return;
4911 }
4912
4913 if ((type == GL_INT_2_10_10_10_REV || type == GL_UNSIGNED_INT_2_10_10_10_REV) && size != 4)
4914 {
4915 context->recordError(gl::Error(GL_INVALID_OPERATION));
4916 return;
4917 }
4918
Geoff Langbfdea662014-07-23 14:16:32 -04004919 // [OpenGL ES 3.0.2] Section 2.8 page 24:
4920 // An INVALID_OPERATION error is generated when a non-zero vertex array object
4921 // is bound, zero is bound to the ARRAY_BUFFER buffer object binding point,
4922 // and the pointer argument is not NULL.
4923 if (context->getState().getVertexArray()->id() != 0 && context->getState().getArrayBufferId() == 0 && ptr != NULL)
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00004924 {
Geoff Langb1196682014-07-23 13:47:29 -04004925 context->recordError(gl::Error(GL_INVALID_OPERATION));
4926 return;
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00004927 }
4928
Geoff Langbfdea662014-07-23 14:16:32 -04004929 context->getState().setVertexAttribState(index, context->getState().getTargetBuffer(GL_ARRAY_BUFFER), size, type,
4930 normalized == GL_TRUE, false, stride, ptr);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004931 }
4932}
4933
4934void __stdcall glViewport(GLint x, GLint y, GLsizei width, GLsizei height)
4935{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00004936 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 +00004937
Geoff Langbfdea662014-07-23 14:16:32 -04004938 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004939 if (context)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004940 {
Geoff Langb1196682014-07-23 13:47:29 -04004941 if (width < 0 || height < 0)
4942 {
4943 context->recordError(gl::Error(GL_INVALID_VALUE));
4944 return;
4945 }
4946
Geoff Langbfdea662014-07-23 14:16:32 -04004947 context->getState().setViewportParams(x, y, width, height);
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00004948 }
4949}
4950
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004951// OpenGL ES 3.0 functions
4952
4953void __stdcall glReadBuffer(GLenum mode)
4954{
4955 EVENT("(GLenum mode = 0x%X)", mode);
4956
Geoff Langbfdea662014-07-23 14:16:32 -04004957 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004958 if (context)
4959 {
4960 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004961 {
Geoff Langb1196682014-07-23 13:47:29 -04004962 context->recordError(gl::Error(GL_INVALID_OPERATION));
4963 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00004964 }
Geoff Langbfdea662014-07-23 14:16:32 -04004965
4966 // glReadBuffer
4967 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004968 }
4969}
4970
4971void __stdcall glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid* indices)
4972{
4973 EVENT("(GLenum mode = 0x%X, GLuint start = %u, GLuint end = %u, GLsizei count = %d, GLenum type = 0x%X, "
4974 "const GLvoid* indices = 0x%0.8p)", mode, start, end, count, type, indices);
4975
Geoff Langbfdea662014-07-23 14:16:32 -04004976 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004977 if (context)
4978 {
4979 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004980 {
Geoff Langb1196682014-07-23 13:47:29 -04004981 context->recordError(gl::Error(GL_INVALID_OPERATION));
4982 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00004983 }
Geoff Langbfdea662014-07-23 14:16:32 -04004984
4985 // glDrawRangeElements
4986 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00004987 }
4988}
4989
4990void __stdcall glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels)
4991{
4992 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint internalformat = %d, GLsizei width = %d, "
4993 "GLsizei height = %d, GLsizei depth = %d, GLint border = %d, GLenum format = 0x%X, "
4994 "GLenum type = 0x%X, const GLvoid* pixels = 0x%0.8p)",
4995 target, level, internalformat, width, height, depth, border, format, type, pixels);
4996
Geoff Langbfdea662014-07-23 14:16:32 -04004997 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04004998 if (context)
4999 {
5000 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005001 {
Geoff Langb1196682014-07-23 13:47:29 -04005002 context->recordError(gl::Error(GL_INVALID_OPERATION));
5003 return;
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00005004 }
Geoff Langbfdea662014-07-23 14:16:32 -04005005
5006 // validateES3TexImageFormat sets the error code if there is an error
5007 if (!ValidateES3TexImageParameters(context, target, level, internalformat, false, false,
5008 0, 0, 0, width, height, depth, border, format, type, pixels))
5009 {
5010 return;
5011 }
5012
5013 switch(target)
5014 {
5015 case GL_TEXTURE_3D:
5016 {
5017 gl::Texture3D *texture = context->getTexture3D();
5018 texture->setImage(level, width, height, depth, internalformat, format, type, context->getState().getUnpackState(), pixels);
5019 }
5020 break;
5021
5022 case GL_TEXTURE_2D_ARRAY:
5023 {
5024 gl::Texture2DArray *texture = context->getTexture2DArray();
5025 texture->setImage(level, width, height, depth, internalformat, format, type, context->getState().getUnpackState(), pixels);
5026 }
5027 break;
5028
5029 default:
Geoff Langb1196682014-07-23 13:47:29 -04005030 context->recordError(gl::Error(GL_INVALID_ENUM));
5031 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005032 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005033 }
5034}
5035
5036void __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)
5037{
5038 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
5039 "GLint zoffset = %d, GLsizei width = %d, GLsizei height = %d, GLsizei depth = %d, "
5040 "GLenum format = 0x%X, GLenum type = 0x%X, const GLvoid* pixels = 0x%0.8p)",
5041 target, level, xoffset, yoffset, zoffset, width, height, depth, format, type, pixels);
5042
Geoff Langbfdea662014-07-23 14:16:32 -04005043 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005044 if (context)
5045 {
5046 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005047 {
Geoff Langb1196682014-07-23 13:47:29 -04005048 context->recordError(gl::Error(GL_INVALID_OPERATION));
5049 return;
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00005050 }
Geoff Langbfdea662014-07-23 14:16:32 -04005051
5052 // validateES3TexImageFormat sets the error code if there is an error
5053 if (!ValidateES3TexImageParameters(context, target, level, GL_NONE, false, true,
5054 xoffset, yoffset, zoffset, width, height, depth, 0,
5055 format, type, pixels))
5056 {
5057 return;
5058 }
5059
5060 // Zero sized uploads are valid but no-ops
5061 if (width == 0 || height == 0 || depth == 0)
5062 {
5063 return;
5064 }
5065
5066 switch(target)
5067 {
5068 case GL_TEXTURE_3D:
5069 {
5070 gl::Texture3D *texture = context->getTexture3D();
5071 texture->subImage(level, xoffset, yoffset, zoffset, width, height, depth, format, type, context->getState().getUnpackState(), pixels);
5072 }
5073 break;
5074
5075 case GL_TEXTURE_2D_ARRAY:
5076 {
5077 gl::Texture2DArray *texture = context->getTexture2DArray();
5078 texture->subImage(level, xoffset, yoffset, zoffset, width, height, depth, format, type, context->getState().getUnpackState(), pixels);
5079 }
5080 break;
5081
5082 default:
Geoff Langb1196682014-07-23 13:47:29 -04005083 context->recordError(gl::Error(GL_INVALID_ENUM));
5084 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005085 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005086 }
5087}
5088
5089void __stdcall glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height)
5090{
5091 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
5092 "GLint zoffset = %d, GLint x = %d, GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
5093 target, level, xoffset, yoffset, zoffset, x, y, width, height);
5094
Geoff Langbfdea662014-07-23 14:16:32 -04005095 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005096 if (context)
5097 {
5098 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005099 {
Geoff Langb1196682014-07-23 13:47:29 -04005100 context->recordError(gl::Error(GL_INVALID_OPERATION));
5101 return;
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00005102 }
Geoff Langbfdea662014-07-23 14:16:32 -04005103
5104 if (!ValidateES3CopyTexImageParameters(context, target, level, GL_NONE, true, xoffset, yoffset, zoffset,
5105 x, y, width, height, 0))
5106 {
5107 return;
5108 }
5109
5110 gl::Framebuffer *framebuffer = context->getState().getReadFramebuffer();
5111 gl::Texture *texture = NULL;
5112 switch (target)
5113 {
5114 case GL_TEXTURE_3D:
5115 texture = context->getTexture3D();
5116 break;
5117
5118 case GL_TEXTURE_2D_ARRAY:
5119 texture = context->getTexture2DArray();
5120 break;
5121
5122 default:
Geoff Langb1196682014-07-23 13:47:29 -04005123 context->recordError(gl::Error(GL_INVALID_ENUM));
5124 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005125 }
5126
5127 texture->copySubImage(target, level, xoffset, yoffset, zoffset, x, y, width, height, framebuffer);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005128 }
5129}
5130
5131void __stdcall glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data)
5132{
Geoff Langeef52cc2013-10-16 15:07:39 -04005133 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 +00005134 "GLsizei height = %d, GLsizei depth = %d, GLint border = %d, GLsizei imageSize = %d, "
5135 "const GLvoid* data = 0x%0.8p)",
5136 target, level, internalformat, width, height, depth, border, imageSize, data);
5137
Geoff Langbfdea662014-07-23 14:16:32 -04005138 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005139 if (context)
5140 {
5141 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005142 {
Geoff Langb1196682014-07-23 13:47:29 -04005143 context->recordError(gl::Error(GL_INVALID_OPERATION));
5144 return;
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00005145 }
Geoff Langbfdea662014-07-23 14:16:32 -04005146
Geoff Lang5d601382014-07-22 15:14:06 -04005147 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(internalformat);
5148 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -04005149 {
Geoff Langb1196682014-07-23 13:47:29 -04005150 context->recordError(gl::Error(GL_INVALID_VALUE));
5151 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005152 }
5153
5154 // validateES3TexImageFormat sets the error code if there is an error
5155 if (!ValidateES3TexImageParameters(context, target, level, internalformat, true, false,
5156 0, 0, 0, width, height, depth, border, GL_NONE, GL_NONE, data))
5157 {
5158 return;
5159 }
5160
5161 switch(target)
5162 {
5163 case GL_TEXTURE_3D:
5164 {
5165 gl::Texture3D *texture = context->getTexture3D();
5166 texture->setCompressedImage(level, internalformat, width, height, depth, imageSize, data);
5167 }
5168 break;
5169
5170 case GL_TEXTURE_2D_ARRAY:
5171 {
5172 gl::Texture2DArray *texture = context->getTexture2DArray();
5173 texture->setCompressedImage(level, internalformat, width, height, depth, imageSize, data);
5174 }
5175 break;
5176
5177 default:
Geoff Langb1196682014-07-23 13:47:29 -04005178 context->recordError(gl::Error(GL_INVALID_ENUM));
5179 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005180 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005181 }
5182}
5183
5184void __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)
5185{
5186 EVENT("(GLenum target = 0x%X, GLint level = %d, GLint xoffset = %d, GLint yoffset = %d, "
5187 "GLint zoffset = %d, GLsizei width = %d, GLsizei height = %d, GLsizei depth = %d, "
5188 "GLenum format = 0x%X, GLsizei imageSize = %d, const GLvoid* data = 0x%0.8p)",
5189 target, level, xoffset, yoffset, zoffset, width, height, depth, format, imageSize, data);
5190
Geoff Langbfdea662014-07-23 14:16:32 -04005191 gl::Context *context = gl::getNonLostContext();
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 Langb1196682014-07-23 13:47:29 -04005196 context->recordError(gl::Error(GL_INVALID_OPERATION));
5197 return;
shannon.woods%transgaming.com@gtempaccount.com875994b2013-04-13 03:45:17 +00005198 }
Geoff Langbfdea662014-07-23 14:16:32 -04005199
Geoff Lang5d601382014-07-22 15:14:06 -04005200 const gl::InternalFormat &formatInfo = gl::GetInternalFormatInfo(format);
5201 if (imageSize < 0 || static_cast<GLuint>(imageSize) != formatInfo.computeBlockSize(GL_UNSIGNED_BYTE, width, height))
Geoff Langbfdea662014-07-23 14:16:32 -04005202 {
Geoff Langb1196682014-07-23 13:47:29 -04005203 context->recordError(gl::Error(GL_INVALID_VALUE));
5204 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005205 }
5206
5207 if (!data)
5208 {
Geoff Langb1196682014-07-23 13:47:29 -04005209 context->recordError(gl::Error(GL_INVALID_VALUE));
5210 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005211 }
5212
5213 // validateES3TexImageFormat sets the error code if there is an error
5214 if (!ValidateES3TexImageParameters(context, target, level, GL_NONE, true, true,
5215 0, 0, 0, width, height, depth, 0, GL_NONE, GL_NONE, data))
5216 {
5217 return;
5218 }
5219
5220 // Zero sized uploads are valid but no-ops
5221 if (width == 0 || height == 0)
5222 {
5223 return;
5224 }
5225
5226 switch(target)
5227 {
5228 case GL_TEXTURE_3D:
5229 {
5230 gl::Texture3D *texture = context->getTexture3D();
5231 texture->subImageCompressed(level, xoffset, yoffset, zoffset, width, height, depth,
5232 format, imageSize, data);
5233 }
5234 break;
5235
5236 case GL_TEXTURE_2D_ARRAY:
5237 {
5238 gl::Texture2DArray *texture = context->getTexture2DArray();
5239 texture->subImageCompressed(level, xoffset, yoffset, zoffset, width, height, depth,
5240 format, imageSize, data);
5241 }
5242 break;
5243
Geoff Langb1196682014-07-23 13:47:29 -04005244 default:
5245 context->recordError(gl::Error(GL_INVALID_ENUM));
5246 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005247 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005248 }
5249}
5250
5251void __stdcall glGenQueries(GLsizei n, GLuint* ids)
5252{
5253 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
5254
Geoff Langbfdea662014-07-23 14:16:32 -04005255 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005256 if (context)
5257 {
5258 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005259 {
Geoff Langb1196682014-07-23 13:47:29 -04005260 context->recordError(gl::Error(GL_INVALID_OPERATION));
5261 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005262 }
Geoff Langbfdea662014-07-23 14:16:32 -04005263
5264 if (n < 0)
5265 {
Geoff Langb1196682014-07-23 13:47:29 -04005266 context->recordError(gl::Error(GL_INVALID_VALUE));
5267 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005268 }
5269
5270 for (GLsizei i = 0; i < n; i++)
5271 {
5272 ids[i] = context->createQuery();
5273 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005274 }
5275}
5276
5277void __stdcall glDeleteQueries(GLsizei n, const GLuint* ids)
5278{
5279 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
5280
Geoff Langbfdea662014-07-23 14:16:32 -04005281 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005282 if (context)
5283 {
5284 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005285 {
Geoff Langb1196682014-07-23 13:47:29 -04005286 context->recordError(gl::Error(GL_INVALID_OPERATION));
5287 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005288 }
Geoff Langbfdea662014-07-23 14:16:32 -04005289
5290 if (n < 0)
5291 {
Geoff Langb1196682014-07-23 13:47:29 -04005292 context->recordError(gl::Error(GL_INVALID_VALUE));
5293 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005294 }
5295
5296 for (GLsizei i = 0; i < n; i++)
5297 {
5298 context->deleteQuery(ids[i]);
5299 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005300 }
5301}
5302
5303GLboolean __stdcall glIsQuery(GLuint id)
5304{
5305 EVENT("(GLuint id = %u)", id);
5306
Geoff Langbfdea662014-07-23 14:16:32 -04005307 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005308 if (context)
5309 {
5310 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005311 {
Geoff Langb1196682014-07-23 13:47:29 -04005312 context->recordError(gl::Error(GL_INVALID_OPERATION));
5313 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005314 }
Geoff Langbfdea662014-07-23 14:16:32 -04005315
5316 return (context->getQuery(id, false, GL_NONE) != NULL) ? GL_TRUE : GL_FALSE;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005317 }
5318
5319 return GL_FALSE;
5320}
5321
5322void __stdcall glBeginQuery(GLenum target, GLuint id)
5323{
5324 EVENT("(GLenum target = 0x%X, GLuint id = %u)", target, id);
5325
Geoff Langbfdea662014-07-23 14:16:32 -04005326 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005327 if (context)
5328 {
5329 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005330 {
Geoff Langb1196682014-07-23 13:47:29 -04005331 context->recordError(gl::Error(GL_INVALID_OPERATION));
5332 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005333 }
Geoff Langbfdea662014-07-23 14:16:32 -04005334
5335 if (!ValidateBeginQuery(context, target, id))
5336 {
5337 return;
5338 }
Geoff Lang5aad9672014-09-08 11:10:42 -04005339
5340 gl::Error error = context->beginQuery(target, id);
5341 if (error.isError())
5342 {
5343 context->recordError(error);
5344 return;
5345 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005346 }
5347}
5348
5349void __stdcall glEndQuery(GLenum target)
5350{
5351 EVENT("(GLenum target = 0x%X)", target);
5352
Geoff Langbfdea662014-07-23 14:16:32 -04005353 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005354 if (context)
5355 {
5356 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005357 {
Geoff Langb1196682014-07-23 13:47:29 -04005358 context->recordError(gl::Error(GL_INVALID_OPERATION));
5359 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005360 }
Geoff Langbfdea662014-07-23 14:16:32 -04005361
5362 if (!ValidateEndQuery(context, target))
5363 {
5364 return;
5365 }
5366
Geoff Lang5aad9672014-09-08 11:10:42 -04005367 gl::Error error = context->endQuery(target);
5368 if (error.isError())
5369 {
5370 context->recordError(error);
5371 return;
5372 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005373 }
5374}
5375
5376void __stdcall glGetQueryiv(GLenum target, GLenum pname, GLint* params)
5377{
5378 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", target, pname, params);
5379
Geoff Langbfdea662014-07-23 14:16:32 -04005380 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005381 if (context)
5382 {
5383 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005384 {
Geoff Langb1196682014-07-23 13:47:29 -04005385 context->recordError(gl::Error(GL_INVALID_OPERATION));
5386 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005387 }
Geoff Langbfdea662014-07-23 14:16:32 -04005388
5389 if (!ValidQueryType(context, target))
5390 {
Geoff Langb1196682014-07-23 13:47:29 -04005391 context->recordError(gl::Error(GL_INVALID_ENUM));
5392 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005393 }
5394
5395 switch (pname)
5396 {
5397 case GL_CURRENT_QUERY:
5398 params[0] = static_cast<GLint>(context->getState().getActiveQueryId(target));
5399 break;
5400
5401 default:
Geoff Langb1196682014-07-23 13:47:29 -04005402 context->recordError(gl::Error(GL_INVALID_ENUM));
5403 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005404 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005405 }
5406}
5407
5408void __stdcall glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint* params)
5409{
5410 EVENT("(GLuint id = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", id, pname, params);
5411
Geoff Langbfdea662014-07-23 14:16:32 -04005412 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005413 if (context)
5414 {
5415 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005416 {
Geoff Langb1196682014-07-23 13:47:29 -04005417 context->recordError(gl::Error(GL_INVALID_OPERATION));
5418 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005419 }
Geoff Langbfdea662014-07-23 14:16:32 -04005420
5421 gl::Query *queryObject = context->getQuery(id, false, GL_NONE);
5422
5423 if (!queryObject)
5424 {
Geoff Langb1196682014-07-23 13:47:29 -04005425 context->recordError(gl::Error(GL_INVALID_OPERATION));
5426 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005427 }
5428
5429 if (context->getState().getActiveQueryId(queryObject->getType()) == id)
5430 {
Geoff Langb1196682014-07-23 13:47:29 -04005431 context->recordError(gl::Error(GL_INVALID_OPERATION));
5432 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005433 }
5434
5435 switch(pname)
5436 {
Geoff Lang5aad9672014-09-08 11:10:42 -04005437 case GL_QUERY_RESULT_EXT:
5438 {
5439 gl::Error error = queryObject->getResult(params);
5440 if (error.isError())
5441 {
5442 context->recordError(error);
5443 return;
5444 }
5445 }
Geoff Langbfdea662014-07-23 14:16:32 -04005446 break;
Geoff Langb1196682014-07-23 13:47:29 -04005447
Geoff Lang5aad9672014-09-08 11:10:42 -04005448 case GL_QUERY_RESULT_AVAILABLE_EXT:
5449 {
5450 gl::Error error = queryObject->isResultAvailable(params);
5451 if (error.isError())
5452 {
5453 context->recordError(error);
5454 return;
5455 }
5456 }
Geoff Langbfdea662014-07-23 14:16:32 -04005457 break;
Geoff Langb1196682014-07-23 13:47:29 -04005458
Geoff Langbfdea662014-07-23 14:16:32 -04005459 default:
Geoff Langb1196682014-07-23 13:47:29 -04005460 context->recordError(gl::Error(GL_INVALID_ENUM));
5461 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005462 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005463 }
5464}
5465
5466GLboolean __stdcall glUnmapBuffer(GLenum target)
5467{
5468 EVENT("(GLenum target = 0x%X)", target);
5469
Geoff Langbfdea662014-07-23 14:16:32 -04005470 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005471 if (context)
5472 {
5473 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005474 {
Geoff Langb1196682014-07-23 13:47:29 -04005475 context->recordError(gl::Error(GL_INVALID_OPERATION));
5476 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005477 }
Geoff Langbfdea662014-07-23 14:16:32 -04005478
5479 return glUnmapBufferOES(target);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005480 }
5481
5482 return GL_FALSE;
5483}
5484
5485void __stdcall glGetBufferPointerv(GLenum target, GLenum pname, GLvoid** params)
5486{
5487 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLvoid** params = 0x%0.8p)", target, pname, params);
5488
Geoff Langbfdea662014-07-23 14:16:32 -04005489 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005490 if (context)
5491 {
5492 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005493 {
Geoff Langb1196682014-07-23 13:47:29 -04005494 context->recordError(gl::Error(GL_INVALID_OPERATION));
5495 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005496 }
Geoff Langbfdea662014-07-23 14:16:32 -04005497
5498 glGetBufferPointervOES(target, pname, params);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005499 }
5500}
5501
5502void __stdcall glDrawBuffers(GLsizei n, const GLenum* bufs)
5503{
Geoff Langbfdea662014-07-23 14:16:32 -04005504 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005505 if (context)
5506 {
5507 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005508 {
Geoff Langb1196682014-07-23 13:47:29 -04005509 context->recordError(gl::Error(GL_INVALID_OPERATION));
5510 return;
shannon.woods%transgaming.com@gtempaccount.com7948c5f2013-04-13 03:38:58 +00005511 }
Geoff Langbfdea662014-07-23 14:16:32 -04005512
5513 glDrawBuffersEXT(n, bufs);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005514 }
5515}
5516
5517void __stdcall glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5518{
5519 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5520 location, count, transpose, value);
5521
Geoff Langbfdea662014-07-23 14:16:32 -04005522 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005523 if (context)
5524 {
5525 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT2x3, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005526 {
Geoff Langbfdea662014-07-23 14:16:32 -04005527 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005528 }
Geoff Langbfdea662014-07-23 14:16:32 -04005529
5530 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5531 programBinary->setUniformMatrix2x3fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005532 }
5533}
5534
5535void __stdcall glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5536{
5537 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5538 location, count, transpose, value);
5539
Geoff Langbfdea662014-07-23 14:16:32 -04005540 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005541 if (context)
5542 {
5543 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT3x2, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005544 {
Geoff Langbfdea662014-07-23 14:16:32 -04005545 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005546 }
Geoff Langbfdea662014-07-23 14:16:32 -04005547
5548 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5549 programBinary->setUniformMatrix3x2fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005550 }
5551}
5552
5553void __stdcall glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5554{
5555 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5556 location, count, transpose, value);
5557
Geoff Langbfdea662014-07-23 14:16:32 -04005558 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005559 if (context)
5560 {
5561 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT2x4, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005562 {
Geoff Langbfdea662014-07-23 14:16:32 -04005563 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005564 }
Geoff Langbfdea662014-07-23 14:16:32 -04005565
5566 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5567 programBinary->setUniformMatrix2x4fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005568 }
5569}
5570
5571void __stdcall glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5572{
5573 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5574 location, count, transpose, value);
5575
Geoff Langbfdea662014-07-23 14:16:32 -04005576 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005577 if (context)
5578 {
5579 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT4x2, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005580 {
Geoff Langbfdea662014-07-23 14:16:32 -04005581 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005582 }
Geoff Langbfdea662014-07-23 14:16:32 -04005583
5584 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5585 programBinary->setUniformMatrix4x2fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005586 }
5587}
5588
5589void __stdcall glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5590{
5591 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5592 location, count, transpose, value);
5593
Geoff Langbfdea662014-07-23 14:16:32 -04005594 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005595 if (context)
5596 {
5597 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT3x4, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005598 {
Geoff Langbfdea662014-07-23 14:16:32 -04005599 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005600 }
Geoff Langbfdea662014-07-23 14:16:32 -04005601
5602 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5603 programBinary->setUniformMatrix3x4fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005604 }
5605}
5606
5607void __stdcall glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat* value)
5608{
5609 EVENT("(GLint location = %d, GLsizei count = %d, GLboolean transpose = %u, const GLfloat* value = 0x%0.8p)",
5610 location, count, transpose, value);
5611
Geoff Langbfdea662014-07-23 14:16:32 -04005612 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005613 if (context)
5614 {
5615 if (!ValidateUniformMatrix(context, GL_FLOAT_MAT4x3, location, count, transpose))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005616 {
Geoff Langbfdea662014-07-23 14:16:32 -04005617 return;
shannon.woods%transgaming.com@gtempaccount.comf1306162013-04-13 03:40:04 +00005618 }
Geoff Langbfdea662014-07-23 14:16:32 -04005619
5620 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
5621 programBinary->setUniformMatrix4x3fv(location, count, transpose, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005622 }
5623}
5624
5625void __stdcall glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)
5626{
5627 EVENT("(GLint srcX0 = %d, GLint srcY0 = %d, GLint srcX1 = %d, GLint srcY1 = %d, GLint dstX0 = %d, "
5628 "GLint dstY0 = %d, GLint dstX1 = %d, GLint dstY1 = %d, GLbitfield mask = 0x%X, GLenum filter = 0x%X)",
5629 srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
5630
Geoff Langbfdea662014-07-23 14:16:32 -04005631 gl::Context *context = gl::getNonLostContext();
5632 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005633 {
Geoff Langbfdea662014-07-23 14:16:32 -04005634 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005635 {
Geoff Langb1196682014-07-23 13:47:29 -04005636 context->recordError(gl::Error(GL_INVALID_OPERATION));
5637 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005638 }
Geoff Langbfdea662014-07-23 14:16:32 -04005639
5640 if (!ValidateBlitFramebufferParameters(context, srcX0, srcY0, srcX1, srcY1,
5641 dstX0, dstY0, dstX1, dstY1, mask, filter,
5642 false))
5643 {
5644 return;
5645 }
5646
Geoff Lang64839152014-08-26 16:23:25 -04005647 gl::Error error = context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
5648 mask, filter);
5649 if (error.isError())
5650 {
5651 context->recordError(error);
5652 return;
5653 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005654 }
5655}
5656
5657void __stdcall glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
5658{
5659 EVENT("(GLenum target = 0x%X, GLsizei samples = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
5660 target, samples, internalformat, width, height);
5661
Geoff Langbfdea662014-07-23 14:16:32 -04005662 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005663 if (context)
5664 {
5665 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005666 {
Geoff Langb1196682014-07-23 13:47:29 -04005667 context->recordError(gl::Error(GL_INVALID_OPERATION));
5668 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005669 }
Geoff Langbfdea662014-07-23 14:16:32 -04005670
5671 if (!ValidateRenderbufferStorageParameters(context, target, samples, internalformat,
5672 width, height, false))
5673 {
5674 return;
5675 }
5676
5677 context->setRenderbufferStorage(width, height, internalformat, samples);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005678 }
5679}
5680
5681void __stdcall glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)
5682{
5683 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLuint texture = %u, GLint level = %d, GLint layer = %d)",
5684 target, attachment, texture, level, layer);
5685
Geoff Langbfdea662014-07-23 14:16:32 -04005686 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005687 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005688 {
Geoff Langbfdea662014-07-23 14:16:32 -04005689 if (!ValidateFramebufferTextureLayer(context, target, attachment, texture,
5690 level, layer))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005691 {
Geoff Langbfdea662014-07-23 14:16:32 -04005692 return;
5693 }
Geoff Lang3ed0c482013-07-25 17:03:18 -04005694
Geoff Langbfdea662014-07-23 14:16:32 -04005695 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
5696 ASSERT(framebuffer);
Geoff Lang3ed0c482013-07-25 17:03:18 -04005697
Geoff Langbfdea662014-07-23 14:16:32 -04005698 gl::Texture *textureObject = context->getTexture(texture);
5699 GLenum textarget = textureObject ? textureObject->getTarget() : GL_NONE;
Geoff Lang3ed0c482013-07-25 17:03:18 -04005700
Geoff Langbfdea662014-07-23 14:16:32 -04005701 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
5702 {
5703 const unsigned int colorAttachment = (attachment - GL_COLOR_ATTACHMENT0_EXT);
5704 framebuffer->setColorbuffer(colorAttachment, textarget, texture, level, layer);
5705 }
5706 else
5707 {
5708 switch (attachment)
Geoff Lang3ed0c482013-07-25 17:03:18 -04005709 {
Geoff Langbfdea662014-07-23 14:16:32 -04005710 case GL_DEPTH_ATTACHMENT: framebuffer->setDepthbuffer(textarget, texture, level, layer); break;
5711 case GL_STENCIL_ATTACHMENT: framebuffer->setStencilbuffer(textarget, texture, level, layer); break;
5712 case GL_DEPTH_STENCIL_ATTACHMENT: framebuffer->setDepthStencilBuffer(textarget, texture, level, layer); break;
Geoff Lang3ed0c482013-07-25 17:03:18 -04005713 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005714 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005715 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005716}
5717
5718GLvoid* __stdcall glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
5719{
5720 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d, GLbitfield access = 0x%X)",
5721 target, offset, length, access);
5722
Geoff Langbfdea662014-07-23 14:16:32 -04005723 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005724 if (context)
5725 {
5726 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005727 {
Geoff Langb1196682014-07-23 13:47:29 -04005728 context->recordError(gl::Error(GL_INVALID_OPERATION));
5729 return NULL;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005730 }
Geoff Langbfdea662014-07-23 14:16:32 -04005731
5732 return glMapBufferRangeEXT(target, offset, length, access);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005733 }
5734
5735 return NULL;
5736}
5737
5738void __stdcall glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length)
5739{
5740 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d)", target, offset, length);
5741
Geoff Langbfdea662014-07-23 14:16:32 -04005742 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005743 if (context)
5744 {
5745 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005746 {
Geoff Langb1196682014-07-23 13:47:29 -04005747 context->recordError(gl::Error(GL_INVALID_OPERATION));
5748 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005749 }
Geoff Langbfdea662014-07-23 14:16:32 -04005750
5751 glFlushMappedBufferRangeEXT(target, offset, length);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005752 }
5753}
5754
5755void __stdcall glBindVertexArray(GLuint array)
5756{
5757 EVENT("(GLuint array = %u)", array);
5758
Geoff Langbfdea662014-07-23 14:16:32 -04005759 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005760 if (context)
5761 {
5762 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005763 {
Geoff Langb1196682014-07-23 13:47:29 -04005764 context->recordError(gl::Error(GL_INVALID_OPERATION));
5765 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005766 }
Geoff Langbfdea662014-07-23 14:16:32 -04005767
5768 gl::VertexArray *vao = context->getVertexArray(array);
5769
5770 if (!vao)
5771 {
5772 // The default VAO should always exist
5773 ASSERT(array != 0);
Geoff Langb1196682014-07-23 13:47:29 -04005774 context->recordError(gl::Error(GL_INVALID_OPERATION));
5775 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005776 }
5777
5778 context->bindVertexArray(array);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005779 }
5780}
5781
5782void __stdcall glDeleteVertexArrays(GLsizei n, const GLuint* arrays)
5783{
5784 EVENT("(GLsizei n = %d, const GLuint* arrays = 0x%0.8p)", n, arrays);
5785
Geoff Langbfdea662014-07-23 14:16:32 -04005786 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005787 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005788 {
Geoff Langbfdea662014-07-23 14:16:32 -04005789 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005790 {
Geoff Langb1196682014-07-23 13:47:29 -04005791 context->recordError(gl::Error(GL_INVALID_OPERATION));
5792 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005793 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005794
Geoff Langbfdea662014-07-23 14:16:32 -04005795 if (n < 0)
5796 {
Geoff Langb1196682014-07-23 13:47:29 -04005797 context->recordError(gl::Error(GL_INVALID_VALUE));
5798 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005799 }
Jamie Madilld1028542013-07-02 11:57:04 -04005800
Geoff Langbfdea662014-07-23 14:16:32 -04005801 for (int arrayIndex = 0; arrayIndex < n; arrayIndex++)
5802 {
5803 if (arrays[arrayIndex] != 0)
Jamie Madilld1028542013-07-02 11:57:04 -04005804 {
Geoff Langbfdea662014-07-23 14:16:32 -04005805 context->deleteVertexArray(arrays[arrayIndex]);
Jamie Madilld1028542013-07-02 11:57:04 -04005806 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005807 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005808 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005809}
5810
5811void __stdcall glGenVertexArrays(GLsizei n, GLuint* arrays)
5812{
5813 EVENT("(GLsizei n = %d, GLuint* arrays = 0x%0.8p)", n, arrays);
5814
Geoff Langbfdea662014-07-23 14:16:32 -04005815 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005816 if (context)
5817 {
5818 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005819 {
Geoff Langb1196682014-07-23 13:47:29 -04005820 context->recordError(gl::Error(GL_INVALID_OPERATION));
5821 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005822 }
Geoff Langbfdea662014-07-23 14:16:32 -04005823
5824 if (n < 0)
5825 {
Geoff Langb1196682014-07-23 13:47:29 -04005826 context->recordError(gl::Error(GL_INVALID_VALUE));
5827 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005828 }
5829
5830 for (int arrayIndex = 0; arrayIndex < n; arrayIndex++)
5831 {
5832 arrays[arrayIndex] = context->createVertexArray();
5833 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005834 }
5835}
5836
5837GLboolean __stdcall glIsVertexArray(GLuint array)
5838{
5839 EVENT("(GLuint array = %u)", array);
5840
Geoff Langbfdea662014-07-23 14:16:32 -04005841 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005842 if (context)
5843 {
5844 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005845 {
Geoff Langb1196682014-07-23 13:47:29 -04005846 context->recordError(gl::Error(GL_INVALID_OPERATION));
5847 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005848 }
Geoff Langbfdea662014-07-23 14:16:32 -04005849
5850 if (array == 0)
5851 {
5852 return GL_FALSE;
5853 }
5854
5855 gl::VertexArray *vao = context->getVertexArray(array);
5856
5857 return (vao != NULL ? GL_TRUE : GL_FALSE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005858 }
5859
5860 return GL_FALSE;
5861}
5862
5863void __stdcall glGetIntegeri_v(GLenum target, GLuint index, GLint* data)
5864{
5865 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLint* data = 0x%0.8p)",
5866 target, index, data);
5867
Geoff Langbfdea662014-07-23 14:16:32 -04005868 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005869 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005870 {
Geoff Langbfdea662014-07-23 14:16:32 -04005871 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005872 {
Geoff Langb1196682014-07-23 13:47:29 -04005873 context->recordError(gl::Error(GL_INVALID_OPERATION));
5874 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005875 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005876
Geoff Lang3a61c322014-07-10 13:01:54 -04005877 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04005878 switch (target)
5879 {
5880 case GL_TRANSFORM_FEEDBACK_BUFFER_START:
5881 case GL_TRANSFORM_FEEDBACK_BUFFER_SIZE:
5882 case GL_TRANSFORM_FEEDBACK_BUFFER_BINDING:
Geoff Lang05881a02014-07-10 14:05:30 -04005883 if (index >= caps.maxTransformFeedbackSeparateAttributes)
5884 {
Geoff Langb1196682014-07-23 13:47:29 -04005885 context->recordError(gl::Error(GL_INVALID_VALUE));
5886 return;
Geoff Lang05881a02014-07-10 14:05:30 -04005887 }
Geoff Langbfdea662014-07-23 14:16:32 -04005888 break;
Geoff Langb1196682014-07-23 13:47:29 -04005889
Geoff Langbfdea662014-07-23 14:16:32 -04005890 case GL_UNIFORM_BUFFER_START:
5891 case GL_UNIFORM_BUFFER_SIZE:
5892 case GL_UNIFORM_BUFFER_BINDING:
Geoff Lang3a61c322014-07-10 13:01:54 -04005893 if (index >= caps.maxCombinedUniformBlocks)
5894 {
Geoff Langb1196682014-07-23 13:47:29 -04005895 context->recordError(gl::Error(GL_INVALID_VALUE));
5896 return;
Geoff Lang3a61c322014-07-10 13:01:54 -04005897 }
Geoff Langbfdea662014-07-23 14:16:32 -04005898 break;
Geoff Langb1196682014-07-23 13:47:29 -04005899
Geoff Langbfdea662014-07-23 14:16:32 -04005900 default:
Geoff Langb1196682014-07-23 13:47:29 -04005901 context->recordError(gl::Error(GL_INVALID_ENUM));
5902 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005903 }
5904
5905 if (!(context->getIndexedIntegerv(target, index, data)))
5906 {
5907 GLenum nativeType;
5908 unsigned int numParams = 0;
5909 if (!context->getIndexedQueryParameterInfo(target, &nativeType, &numParams))
Geoff Langb1196682014-07-23 13:47:29 -04005910 {
5911 context->recordError(gl::Error(GL_INVALID_ENUM));
5912 return;
5913 }
Shannon Woods15934d52013-08-19 14:28:49 -04005914
Geoff Langbfdea662014-07-23 14:16:32 -04005915 if (numParams == 0)
Geoff Langb1196682014-07-23 13:47:29 -04005916 {
Geoff Langbfdea662014-07-23 14:16:32 -04005917 return; // it is known that pname is valid, but there are no parameters to return
Geoff Langb1196682014-07-23 13:47:29 -04005918 }
Geoff Langbfdea662014-07-23 14:16:32 -04005919
5920 if (nativeType == GL_INT_64_ANGLEX)
Shannon Woods15934d52013-08-19 14:28:49 -04005921 {
Geoff Langbfdea662014-07-23 14:16:32 -04005922 GLint64 minIntValue = static_cast<GLint64>(std::numeric_limits<int>::min());
5923 GLint64 maxIntValue = static_cast<GLint64>(std::numeric_limits<int>::max());
5924 GLint64 *int64Params = new GLint64[numParams];
Shannon Woods15934d52013-08-19 14:28:49 -04005925
Geoff Langbfdea662014-07-23 14:16:32 -04005926 context->getIndexedInteger64v(target, index, int64Params);
Shannon Woods15934d52013-08-19 14:28:49 -04005927
Geoff Langbfdea662014-07-23 14:16:32 -04005928 for (unsigned int i = 0; i < numParams; ++i)
Shannon Woods15934d52013-08-19 14:28:49 -04005929 {
Geoff Langbfdea662014-07-23 14:16:32 -04005930 GLint64 clampedValue = std::max(std::min(int64Params[i], maxIntValue), minIntValue);
5931 data[i] = static_cast<GLint>(clampedValue);
Shannon Woods15934d52013-08-19 14:28:49 -04005932 }
Geoff Langbfdea662014-07-23 14:16:32 -04005933
5934 delete [] int64Params;
5935 }
5936 else
5937 {
5938 UNREACHABLE();
Shannon Woods15934d52013-08-19 14:28:49 -04005939 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005940 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005941 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005942}
5943
5944void __stdcall glBeginTransformFeedback(GLenum primitiveMode)
5945{
5946 EVENT("(GLenum primitiveMode = 0x%X)", primitiveMode);
5947
Geoff Langbfdea662014-07-23 14:16:32 -04005948 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005949 if (context)
5950 {
5951 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005952 {
Geoff Langb1196682014-07-23 13:47:29 -04005953 context->recordError(gl::Error(GL_INVALID_OPERATION));
5954 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005955 }
Geoff Langbfdea662014-07-23 14:16:32 -04005956
5957 switch (primitiveMode)
5958 {
5959 case GL_TRIANGLES:
5960 case GL_LINES:
5961 case GL_POINTS:
5962 break;
Geoff Langb1196682014-07-23 13:47:29 -04005963
Geoff Langbfdea662014-07-23 14:16:32 -04005964 default:
Geoff Langb1196682014-07-23 13:47:29 -04005965 context->recordError(gl::Error(GL_INVALID_ENUM));
5966 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005967 }
5968
5969 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
5970 ASSERT(transformFeedback != NULL);
5971
5972 if (transformFeedback->isStarted())
5973 {
Geoff Langb1196682014-07-23 13:47:29 -04005974 context->recordError(gl::Error(GL_INVALID_OPERATION));
5975 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005976 }
5977
5978 if (transformFeedback->isPaused())
5979 {
5980 transformFeedback->resume();
5981 }
5982 else
5983 {
5984 transformFeedback->start(primitiveMode);
5985 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005986 }
5987}
5988
5989void __stdcall glEndTransformFeedback(void)
5990{
5991 EVENT("(void)");
5992
Geoff Langbfdea662014-07-23 14:16:32 -04005993 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005994 if (context)
5995 {
5996 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005997 {
Geoff Langb1196682014-07-23 13:47:29 -04005998 context->recordError(gl::Error(GL_INVALID_OPERATION));
5999 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006000 }
Geoff Langbfdea662014-07-23 14:16:32 -04006001
6002 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
6003 ASSERT(transformFeedback != NULL);
6004
6005 if (!transformFeedback->isStarted())
6006 {
Geoff Langb1196682014-07-23 13:47:29 -04006007 context->recordError(gl::Error(GL_INVALID_OPERATION));
6008 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006009 }
6010
6011 transformFeedback->stop();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006012 }
6013}
6014
6015void __stdcall glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)
6016{
6017 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLuint buffer = %u, GLintptr offset = %d, GLsizeiptr size = %d)",
6018 target, index, buffer, offset, size);
6019
Geoff Langbfdea662014-07-23 14:16:32 -04006020 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006021 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006022 {
Geoff Langbfdea662014-07-23 14:16:32 -04006023 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006024 {
Geoff Langb1196682014-07-23 13:47:29 -04006025 context->recordError(gl::Error(GL_INVALID_OPERATION));
6026 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006027 }
6028
Geoff Lang3a61c322014-07-10 13:01:54 -04006029 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04006030 switch (target)
6031 {
6032 case GL_TRANSFORM_FEEDBACK_BUFFER:
Geoff Lang05881a02014-07-10 14:05:30 -04006033 if (index >= caps.maxTransformFeedbackSeparateAttributes)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006034 {
Geoff Langb1196682014-07-23 13:47:29 -04006035 context->recordError(gl::Error(GL_INVALID_VALUE));
6036 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006037 }
Geoff Langbfdea662014-07-23 14:16:32 -04006038 break;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006039
Geoff Langbfdea662014-07-23 14:16:32 -04006040 case GL_UNIFORM_BUFFER:
Geoff Lang3a61c322014-07-10 13:01:54 -04006041 if (index >= caps.maxUniformBufferBindings)
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006042 {
Geoff Langb1196682014-07-23 13:47:29 -04006043 context->recordError(gl::Error(GL_INVALID_VALUE));
6044 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006045 }
Geoff Langbfdea662014-07-23 14:16:32 -04006046 break;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006047
Geoff Langbfdea662014-07-23 14:16:32 -04006048 default:
Geoff Langb1196682014-07-23 13:47:29 -04006049 context->recordError(gl::Error(GL_INVALID_ENUM));
6050 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006051 }
6052
6053 if (buffer != 0 && size <= 0)
6054 {
Geoff Langb1196682014-07-23 13:47:29 -04006055 context->recordError(gl::Error(GL_INVALID_VALUE));
6056 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006057 }
6058
6059 switch (target)
6060 {
6061 case GL_TRANSFORM_FEEDBACK_BUFFER:
6062
6063 // size and offset must be a multiple of 4
6064 if (buffer != 0 && ((offset % 4) != 0 || (size % 4) != 0))
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006065 {
Geoff Langb1196682014-07-23 13:47:29 -04006066 context->recordError(gl::Error(GL_INVALID_VALUE));
6067 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006068 }
6069
Geoff Langbfdea662014-07-23 14:16:32 -04006070 context->bindIndexedTransformFeedbackBuffer(buffer, index, offset, size);
6071 context->bindGenericTransformFeedbackBuffer(buffer);
6072 break;
6073
6074 case GL_UNIFORM_BUFFER:
6075
6076 // it is an error to bind an offset not a multiple of the alignment
Geoff Lang3a61c322014-07-10 13:01:54 -04006077 if (buffer != 0 && (offset % caps.uniformBufferOffsetAlignment) != 0)
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006078 {
Geoff Langb1196682014-07-23 13:47:29 -04006079 context->recordError(gl::Error(GL_INVALID_VALUE));
6080 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006081 }
Geoff Langbfdea662014-07-23 14:16:32 -04006082
6083 context->bindIndexedUniformBuffer(buffer, index, offset, size);
6084 context->bindGenericUniformBuffer(buffer);
6085 break;
6086
6087 default:
6088 UNREACHABLE();
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006089 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006090 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006091}
6092
6093void __stdcall glBindBufferBase(GLenum target, GLuint index, GLuint buffer)
6094{
6095 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLuint buffer = %u)",
6096 target, index, buffer);
6097
Geoff Langbfdea662014-07-23 14:16:32 -04006098 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006099 if (context)
6100 {
6101 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006102 {
Geoff Langb1196682014-07-23 13:47:29 -04006103 context->recordError(gl::Error(GL_INVALID_OPERATION));
6104 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006105 }
Geoff Langbfdea662014-07-23 14:16:32 -04006106
Geoff Lang3a61c322014-07-10 13:01:54 -04006107 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04006108 switch (target)
6109 {
6110 case GL_TRANSFORM_FEEDBACK_BUFFER:
Geoff Lang05881a02014-07-10 14:05:30 -04006111 if (index >= caps.maxTransformFeedbackSeparateAttributes)
Geoff Langbfdea662014-07-23 14:16:32 -04006112 {
Geoff Langb1196682014-07-23 13:47:29 -04006113 context->recordError(gl::Error(GL_INVALID_VALUE));
6114 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006115 }
6116 break;
6117
6118 case GL_UNIFORM_BUFFER:
Geoff Lang3a61c322014-07-10 13:01:54 -04006119 if (index >= caps.maxUniformBufferBindings)
Geoff Langbfdea662014-07-23 14:16:32 -04006120 {
Geoff Langb1196682014-07-23 13:47:29 -04006121 context->recordError(gl::Error(GL_INVALID_VALUE));
6122 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006123 }
6124 break;
6125
6126 default:
Geoff Langb1196682014-07-23 13:47:29 -04006127 context->recordError(gl::Error(GL_INVALID_ENUM));
6128 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006129 }
6130
6131 switch (target)
6132 {
6133 case GL_TRANSFORM_FEEDBACK_BUFFER:
6134 context->bindIndexedTransformFeedbackBuffer(buffer, index, 0, 0);
6135 context->bindGenericTransformFeedbackBuffer(buffer);
6136 break;
6137
6138 case GL_UNIFORM_BUFFER:
6139 context->bindIndexedUniformBuffer(buffer, index, 0, 0);
6140 context->bindGenericUniformBuffer(buffer);
6141 break;
6142
6143 default:
6144 UNREACHABLE();
6145 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006146 }
6147}
6148
6149void __stdcall glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar* const* varyings, GLenum bufferMode)
6150{
6151 EVENT("(GLuint program = %u, GLsizei count = %d, const GLchar* const* varyings = 0x%0.8p, GLenum bufferMode = 0x%X)",
6152 program, count, varyings, bufferMode);
6153
Geoff Langbfdea662014-07-23 14:16:32 -04006154 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006155 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006156 {
Geoff Langbfdea662014-07-23 14:16:32 -04006157 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006158 {
Geoff Langb1196682014-07-23 13:47:29 -04006159 context->recordError(gl::Error(GL_INVALID_OPERATION));
6160 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006161 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006162
Geoff Langbfdea662014-07-23 14:16:32 -04006163 if (count < 0)
6164 {
Geoff Langb1196682014-07-23 13:47:29 -04006165 context->recordError(gl::Error(GL_INVALID_VALUE));
6166 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006167 }
6168
Geoff Lang05881a02014-07-10 14:05:30 -04006169 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04006170 switch (bufferMode)
6171 {
6172 case GL_INTERLEAVED_ATTRIBS:
6173 break;
6174 case GL_SEPARATE_ATTRIBS:
Geoff Lang05881a02014-07-10 14:05:30 -04006175 if (static_cast<GLuint>(count) > caps.maxTransformFeedbackSeparateAttributes)
Geoff Lang48dcae72014-02-05 16:28:24 -05006176 {
Geoff Langb1196682014-07-23 13:47:29 -04006177 context->recordError(gl::Error(GL_INVALID_VALUE));
6178 return;
Geoff Lang48dcae72014-02-05 16:28:24 -05006179 }
Geoff Langbfdea662014-07-23 14:16:32 -04006180 break;
6181 default:
Geoff Langb1196682014-07-23 13:47:29 -04006182 context->recordError(gl::Error(GL_INVALID_ENUM));
6183 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006184 }
Geoff Langbfdea662014-07-23 14:16:32 -04006185
6186 if (!gl::ValidProgram(context, program))
6187 {
6188 return;
6189 }
6190
6191 gl::Program *programObject = context->getProgram(program);
6192 ASSERT(programObject);
6193
6194 programObject->setTransformFeedbackVaryings(count, varyings, bufferMode);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006195 }
6196}
6197
6198void __stdcall glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei* length, GLsizei* size, GLenum* type, GLchar* name)
6199{
6200 EVENT("(GLuint program = %u, GLuint index = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, "
6201 "GLsizei* size = 0x%0.8p, GLenum* type = 0x%0.8p, GLchar* name = 0x%0.8p)",
6202 program, index, bufSize, length, size, type, name);
6203
Geoff Langbfdea662014-07-23 14:16:32 -04006204 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006205 if (context)
6206 {
6207 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006208 {
Geoff Langb1196682014-07-23 13:47:29 -04006209 context->recordError(gl::Error(GL_INVALID_OPERATION));
6210 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006211 }
Geoff Langbfdea662014-07-23 14:16:32 -04006212
6213 if (bufSize < 0)
6214 {
Geoff Langb1196682014-07-23 13:47:29 -04006215 context->recordError(gl::Error(GL_INVALID_VALUE));
6216 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006217 }
6218
6219 if (!gl::ValidProgram(context, program))
6220 {
6221 return;
6222 }
6223
6224 gl::Program *programObject = context->getProgram(program);
6225 ASSERT(programObject);
6226
6227 if (index >= static_cast<GLuint>(programObject->getTransformFeedbackVaryingCount()))
6228 {
Geoff Langb1196682014-07-23 13:47:29 -04006229 context->recordError(gl::Error(GL_INVALID_VALUE));
6230 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006231 }
6232
6233 programObject->getTransformFeedbackVarying(index, bufSize, length, size, type, name);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006234 }
6235}
6236
6237void __stdcall glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid* pointer)
6238{
6239 EVENT("(GLuint index = %u, GLint size = %d, GLenum type = 0x%X, GLsizei stride = %d, const GLvoid* pointer = 0x%0.8p)",
6240 index, size, type, stride, pointer);
6241
Geoff Langbfdea662014-07-23 14:16:32 -04006242 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006243 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006244 {
Geoff Langbfdea662014-07-23 14:16:32 -04006245 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006246 {
Geoff Langb1196682014-07-23 13:47:29 -04006247 context->recordError(gl::Error(GL_INVALID_OPERATION));
6248 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006249 }
6250
Geoff Langb1196682014-07-23 13:47:29 -04006251 if (index >= gl::MAX_VERTEX_ATTRIBS)
6252 {
6253 context->recordError(gl::Error(GL_INVALID_VALUE));
6254 return;
6255 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006256
Geoff Langb1196682014-07-23 13:47:29 -04006257 if (size < 1 || size > 4)
6258 {
6259 context->recordError(gl::Error(GL_INVALID_VALUE));
6260 return;
6261 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006262
Geoff Langb1196682014-07-23 13:47:29 -04006263 switch (type)
6264 {
6265 case GL_BYTE:
6266 case GL_UNSIGNED_BYTE:
6267 case GL_SHORT:
6268 case GL_UNSIGNED_SHORT:
6269 case GL_INT:
6270 case GL_UNSIGNED_INT:
6271 case GL_INT_2_10_10_10_REV:
6272 case GL_UNSIGNED_INT_2_10_10_10_REV:
6273 break;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006274
Geoff Langb1196682014-07-23 13:47:29 -04006275 default:
6276 context->recordError(gl::Error(GL_INVALID_ENUM));
6277 return;
6278 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006279
Geoff Langb1196682014-07-23 13:47:29 -04006280 if (stride < 0)
6281 {
6282 context->recordError(gl::Error(GL_INVALID_VALUE));
6283 return;
6284 }
Geoff Langbfdea662014-07-23 14:16:32 -04006285
Geoff Langb1196682014-07-23 13:47:29 -04006286 if ((type == GL_INT_2_10_10_10_REV || type == GL_UNSIGNED_INT_2_10_10_10_REV) && size != 4)
6287 {
6288 context->recordError(gl::Error(GL_INVALID_OPERATION));
6289 return;
6290 }
6291
Geoff Langbfdea662014-07-23 14:16:32 -04006292 // [OpenGL ES 3.0.2] Section 2.8 page 24:
6293 // An INVALID_OPERATION error is generated when a non-zero vertex array object
6294 // is bound, zero is bound to the ARRAY_BUFFER buffer object binding point,
6295 // and the pointer argument is not NULL.
6296 if (context->getState().getVertexArray()->id() != 0 && context->getState().getArrayBufferId() == 0 && pointer != NULL)
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00006297 {
Geoff Langb1196682014-07-23 13:47:29 -04006298 context->recordError(gl::Error(GL_INVALID_OPERATION));
6299 return;
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00006300 }
6301
Geoff Langbfdea662014-07-23 14:16:32 -04006302 context->getState().setVertexAttribState(index, context->getState().getTargetBuffer(GL_ARRAY_BUFFER), size, type, false, true,
6303 stride, pointer);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006304 }
6305}
6306
6307void __stdcall glGetVertexAttribIiv(GLuint index, GLenum pname, GLint* params)
6308{
6309 EVENT("(GLuint index = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
6310 index, pname, params);
6311
Geoff Langbfdea662014-07-23 14:16:32 -04006312 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006313 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006314 {
Geoff Langbfdea662014-07-23 14:16:32 -04006315 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006316 {
Geoff Langb1196682014-07-23 13:47:29 -04006317 context->recordError(gl::Error(GL_INVALID_OPERATION));
6318 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006319 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006320
Geoff Langbfdea662014-07-23 14:16:32 -04006321 if (index >= gl::MAX_VERTEX_ATTRIBS)
6322 {
Geoff Langb1196682014-07-23 13:47:29 -04006323 context->recordError(gl::Error(GL_INVALID_VALUE));
6324 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006325 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006326
Geoff Langbfdea662014-07-23 14:16:32 -04006327 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
Jamie Madilla7d05862013-07-02 11:57:06 -04006328
Geoff Langb1196682014-07-23 13:47:29 -04006329 if (!gl::ValidateGetVertexAttribParameters(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04006330 {
6331 return;
6332 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006333
Geoff Langbfdea662014-07-23 14:16:32 -04006334 if (pname == GL_CURRENT_VERTEX_ATTRIB)
6335 {
6336 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
6337 for (int i = 0; i < 4; ++i)
Jamie Madilla7d05862013-07-02 11:57:06 -04006338 {
Geoff Langbfdea662014-07-23 14:16:32 -04006339 params[i] = currentValueData.IntValues[i];
Jamie Madilla7d05862013-07-02 11:57:06 -04006340 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006341 }
Geoff Langbfdea662014-07-23 14:16:32 -04006342 else
6343 {
6344 *params = gl::QuerySingleVertexAttributeParameter<GLint>(attribState, pname);
6345 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006346 }
6347}
6348
6349void __stdcall glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint* params)
6350{
6351 EVENT("(GLuint index = %u, GLenum pname = 0x%X, GLuint* params = 0x%0.8p)",
6352 index, pname, params);
6353
Geoff Langbfdea662014-07-23 14:16:32 -04006354 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006355 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006356 {
Geoff Langbfdea662014-07-23 14:16:32 -04006357 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006358 {
Geoff Langb1196682014-07-23 13:47:29 -04006359 context->recordError(gl::Error(GL_INVALID_OPERATION));
6360 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006361 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006362
Geoff Langbfdea662014-07-23 14:16:32 -04006363 if (index >= gl::MAX_VERTEX_ATTRIBS)
6364 {
Geoff Langb1196682014-07-23 13:47:29 -04006365 context->recordError(gl::Error(GL_INVALID_VALUE));
6366 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006367 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006368
Geoff Langbfdea662014-07-23 14:16:32 -04006369 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
Jamie Madilla7d05862013-07-02 11:57:06 -04006370
Geoff Langb1196682014-07-23 13:47:29 -04006371 if (!gl::ValidateGetVertexAttribParameters(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04006372 {
6373 return;
6374 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006375
Geoff Langbfdea662014-07-23 14:16:32 -04006376 if (pname == GL_CURRENT_VERTEX_ATTRIB)
6377 {
6378 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
6379 for (int i = 0; i < 4; ++i)
Jamie Madilla7d05862013-07-02 11:57:06 -04006380 {
Geoff Langbfdea662014-07-23 14:16:32 -04006381 params[i] = currentValueData.UnsignedIntValues[i];
Jamie Madilla7d05862013-07-02 11:57:06 -04006382 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006383 }
Geoff Langbfdea662014-07-23 14:16:32 -04006384 else
6385 {
6386 *params = gl::QuerySingleVertexAttributeParameter<GLuint>(attribState, pname);
6387 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006388 }
6389}
6390
6391void __stdcall glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w)
6392{
6393 EVENT("(GLuint index = %u, GLint x = %d, GLint y = %d, GLint z = %d, GLint w = %d)",
6394 index, x, y, z, w);
6395
Geoff Langbfdea662014-07-23 14:16:32 -04006396 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006397 if (context)
6398 {
6399 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006400 {
Geoff Langb1196682014-07-23 13:47:29 -04006401 context->recordError(gl::Error(GL_INVALID_OPERATION));
6402 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006403 }
Geoff Langbfdea662014-07-23 14:16:32 -04006404
6405 if (index >= gl::MAX_VERTEX_ATTRIBS)
6406 {
Geoff Langb1196682014-07-23 13:47:29 -04006407 context->recordError(gl::Error(GL_INVALID_VALUE));
6408 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006409 }
6410
6411 GLint vals[4] = { x, y, z, w };
6412 context->getState().setVertexAttribi(index, vals);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006413 }
6414}
6415
6416void __stdcall glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)
6417{
6418 EVENT("(GLuint index = %u, GLuint x = %u, GLuint y = %u, GLuint z = %u, GLuint w = %u)",
6419 index, x, y, z, w);
6420
Geoff Langbfdea662014-07-23 14:16:32 -04006421 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006422 if (context)
6423 {
6424 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006425 {
Geoff Langb1196682014-07-23 13:47:29 -04006426 context->recordError(gl::Error(GL_INVALID_OPERATION));
6427 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006428 }
Geoff Langbfdea662014-07-23 14:16:32 -04006429
6430 if (index >= gl::MAX_VERTEX_ATTRIBS)
6431 {
Geoff Langb1196682014-07-23 13:47:29 -04006432 context->recordError(gl::Error(GL_INVALID_VALUE));
6433 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006434 }
6435
6436 GLuint vals[4] = { x, y, z, w };
6437 context->getState().setVertexAttribu(index, vals);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006438 }
6439}
6440
6441void __stdcall glVertexAttribI4iv(GLuint index, const GLint* v)
6442{
6443 EVENT("(GLuint index = %u, const GLint* v = 0x%0.8p)", index, v);
6444
Geoff Langbfdea662014-07-23 14:16:32 -04006445 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006446 if (context)
6447 {
6448 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006449 {
Geoff Langb1196682014-07-23 13:47:29 -04006450 context->recordError(gl::Error(GL_INVALID_OPERATION));
6451 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006452 }
Geoff Langbfdea662014-07-23 14:16:32 -04006453
6454 if (index >= gl::MAX_VERTEX_ATTRIBS)
6455 {
Geoff Langb1196682014-07-23 13:47:29 -04006456 context->recordError(gl::Error(GL_INVALID_VALUE));
6457 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006458 }
6459
6460 context->getState().setVertexAttribi(index, v);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006461 }
6462}
6463
6464void __stdcall glVertexAttribI4uiv(GLuint index, const GLuint* v)
6465{
6466 EVENT("(GLuint index = %u, const GLuint* v = 0x%0.8p)", index, v);
6467
Geoff Langbfdea662014-07-23 14:16:32 -04006468 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006469 if (context)
6470 {
6471 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006472 {
Geoff Langb1196682014-07-23 13:47:29 -04006473 context->recordError(gl::Error(GL_INVALID_OPERATION));
6474 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006475 }
Geoff Langbfdea662014-07-23 14:16:32 -04006476
6477 if (index >= gl::MAX_VERTEX_ATTRIBS)
6478 {
Geoff Langb1196682014-07-23 13:47:29 -04006479 context->recordError(gl::Error(GL_INVALID_VALUE));
6480 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006481 }
6482
6483 context->getState().setVertexAttribu(index, v);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006484 }
6485}
6486
6487void __stdcall glGetUniformuiv(GLuint program, GLint location, GLuint* params)
6488{
6489 EVENT("(GLuint program = %u, GLint location = %d, GLuint* params = 0x%0.8p)",
6490 program, location, params);
6491
Geoff Langbfdea662014-07-23 14:16:32 -04006492 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006493 if (context)
6494 {
Jamie Madill0063c512014-08-25 15:47:53 -04006495 if (!ValidateGetUniformuiv(context, program, location, params))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006496 {
Jamie Madill0063c512014-08-25 15:47:53 -04006497 return;
shannon.woods%transgaming.com@gtempaccount.come2290122013-04-13 03:41:07 +00006498 }
Geoff Langbfdea662014-07-23 14:16:32 -04006499
Jamie Madilla502c742014-08-28 17:19:13 -04006500 gl::Program *programObject = context->getProgram(program);
6501 ASSERT(programObject);
6502 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
Jamie Madill0063c512014-08-25 15:47:53 -04006503 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04006504
Jamie Madill99a1e982014-08-25 15:47:54 -04006505 programBinary->getUniformuiv(location, params);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006506 }
6507}
6508
6509GLint __stdcall glGetFragDataLocation(GLuint program, const GLchar *name)
6510{
6511 EVENT("(GLuint program = %u, const GLchar *name = 0x%0.8p)",
6512 program, name);
6513
Geoff Langbfdea662014-07-23 14:16:32 -04006514 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006515 if (context)
6516 {
6517 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006518 {
Geoff Langb1196682014-07-23 13:47:29 -04006519 context->recordError(gl::Error(GL_INVALID_OPERATION));
6520 return -1;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006521 }
Geoff Langbfdea662014-07-23 14:16:32 -04006522
6523 if (program == 0)
6524 {
Geoff Langb1196682014-07-23 13:47:29 -04006525 context->recordError(gl::Error(GL_INVALID_VALUE));
6526 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04006527 }
6528
6529 gl::Program *programObject = context->getProgram(program);
6530
6531 if (!programObject || !programObject->isLinked())
6532 {
Geoff Langb1196682014-07-23 13:47:29 -04006533 context->recordError(gl::Error(GL_INVALID_OPERATION));
6534 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04006535 }
6536
6537 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6538 if (!programBinary)
6539 {
Geoff Langb1196682014-07-23 13:47:29 -04006540 context->recordError(gl::Error(GL_INVALID_OPERATION));
6541 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04006542 }
6543
6544 return programBinary->getFragDataLocation(name);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006545 }
6546
6547 return 0;
6548}
6549
6550void __stdcall glUniform1ui(GLint location, GLuint v0)
6551{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006552 glUniform1uiv(location, 1, &v0);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006553}
6554
6555void __stdcall glUniform2ui(GLint location, GLuint v0, GLuint v1)
6556{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006557 const GLuint xy[] = { v0, v1 };
6558 glUniform2uiv(location, 1, xy);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006559}
6560
6561void __stdcall glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2)
6562{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006563 const GLuint xyz[] = { v0, v1, v2 };
6564 glUniform3uiv(location, 1, xyz);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006565}
6566
6567void __stdcall glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3)
6568{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006569 const GLuint xyzw[] = { v0, v1, v2, v3 };
6570 glUniform4uiv(location, 1, xyzw);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006571}
6572
6573void __stdcall glUniform1uiv(GLint location, GLsizei count, const GLuint* value)
6574{
6575 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6576 location, count, value);
6577
Geoff Langbfdea662014-07-23 14:16:32 -04006578 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006579 if (context)
6580 {
6581 if (!ValidateUniform(context, GL_UNSIGNED_INT, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006582 {
Geoff Langbfdea662014-07-23 14:16:32 -04006583 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006584 }
Geoff Langbfdea662014-07-23 14:16:32 -04006585
6586 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6587 programBinary->setUniform1uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006588 }
6589}
6590
6591void __stdcall glUniform2uiv(GLint location, GLsizei count, const GLuint* value)
6592{
6593 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6594 location, count, value);
6595
Geoff Langbfdea662014-07-23 14:16:32 -04006596 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006597 if (context)
6598 {
6599 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC2, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006600 {
Geoff Langbfdea662014-07-23 14:16:32 -04006601 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006602 }
Geoff Langbfdea662014-07-23 14:16:32 -04006603
6604 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6605 programBinary->setUniform2uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006606 }
6607}
6608
6609void __stdcall glUniform3uiv(GLint location, GLsizei count, const GLuint* value)
6610{
6611 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value)",
6612 location, count, value);
6613
Geoff Langbfdea662014-07-23 14:16:32 -04006614 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006615 if (context)
6616 {
6617 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC3, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006618 {
Geoff Langbfdea662014-07-23 14:16:32 -04006619 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006620 }
Geoff Langbfdea662014-07-23 14:16:32 -04006621
6622 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6623 programBinary->setUniform3uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006624 }
6625}
6626
6627void __stdcall glUniform4uiv(GLint location, GLsizei count, const GLuint* value)
6628{
6629 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6630 location, count, value);
6631
Geoff Langbfdea662014-07-23 14:16:32 -04006632 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006633 if (context)
6634 {
6635 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC4, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006636 {
Geoff Langbfdea662014-07-23 14:16:32 -04006637 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006638 }
Geoff Langbfdea662014-07-23 14:16:32 -04006639
6640 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6641 programBinary->setUniform4uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006642 }
6643}
6644
6645void __stdcall glClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint* value)
6646{
6647 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLint* value = 0x%0.8p)",
6648 buffer, drawbuffer, value);
6649
Geoff Langbfdea662014-07-23 14:16:32 -04006650 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006651 if (context)
6652 {
6653 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006654 {
Geoff Langbfdea662014-07-23 14:16:32 -04006655 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006656 }
Geoff Langbfdea662014-07-23 14:16:32 -04006657
6658 switch (buffer)
6659 {
6660 case GL_COLOR:
6661 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6662 {
Geoff Langb1196682014-07-23 13:47:29 -04006663 context->recordError(gl::Error(GL_INVALID_VALUE));
6664 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006665 }
6666 break;
Geoff Langb1196682014-07-23 13:47:29 -04006667
Geoff Langbfdea662014-07-23 14:16:32 -04006668 case GL_STENCIL:
6669 if (drawbuffer != 0)
6670 {
Geoff Langb1196682014-07-23 13:47:29 -04006671 context->recordError(gl::Error(GL_INVALID_VALUE));
6672 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006673 }
6674 break;
Geoff Langb1196682014-07-23 13:47:29 -04006675
Geoff Langbfdea662014-07-23 14:16:32 -04006676 default:
Geoff Langb1196682014-07-23 13:47:29 -04006677 context->recordError(gl::Error(GL_INVALID_ENUM));
6678 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006679 }
6680
Geoff Langcc79b8c2014-07-25 13:48:02 -04006681 gl::Error error = context->clearBufferiv(buffer, drawbuffer, value);
6682 if (error.isError())
6683 {
6684 context->recordError(error);
6685 return;
6686 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006687 }
6688}
6689
6690void __stdcall glClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint* value)
6691{
6692 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLuint* value = 0x%0.8p)",
6693 buffer, drawbuffer, value);
6694
Geoff Langbfdea662014-07-23 14:16:32 -04006695 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006696 if (context)
6697 {
6698 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006699 {
Geoff Langbfdea662014-07-23 14:16:32 -04006700 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006701 }
Geoff Langbfdea662014-07-23 14:16:32 -04006702
6703 switch (buffer)
6704 {
6705 case GL_COLOR:
6706 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6707 {
Geoff Langb1196682014-07-23 13:47:29 -04006708 context->recordError(gl::Error(GL_INVALID_VALUE));
6709 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006710 }
6711 break;
Geoff Langb1196682014-07-23 13:47:29 -04006712
Geoff Langbfdea662014-07-23 14:16:32 -04006713 default:
Geoff Langb1196682014-07-23 13:47:29 -04006714 context->recordError(gl::Error(GL_INVALID_ENUM));
6715 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006716 }
6717
Geoff Langcc79b8c2014-07-25 13:48:02 -04006718 gl::Error error = context->clearBufferuiv(buffer, drawbuffer, value);
6719 if (error.isError())
6720 {
6721 context->recordError(error);
6722 return;
6723 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006724 }
6725}
6726
6727void __stdcall glClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat* value)
6728{
6729 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLfloat* value = 0x%0.8p)",
6730 buffer, drawbuffer, value);
6731
Geoff Langbfdea662014-07-23 14:16:32 -04006732 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006733 if (context)
6734 {
6735 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006736 {
Geoff Langbfdea662014-07-23 14:16:32 -04006737 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006738 }
Geoff Langbfdea662014-07-23 14:16:32 -04006739
6740 switch (buffer)
6741 {
6742 case GL_COLOR:
6743 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6744 {
Geoff Langb1196682014-07-23 13:47:29 -04006745 context->recordError(gl::Error(GL_INVALID_VALUE));
6746 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006747 }
6748 break;
Geoff Langb1196682014-07-23 13:47:29 -04006749
Geoff Langbfdea662014-07-23 14:16:32 -04006750 case GL_DEPTH:
6751 if (drawbuffer != 0)
6752 {
Geoff Langb1196682014-07-23 13:47:29 -04006753 context->recordError(gl::Error(GL_INVALID_VALUE));
6754 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006755 }
6756 break;
Geoff Langb1196682014-07-23 13:47:29 -04006757
Geoff Langbfdea662014-07-23 14:16:32 -04006758 default:
Geoff Langb1196682014-07-23 13:47:29 -04006759 context->recordError(gl::Error(GL_INVALID_ENUM));
6760 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006761 }
6762
Geoff Langcc79b8c2014-07-25 13:48:02 -04006763 gl::Error error = context->clearBufferfv(buffer, drawbuffer, value);
6764 if (error.isError())
6765 {
6766 context->recordError(error);
6767 return;
6768 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006769 }
6770}
6771
6772void __stdcall glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil)
6773{
6774 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, GLfloat depth, GLint stencil = %d)",
6775 buffer, drawbuffer, depth, stencil);
6776
Geoff Langbfdea662014-07-23 14:16:32 -04006777 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006778 if (context)
6779 {
6780 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006781 {
Geoff Langbfdea662014-07-23 14:16:32 -04006782 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006783 }
Geoff Langbfdea662014-07-23 14:16:32 -04006784
6785 switch (buffer)
6786 {
6787 case GL_DEPTH_STENCIL:
6788 if (drawbuffer != 0)
6789 {
Geoff Langb1196682014-07-23 13:47:29 -04006790 context->recordError(gl::Error(GL_INVALID_VALUE));
6791 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006792 }
6793 break;
Geoff Langb1196682014-07-23 13:47:29 -04006794
Geoff Langbfdea662014-07-23 14:16:32 -04006795 default:
Geoff Langb1196682014-07-23 13:47:29 -04006796 context->recordError(gl::Error(GL_INVALID_ENUM));
6797 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006798 }
6799
Geoff Langcc79b8c2014-07-25 13:48:02 -04006800 gl::Error error = context->clearBufferfi(buffer, drawbuffer, depth, stencil);
6801 if (error.isError())
6802 {
6803 context->recordError(error);
6804 return;
6805 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006806 }
6807}
6808
6809const GLubyte* __stdcall glGetStringi(GLenum name, GLuint index)
6810{
6811 EVENT("(GLenum name = 0x%X, GLuint index = %u)", name, index);
6812
Geoff Langbfdea662014-07-23 14:16:32 -04006813 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006814 if (context)
6815 {
6816 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006817 {
Geoff Langb1196682014-07-23 13:47:29 -04006818 context->recordError(gl::Error(GL_INVALID_OPERATION));
6819 return NULL;
shannonwoods@chromium.org302df742013-05-30 00:05:54 +00006820 }
Geoff Langbfdea662014-07-23 14:16:32 -04006821
6822 if (name != GL_EXTENSIONS)
6823 {
Geoff Langb1196682014-07-23 13:47:29 -04006824 context->recordError(gl::Error(GL_INVALID_ENUM));
6825 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04006826 }
6827
6828 if (index >= context->getExtensionStringCount())
6829 {
Geoff Langb1196682014-07-23 13:47:29 -04006830 context->recordError(gl::Error(GL_INVALID_VALUE));
6831 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04006832 }
6833
6834 return reinterpret_cast<const GLubyte*>(context->getExtensionString(index).c_str());
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006835 }
6836
6837 return NULL;
6838}
6839
6840void __stdcall glCopyBufferSubData(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size)
6841{
6842 EVENT("(GLenum readTarget = 0x%X, GLenum writeTarget = 0x%X, GLintptr readOffset = %d, GLintptr writeOffset = %d, GLsizeiptr size = %d)",
6843 readTarget, writeTarget, readOffset, writeOffset, size);
6844
Geoff Langbfdea662014-07-23 14:16:32 -04006845 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006846 if (context)
6847 {
6848 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006849 {
Geoff Langb1196682014-07-23 13:47:29 -04006850 context->recordError(gl::Error(GL_INVALID_OPERATION));
6851 return;
shannon.woods%transgaming.com@gtempaccount.com296c3f22013-04-13 03:39:39 +00006852 }
Geoff Langbfdea662014-07-23 14:16:32 -04006853
6854 if (!gl::ValidBufferTarget(context, readTarget) || !gl::ValidBufferTarget(context, readTarget))
6855 {
Geoff Langb1196682014-07-23 13:47:29 -04006856 context->recordError(gl::Error(GL_INVALID_ENUM));
6857 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006858 }
6859
6860 gl::Buffer *readBuffer = context->getState().getTargetBuffer(readTarget);
6861 gl::Buffer *writeBuffer = context->getState().getTargetBuffer(writeTarget);
6862
6863 if (!readBuffer || !writeBuffer)
6864 {
Geoff Langb1196682014-07-23 13:47:29 -04006865 context->recordError(gl::Error(GL_INVALID_OPERATION));
6866 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006867 }
6868
Jamie Madillcfaaf722014-07-31 10:47:54 -04006869 // Verify that readBuffer and writeBuffer are not currently mapped
Geoff Langbfdea662014-07-23 14:16:32 -04006870 if (readBuffer->isMapped() || writeBuffer->isMapped())
6871 {
Geoff Langb1196682014-07-23 13:47:29 -04006872 context->recordError(gl::Error(GL_INVALID_OPERATION));
6873 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006874 }
6875
6876 if (readOffset < 0 || writeOffset < 0 || size < 0 ||
6877 static_cast<unsigned int>(readOffset + size) > readBuffer->getSize() ||
6878 static_cast<unsigned int>(writeOffset + size) > writeBuffer->getSize())
6879 {
Geoff Langb1196682014-07-23 13:47:29 -04006880 context->recordError(gl::Error(GL_INVALID_VALUE));
6881 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006882 }
6883
6884 if (readBuffer == writeBuffer && abs(readOffset - writeOffset) < size)
6885 {
Geoff Langb1196682014-07-23 13:47:29 -04006886 context->recordError(gl::Error(GL_INVALID_VALUE));
6887 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006888 }
6889
Geoff Langbfdea662014-07-23 14:16:32 -04006890 // if size is zero, the copy is a successful no-op
6891 if (size > 0)
6892 {
Geoff Lang2a1c15a2014-07-25 11:43:00 -04006893 gl::Error error = writeBuffer->copyBufferSubData(readBuffer, readOffset, writeOffset, size);
6894 if (error.isError())
6895 {
6896 context->recordError(error);
6897 return;
6898 }
Geoff Langbfdea662014-07-23 14:16:32 -04006899 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006900 }
6901}
6902
6903void __stdcall glGetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar* const* uniformNames, GLuint* uniformIndices)
6904{
6905 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLchar* const* uniformNames = 0x%0.8p, GLuint* uniformIndices = 0x%0.8p)",
6906 program, uniformCount, uniformNames, uniformIndices);
6907
Geoff Langbfdea662014-07-23 14:16:32 -04006908 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006909 if (context)
6910 {
6911 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006912 {
Geoff Langb1196682014-07-23 13:47:29 -04006913 context->recordError(gl::Error(GL_INVALID_OPERATION));
6914 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006915 }
6916
6917 if (uniformCount < 0)
6918 {
Geoff Langb1196682014-07-23 13:47:29 -04006919 context->recordError(gl::Error(GL_INVALID_VALUE));
6920 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006921 }
6922
6923 gl::Program *programObject = context->getProgram(program);
6924
6925 if (!programObject)
6926 {
6927 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006928 {
Geoff Langb1196682014-07-23 13:47:29 -04006929 context->recordError(gl::Error(GL_INVALID_OPERATION));
6930 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006931 }
Geoff Langbfdea662014-07-23 14:16:32 -04006932 else
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006933 {
Geoff Langb1196682014-07-23 13:47:29 -04006934 context->recordError(gl::Error(GL_INVALID_VALUE));
6935 return;
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006936 }
Geoff Langbfdea662014-07-23 14:16:32 -04006937 }
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006938
Geoff Langbfdea662014-07-23 14:16:32 -04006939 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6940 if (!programObject->isLinked() || !programBinary)
6941 {
6942 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006943 {
Geoff Langbfdea662014-07-23 14:16:32 -04006944 uniformIndices[uniformId] = GL_INVALID_INDEX;
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006945 }
6946 }
Geoff Langbfdea662014-07-23 14:16:32 -04006947 else
6948 {
6949 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
6950 {
6951 uniformIndices[uniformId] = programBinary->getUniformIndex(uniformNames[uniformId]);
6952 }
6953 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006954 }
6955}
6956
6957void __stdcall glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint* uniformIndices, GLenum pname, GLint* params)
6958{
6959 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLuint* uniformIndices = 0x%0.8p, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
6960 program, uniformCount, uniformIndices, pname, params);
6961
Geoff Langbfdea662014-07-23 14:16:32 -04006962 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006963 if (context)
6964 {
6965 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006966 {
Geoff Langb1196682014-07-23 13:47:29 -04006967 context->recordError(gl::Error(GL_INVALID_OPERATION));
6968 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006969 }
6970
6971 if (uniformCount < 0)
6972 {
Geoff Langb1196682014-07-23 13:47:29 -04006973 context->recordError(gl::Error(GL_INVALID_VALUE));
6974 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006975 }
6976
6977 gl::Program *programObject = context->getProgram(program);
6978
6979 if (!programObject)
6980 {
6981 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006982 {
Geoff Langb1196682014-07-23 13:47:29 -04006983 context->recordError(gl::Error(GL_INVALID_OPERATION));
6984 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006985 }
Geoff Langbfdea662014-07-23 14:16:32 -04006986 else
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006987 {
Geoff Langb1196682014-07-23 13:47:29 -04006988 context->recordError(gl::Error(GL_INVALID_VALUE));
6989 return;
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006990 }
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006991 }
Geoff Langbfdea662014-07-23 14:16:32 -04006992
6993 switch (pname)
6994 {
6995 case GL_UNIFORM_TYPE:
6996 case GL_UNIFORM_SIZE:
6997 case GL_UNIFORM_NAME_LENGTH:
6998 case GL_UNIFORM_BLOCK_INDEX:
6999 case GL_UNIFORM_OFFSET:
7000 case GL_UNIFORM_ARRAY_STRIDE:
7001 case GL_UNIFORM_MATRIX_STRIDE:
7002 case GL_UNIFORM_IS_ROW_MAJOR:
7003 break;
Geoff Langb1196682014-07-23 13:47:29 -04007004
Geoff Langbfdea662014-07-23 14:16:32 -04007005 default:
Geoff Langb1196682014-07-23 13:47:29 -04007006 context->recordError(gl::Error(GL_INVALID_ENUM));
7007 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007008 }
7009
7010 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7011
7012 if (!programBinary && uniformCount > 0)
7013 {
Geoff Langb1196682014-07-23 13:47:29 -04007014 context->recordError(gl::Error(GL_INVALID_VALUE));
7015 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007016 }
7017
7018 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
7019 {
7020 const GLuint index = uniformIndices[uniformId];
7021
7022 if (index >= (GLuint)programBinary->getActiveUniformCount())
7023 {
Geoff Langb1196682014-07-23 13:47:29 -04007024 context->recordError(gl::Error(GL_INVALID_VALUE));
7025 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007026 }
7027 }
7028
7029 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
7030 {
7031 const GLuint index = uniformIndices[uniformId];
7032 params[uniformId] = programBinary->getActiveUniformi(index, pname);
7033 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007034 }
7035}
7036
7037GLuint __stdcall glGetUniformBlockIndex(GLuint program, const GLchar* uniformBlockName)
7038{
7039 EVENT("(GLuint program = %u, const GLchar* uniformBlockName = 0x%0.8p)", program, uniformBlockName);
7040
Geoff Langbfdea662014-07-23 14:16:32 -04007041 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007042 if (context)
7043 {
7044 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007045 {
Geoff Langb1196682014-07-23 13:47:29 -04007046 context->recordError(gl::Error(GL_INVALID_OPERATION));
7047 return GL_INVALID_INDEX;
Geoff Langbfdea662014-07-23 14:16:32 -04007048 }
7049
7050 gl::Program *programObject = context->getProgram(program);
7051
7052 if (!programObject)
7053 {
7054 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007055 {
Geoff Langb1196682014-07-23 13:47:29 -04007056 context->recordError(gl::Error(GL_INVALID_OPERATION));
7057 return GL_INVALID_INDEX;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007058 }
Geoff Langbfdea662014-07-23 14:16:32 -04007059 else
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00007060 {
Geoff Langb1196682014-07-23 13:47:29 -04007061 context->recordError(gl::Error(GL_INVALID_VALUE));
7062 return GL_INVALID_INDEX;
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00007063 }
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00007064 }
Geoff Langbfdea662014-07-23 14:16:32 -04007065
7066 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7067 if (!programBinary)
7068 {
7069 return GL_INVALID_INDEX;
7070 }
7071
7072 return programBinary->getUniformBlockIndex(uniformBlockName);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007073 }
7074
7075 return 0;
7076}
7077
7078void __stdcall glGetActiveUniformBlockiv(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint* params)
7079{
7080 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
7081 program, uniformBlockIndex, pname, params);
7082
Geoff Langbfdea662014-07-23 14:16:32 -04007083 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007084 if (context)
7085 {
7086 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007087 {
Geoff Langb1196682014-07-23 13:47:29 -04007088 context->recordError(gl::Error(GL_INVALID_OPERATION));
7089 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007090 }
7091 gl::Program *programObject = context->getProgram(program);
7092
7093 if (!programObject)
7094 {
7095 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007096 {
Geoff Langb1196682014-07-23 13:47:29 -04007097 context->recordError(gl::Error(GL_INVALID_OPERATION));
7098 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007099 }
Geoff Langbfdea662014-07-23 14:16:32 -04007100 else
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00007101 {
Geoff Langb1196682014-07-23 13:47:29 -04007102 context->recordError(gl::Error(GL_INVALID_VALUE));
7103 return;
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00007104 }
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00007105 }
Geoff Langbfdea662014-07-23 14:16:32 -04007106
7107 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7108
7109 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
7110 {
Geoff Langb1196682014-07-23 13:47:29 -04007111 context->recordError(gl::Error(GL_INVALID_VALUE));
7112 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007113 }
7114
7115 switch (pname)
7116 {
7117 case GL_UNIFORM_BLOCK_BINDING:
7118 *params = static_cast<GLint>(programObject->getUniformBlockBinding(uniformBlockIndex));
7119 break;
7120
7121 case GL_UNIFORM_BLOCK_DATA_SIZE:
7122 case GL_UNIFORM_BLOCK_NAME_LENGTH:
7123 case GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS:
7124 case GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES:
7125 case GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER:
7126 case GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER:
7127 programBinary->getActiveUniformBlockiv(uniformBlockIndex, pname, params);
7128 break;
7129
7130 default:
Geoff Langb1196682014-07-23 13:47:29 -04007131 context->recordError(gl::Error(GL_INVALID_ENUM));
7132 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007133 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007134 }
7135}
7136
7137void __stdcall glGetActiveUniformBlockName(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei* length, GLchar* uniformBlockName)
7138{
7139 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLchar* uniformBlockName = 0x%0.8p)",
7140 program, uniformBlockIndex, bufSize, length, uniformBlockName);
7141
Geoff Langbfdea662014-07-23 14:16:32 -04007142 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007143 if (context)
7144 {
7145 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007146 {
Geoff Langb1196682014-07-23 13:47:29 -04007147 context->recordError(gl::Error(GL_INVALID_OPERATION));
7148 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007149 }
7150
7151 gl::Program *programObject = context->getProgram(program);
7152
7153 if (!programObject)
7154 {
7155 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007156 {
Geoff Langb1196682014-07-23 13:47:29 -04007157 context->recordError(gl::Error(GL_INVALID_OPERATION));
7158 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007159 }
Geoff Langbfdea662014-07-23 14:16:32 -04007160 else
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00007161 {
Geoff Langb1196682014-07-23 13:47:29 -04007162 context->recordError(gl::Error(GL_INVALID_VALUE));
7163 return;
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00007164 }
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00007165 }
Geoff Langbfdea662014-07-23 14:16:32 -04007166
7167 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7168
7169 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
7170 {
Geoff Langb1196682014-07-23 13:47:29 -04007171 context->recordError(gl::Error(GL_INVALID_VALUE));
7172 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007173 }
7174
7175 programBinary->getActiveUniformBlockName(uniformBlockIndex, bufSize, length, uniformBlockName);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007176 }
7177}
7178
7179void __stdcall glUniformBlockBinding(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding)
7180{
7181 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLuint uniformBlockBinding = %u)",
7182 program, uniformBlockIndex, uniformBlockBinding);
7183
Geoff Langbfdea662014-07-23 14:16:32 -04007184 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007185 if (context)
7186 {
7187 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007188 {
Geoff Langb1196682014-07-23 13:47:29 -04007189 context->recordError(gl::Error(GL_INVALID_OPERATION));
7190 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007191 }
7192
Geoff Lang3a61c322014-07-10 13:01:54 -04007193 if (uniformBlockBinding >= context->getCaps().maxUniformBufferBindings)
Geoff Langbfdea662014-07-23 14:16:32 -04007194 {
Geoff Langb1196682014-07-23 13:47:29 -04007195 context->recordError(gl::Error(GL_INVALID_VALUE));
7196 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007197 }
7198
7199 gl::Program *programObject = context->getProgram(program);
7200
7201 if (!programObject)
7202 {
7203 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007204 {
Geoff Langb1196682014-07-23 13:47:29 -04007205 context->recordError(gl::Error(GL_INVALID_OPERATION));
7206 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007207 }
Geoff Langbfdea662014-07-23 14:16:32 -04007208 else
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00007209 {
Geoff Langb1196682014-07-23 13:47:29 -04007210 context->recordError(gl::Error(GL_INVALID_VALUE));
7211 return;
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00007212 }
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00007213 }
Geoff Langbfdea662014-07-23 14:16:32 -04007214
7215 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7216
7217 // if never linked, there won't be any uniform blocks
7218 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
7219 {
Geoff Langb1196682014-07-23 13:47:29 -04007220 context->recordError(gl::Error(GL_INVALID_VALUE));
7221 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007222 }
7223
7224 programObject->bindUniformBlock(uniformBlockIndex, uniformBlockBinding);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007225 }
7226}
7227
7228void __stdcall glDrawArraysInstanced(GLenum mode, GLint first, GLsizei count, GLsizei instanceCount)
7229{
7230 EVENT("(GLenum mode = 0x%X, GLint first = %d, GLsizei count = %d, GLsizei instanceCount = %d)",
7231 mode, first, count, instanceCount);
7232
Geoff Langbfdea662014-07-23 14:16:32 -04007233 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007234 if (context)
7235 {
7236 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007237 {
Geoff Langb1196682014-07-23 13:47:29 -04007238 context->recordError(gl::Error(GL_INVALID_OPERATION));
7239 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007240 }
Geoff Langbfdea662014-07-23 14:16:32 -04007241
7242 // glDrawArraysInstanced
7243 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007244 }
7245}
7246
7247void __stdcall glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsizei instanceCount)
7248{
7249 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p, GLsizei instanceCount = %d)",
7250 mode, count, type, indices, instanceCount);
7251
Geoff Langbfdea662014-07-23 14:16:32 -04007252 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007253 if (context)
7254 {
7255 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007256 {
Geoff Langb1196682014-07-23 13:47:29 -04007257 context->recordError(gl::Error(GL_INVALID_OPERATION));
7258 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007259 }
Geoff Langbfdea662014-07-23 14:16:32 -04007260
7261 // glDrawElementsInstanced
7262 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007263 }
7264}
7265
7266GLsync __stdcall glFenceSync(GLenum condition, GLbitfield flags)
7267{
7268 EVENT("(GLenum condition = 0x%X, GLbitfield flags = 0x%X)", condition, flags);
7269
Geoff Langbfdea662014-07-23 14:16:32 -04007270 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007271 if (context)
7272 {
7273 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007274 {
Geoff Langb1196682014-07-23 13:47:29 -04007275 context->recordError(gl::Error(GL_INVALID_OPERATION));
7276 return 0;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007277 }
Geoff Langbfdea662014-07-23 14:16:32 -04007278
7279 if (condition != GL_SYNC_GPU_COMMANDS_COMPLETE)
7280 {
Geoff Langb1196682014-07-23 13:47:29 -04007281 context->recordError(gl::Error(GL_INVALID_ENUM));
7282 return 0;
Geoff Langbfdea662014-07-23 14:16:32 -04007283 }
7284
7285 if (flags != 0)
7286 {
Geoff Langb1196682014-07-23 13:47:29 -04007287 context->recordError(gl::Error(GL_INVALID_VALUE));
7288 return 0;
Geoff Langbfdea662014-07-23 14:16:32 -04007289 }
7290
7291 return context->createFenceSync(condition);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007292 }
7293
7294 return NULL;
7295}
7296
7297GLboolean __stdcall glIsSync(GLsync sync)
7298{
7299 EVENT("(GLsync sync = 0x%0.8p)", sync);
7300
Geoff Langbfdea662014-07-23 14:16:32 -04007301 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007302 if (context)
7303 {
7304 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007305 {
Geoff Langb1196682014-07-23 13:47:29 -04007306 context->recordError(gl::Error(GL_INVALID_OPERATION));
7307 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007308 }
Geoff Langbfdea662014-07-23 14:16:32 -04007309
7310 return (context->getFenceSync(sync) != NULL);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007311 }
7312
7313 return GL_FALSE;
7314}
7315
7316void __stdcall glDeleteSync(GLsync sync)
7317{
7318 EVENT("(GLsync sync = 0x%0.8p)", sync);
7319
Geoff Langbfdea662014-07-23 14:16:32 -04007320 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007321 if (context)
7322 {
7323 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007324 {
Geoff Langb1196682014-07-23 13:47:29 -04007325 context->recordError(gl::Error(GL_INVALID_OPERATION));
7326 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007327 }
Geoff Langbfdea662014-07-23 14:16:32 -04007328
7329 if (sync != static_cast<GLsync>(0) && !context->getFenceSync(sync))
7330 {
Geoff Langb1196682014-07-23 13:47:29 -04007331 context->recordError(gl::Error(GL_INVALID_VALUE));
7332 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007333 }
7334
7335 context->deleteFenceSync(sync);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007336 }
7337}
7338
7339GLenum __stdcall glClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
7340{
7341 EVENT("(GLsync sync = 0x%0.8p, GLbitfield flags = 0x%X, GLuint64 timeout = %llu)",
7342 sync, flags, timeout);
7343
Geoff Langbfdea662014-07-23 14:16:32 -04007344 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007345 if (context)
7346 {
7347 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007348 {
Geoff Langb1196682014-07-23 13:47:29 -04007349 context->recordError(gl::Error(GL_INVALID_OPERATION));
7350 return GL_WAIT_FAILED;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007351 }
Geoff Langbfdea662014-07-23 14:16:32 -04007352
7353 if ((flags & ~(GL_SYNC_FLUSH_COMMANDS_BIT)) != 0)
7354 {
Geoff Langb1196682014-07-23 13:47:29 -04007355 context->recordError(gl::Error(GL_INVALID_VALUE));
7356 return GL_WAIT_FAILED;
Geoff Langbfdea662014-07-23 14:16:32 -04007357 }
7358
7359 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7360
7361 if (!fenceSync)
7362 {
Geoff Langb1196682014-07-23 13:47:29 -04007363 context->recordError(gl::Error(GL_INVALID_VALUE));
7364 return GL_WAIT_FAILED;
Geoff Langbfdea662014-07-23 14:16:32 -04007365 }
7366
7367 return fenceSync->clientWait(flags, timeout);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007368 }
7369
7370 return GL_FALSE;
7371}
7372
7373void __stdcall glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
7374{
7375 EVENT("(GLsync sync = 0x%0.8p, GLbitfield flags = 0x%X, GLuint64 timeout = %llu)",
7376 sync, flags, timeout);
7377
Geoff Langbfdea662014-07-23 14:16:32 -04007378 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007379 if (context)
7380 {
7381 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007382 {
Geoff Langb1196682014-07-23 13:47:29 -04007383 context->recordError(gl::Error(GL_INVALID_OPERATION));
7384 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007385 }
Geoff Langbfdea662014-07-23 14:16:32 -04007386
7387 if (flags != 0)
7388 {
Geoff Langb1196682014-07-23 13:47:29 -04007389 context->recordError(gl::Error(GL_INVALID_VALUE));
7390 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007391 }
7392
7393 if (timeout != GL_TIMEOUT_IGNORED)
7394 {
Geoff Langb1196682014-07-23 13:47:29 -04007395 context->recordError(gl::Error(GL_INVALID_VALUE));
7396 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007397 }
7398
7399 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7400
7401 if (!fenceSync)
7402 {
Geoff Langb1196682014-07-23 13:47:29 -04007403 context->recordError(gl::Error(GL_INVALID_VALUE));
7404 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007405 }
7406
7407 fenceSync->serverWait();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007408 }
7409}
7410
7411void __stdcall glGetInteger64v(GLenum pname, GLint64* params)
7412{
7413 EVENT("(GLenum pname = 0x%X, GLint64* params = 0x%0.8p)",
7414 pname, params);
7415
Geoff Langbfdea662014-07-23 14:16:32 -04007416 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007417 if (context)
7418 {
7419 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007420 {
Geoff Langb1196682014-07-23 13:47:29 -04007421 context->recordError(gl::Error(GL_INVALID_OPERATION));
7422 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007423 }
Geoff Langbfdea662014-07-23 14:16:32 -04007424
7425 GLenum nativeType;
7426 unsigned int numParams = 0;
7427 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
7428 {
7429 return;
7430 }
7431
7432 if (nativeType == GL_INT_64_ANGLEX)
7433 {
7434 context->getInteger64v(pname, params);
7435 }
7436 else
7437 {
7438 CastStateValues(context, nativeType, pname, numParams, params);
7439 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007440 }
7441}
7442
7443void __stdcall glGetSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei* length, GLint* values)
7444{
7445 EVENT("(GLsync sync = 0x%0.8p, GLenum pname = 0x%X, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLint* values = 0x%0.8p)",
7446 sync, pname, bufSize, length, values);
7447
Geoff Langbfdea662014-07-23 14:16:32 -04007448 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007449 if (context)
7450 {
7451 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007452 {
Geoff Langb1196682014-07-23 13:47:29 -04007453 context->recordError(gl::Error(GL_INVALID_OPERATION));
7454 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007455 }
Geoff Langbfdea662014-07-23 14:16:32 -04007456
7457 if (bufSize < 0)
7458 {
Geoff Langb1196682014-07-23 13:47:29 -04007459 context->recordError(gl::Error(GL_INVALID_VALUE));
7460 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007461 }
7462
7463 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7464
7465 if (!fenceSync)
7466 {
Geoff Langb1196682014-07-23 13:47:29 -04007467 context->recordError(gl::Error(GL_INVALID_VALUE));
7468 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007469 }
7470
7471 switch (pname)
7472 {
7473 case GL_OBJECT_TYPE: values[0] = static_cast<GLint>(GL_SYNC_FENCE); break;
7474 case GL_SYNC_STATUS: values[0] = static_cast<GLint>(fenceSync->getStatus()); break;
7475 case GL_SYNC_CONDITION: values[0] = static_cast<GLint>(fenceSync->getCondition()); break;
7476 case GL_SYNC_FLAGS: values[0] = 0; break;
7477
7478 default:
Geoff Langb1196682014-07-23 13:47:29 -04007479 context->recordError(gl::Error(GL_INVALID_ENUM));
7480 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007481 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007482 }
7483}
7484
7485void __stdcall glGetInteger64i_v(GLenum target, GLuint index, GLint64* data)
7486{
7487 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLint64* data = 0x%0.8p)",
7488 target, index, data);
7489
Geoff Langbfdea662014-07-23 14:16:32 -04007490 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007491 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007492 {
Geoff Langbfdea662014-07-23 14:16:32 -04007493 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007494 {
Geoff Langb1196682014-07-23 13:47:29 -04007495 context->recordError(gl::Error(GL_INVALID_OPERATION));
7496 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007497 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007498
Geoff Lang3a61c322014-07-10 13:01:54 -04007499 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04007500 switch (target)
7501 {
7502 case GL_TRANSFORM_FEEDBACK_BUFFER_START:
7503 case GL_TRANSFORM_FEEDBACK_BUFFER_SIZE:
7504 case GL_TRANSFORM_FEEDBACK_BUFFER_BINDING:
Geoff Lang05881a02014-07-10 14:05:30 -04007505 if (index >= caps.maxTransformFeedbackSeparateAttributes)
7506 {
Geoff Langb1196682014-07-23 13:47:29 -04007507 context->recordError(gl::Error(GL_INVALID_VALUE));
7508 return;
Geoff Lang05881a02014-07-10 14:05:30 -04007509 }
Geoff Langbfdea662014-07-23 14:16:32 -04007510 break;
Geoff Langb1196682014-07-23 13:47:29 -04007511
Geoff Langbfdea662014-07-23 14:16:32 -04007512 case GL_UNIFORM_BUFFER_START:
7513 case GL_UNIFORM_BUFFER_SIZE:
7514 case GL_UNIFORM_BUFFER_BINDING:
Geoff Lang3a61c322014-07-10 13:01:54 -04007515 if (index >= caps.maxUniformBufferBindings)
7516 {
Geoff Langb1196682014-07-23 13:47:29 -04007517 context->recordError(gl::Error(GL_INVALID_VALUE));
7518 return;
Geoff Lang3a61c322014-07-10 13:01:54 -04007519 }
Geoff Langbfdea662014-07-23 14:16:32 -04007520 break;
Geoff Langb1196682014-07-23 13:47:29 -04007521
Geoff Langbfdea662014-07-23 14:16:32 -04007522 default:
Geoff Langb1196682014-07-23 13:47:29 -04007523 context->recordError(gl::Error(GL_INVALID_ENUM));
7524 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007525 }
7526
7527 if (!(context->getIndexedInteger64v(target, index, data)))
7528 {
7529 GLenum nativeType;
7530 unsigned int numParams = 0;
7531 if (!context->getIndexedQueryParameterInfo(target, &nativeType, &numParams))
Geoff Langb1196682014-07-23 13:47:29 -04007532 {
7533 context->recordError(gl::Error(GL_INVALID_ENUM));
7534 return;
7535 }
Shannon Woods15934d52013-08-19 14:28:49 -04007536
Geoff Langbfdea662014-07-23 14:16:32 -04007537 if (numParams == 0)
7538 return; // it is known that pname is valid, but there are no parameters to return
7539
7540 if (nativeType == GL_INT)
Shannon Woods15934d52013-08-19 14:28:49 -04007541 {
Geoff Langbfdea662014-07-23 14:16:32 -04007542 GLint *intParams = new GLint[numParams];
Shannon Woods15934d52013-08-19 14:28:49 -04007543
Geoff Langbfdea662014-07-23 14:16:32 -04007544 context->getIndexedIntegerv(target, index, intParams);
Shannon Woods15934d52013-08-19 14:28:49 -04007545
Geoff Langbfdea662014-07-23 14:16:32 -04007546 for (unsigned int i = 0; i < numParams; ++i)
Shannon Woods15934d52013-08-19 14:28:49 -04007547 {
Geoff Langbfdea662014-07-23 14:16:32 -04007548 data[i] = static_cast<GLint64>(intParams[i]);
Shannon Woods15934d52013-08-19 14:28:49 -04007549 }
Geoff Langbfdea662014-07-23 14:16:32 -04007550
7551 delete [] intParams;
7552 }
7553 else
7554 {
7555 UNREACHABLE();
Shannon Woods15934d52013-08-19 14:28:49 -04007556 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007557 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007558 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007559}
7560
7561void __stdcall glGetBufferParameteri64v(GLenum target, GLenum pname, GLint64* params)
7562{
7563 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint64* params = 0x%0.8p)",
7564 target, pname, params);
7565
Geoff Langbfdea662014-07-23 14:16:32 -04007566 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007567 if (context)
7568 {
7569 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007570 {
Geoff Langb1196682014-07-23 13:47:29 -04007571 context->recordError(gl::Error(GL_INVALID_OPERATION));
7572 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007573 }
Geoff Langbfdea662014-07-23 14:16:32 -04007574
7575 if (!gl::ValidBufferTarget(context, target))
7576 {
Geoff Langb1196682014-07-23 13:47:29 -04007577 context->recordError(gl::Error(GL_INVALID_ENUM));
7578 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007579 }
7580
7581 if (!gl::ValidBufferParameter(context, pname))
7582 {
Geoff Langb1196682014-07-23 13:47:29 -04007583 context->recordError(gl::Error(GL_INVALID_ENUM));
7584 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007585 }
7586
7587 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
7588
7589 if (!buffer)
7590 {
7591 // A null buffer means that "0" is bound to the requested buffer target
Geoff Langb1196682014-07-23 13:47:29 -04007592 context->recordError(gl::Error(GL_INVALID_OPERATION));
7593 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007594 }
7595
7596 switch (pname)
7597 {
7598 case GL_BUFFER_USAGE:
7599 *params = static_cast<GLint64>(buffer->getUsage());
7600 break;
7601 case GL_BUFFER_SIZE:
7602 *params = buffer->getSize();
7603 break;
7604 case GL_BUFFER_ACCESS_FLAGS:
7605 *params = static_cast<GLint64>(buffer->getAccessFlags());
7606 break;
7607 case GL_BUFFER_MAPPED:
7608 *params = static_cast<GLint64>(buffer->isMapped());
7609 break;
7610 case GL_BUFFER_MAP_OFFSET:
7611 *params = buffer->getMapOffset();
7612 break;
7613 case GL_BUFFER_MAP_LENGTH:
7614 *params = buffer->getMapLength();
7615 break;
7616 default: UNREACHABLE(); break;
7617 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007618 }
7619}
7620
7621void __stdcall glGenSamplers(GLsizei count, GLuint* samplers)
7622{
7623 EVENT("(GLsizei count = %d, GLuint* samplers = 0x%0.8p)", count, samplers);
7624
Geoff Langbfdea662014-07-23 14:16:32 -04007625 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007626 if (context)
7627 {
7628 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007629 {
Geoff Langb1196682014-07-23 13:47:29 -04007630 context->recordError(gl::Error(GL_INVALID_OPERATION));
7631 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007632 }
Geoff Langbfdea662014-07-23 14:16:32 -04007633
7634 if (count < 0)
7635 {
Geoff Langb1196682014-07-23 13:47:29 -04007636 context->recordError(gl::Error(GL_INVALID_VALUE));
7637 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007638 }
7639
7640 for (int i = 0; i < count; i++)
7641 {
7642 samplers[i] = context->createSampler();
7643 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007644 }
7645}
7646
7647void __stdcall glDeleteSamplers(GLsizei count, const GLuint* samplers)
7648{
7649 EVENT("(GLsizei count = %d, const GLuint* samplers = 0x%0.8p)", count, samplers);
7650
Geoff Langbfdea662014-07-23 14:16:32 -04007651 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007652 if (context)
7653 {
7654 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007655 {
Geoff Langb1196682014-07-23 13:47:29 -04007656 context->recordError(gl::Error(GL_INVALID_OPERATION));
7657 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007658 }
Geoff Langbfdea662014-07-23 14:16:32 -04007659
7660 if (count < 0)
7661 {
Geoff Langb1196682014-07-23 13:47:29 -04007662 context->recordError(gl::Error(GL_INVALID_VALUE));
7663 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007664 }
7665
7666 for (int i = 0; i < count; i++)
7667 {
7668 context->deleteSampler(samplers[i]);
7669 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007670 }
7671}
7672
7673GLboolean __stdcall glIsSampler(GLuint sampler)
7674{
7675 EVENT("(GLuint sampler = %u)", sampler);
7676
Geoff Langbfdea662014-07-23 14:16:32 -04007677 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007678 if (context)
7679 {
7680 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007681 {
Geoff Langb1196682014-07-23 13:47:29 -04007682 context->recordError(gl::Error(GL_INVALID_OPERATION));
7683 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007684 }
Geoff Langbfdea662014-07-23 14:16:32 -04007685
7686 return context->isSampler(sampler);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007687 }
7688
7689 return GL_FALSE;
7690}
7691
7692void __stdcall glBindSampler(GLuint unit, GLuint sampler)
7693{
7694 EVENT("(GLuint unit = %u, GLuint sampler = %u)", unit, sampler);
7695
Geoff Langbfdea662014-07-23 14:16:32 -04007696 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007697 if (context)
7698 {
7699 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007700 {
Geoff Langb1196682014-07-23 13:47:29 -04007701 context->recordError(gl::Error(GL_INVALID_OPERATION));
7702 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007703 }
Geoff Langbfdea662014-07-23 14:16:32 -04007704
7705 if (sampler != 0 && !context->isSampler(sampler))
7706 {
Geoff Langb1196682014-07-23 13:47:29 -04007707 context->recordError(gl::Error(GL_INVALID_OPERATION));
7708 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007709 }
7710
Geoff Lang3a61c322014-07-10 13:01:54 -04007711 if (unit >= context->getCaps().maxCombinedTextureImageUnits)
Geoff Langbfdea662014-07-23 14:16:32 -04007712 {
Geoff Langb1196682014-07-23 13:47:29 -04007713 context->recordError(gl::Error(GL_INVALID_VALUE));
7714 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007715 }
7716
7717 context->bindSampler(unit, sampler);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007718 }
7719}
7720
7721void __stdcall glSamplerParameteri(GLuint sampler, GLenum pname, GLint param)
7722{
7723 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLint param = %d)", sampler, pname, param);
7724
Geoff Langbfdea662014-07-23 14:16:32 -04007725 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007726 if (context)
7727 {
7728 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007729 {
Geoff Langb1196682014-07-23 13:47:29 -04007730 context->recordError(gl::Error(GL_INVALID_OPERATION));
7731 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007732 }
Geoff Langbfdea662014-07-23 14:16:32 -04007733
Geoff Langb1196682014-07-23 13:47:29 -04007734 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007735 {
7736 return;
7737 }
7738
7739 if (!gl::ValidateTexParamParameters(context, pname, param))
7740 {
7741 return;
7742 }
7743
7744 if (!context->isSampler(sampler))
7745 {
Geoff Langb1196682014-07-23 13:47:29 -04007746 context->recordError(gl::Error(GL_INVALID_OPERATION));
7747 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007748 }
7749
7750 context->samplerParameteri(sampler, pname, param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007751 }
7752}
7753
7754void __stdcall glSamplerParameteriv(GLuint sampler, GLenum pname, const GLint* param)
7755{
Jamie Madillf6cc8cc2013-07-03 12:44:15 -04007756 glSamplerParameteri(sampler, pname, *param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007757}
7758
7759void __stdcall glSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param)
7760{
7761 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLfloat param = %g)", sampler, pname, param);
7762
Geoff Langbfdea662014-07-23 14:16:32 -04007763 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007764 if (context)
7765 {
7766 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007767 {
Geoff Langb1196682014-07-23 13:47:29 -04007768 context->recordError(gl::Error(GL_INVALID_OPERATION));
7769 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007770 }
Geoff Langbfdea662014-07-23 14:16:32 -04007771
Geoff Langb1196682014-07-23 13:47:29 -04007772 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007773 {
7774 return;
7775 }
7776
7777 if (!gl::ValidateTexParamParameters(context, pname, static_cast<GLint>(param)))
7778 {
7779 return;
7780 }
7781
7782 if (!context->isSampler(sampler))
7783 {
Geoff Langb1196682014-07-23 13:47:29 -04007784 context->recordError(gl::Error(GL_INVALID_OPERATION));
7785 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007786 }
7787
7788 context->samplerParameterf(sampler, pname, param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007789 }
7790}
7791
7792void __stdcall glSamplerParameterfv(GLuint sampler, GLenum pname, const GLfloat* param)
7793{
Jamie Madillf6cc8cc2013-07-03 12:44:15 -04007794 glSamplerParameterf(sampler, pname, *param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007795}
7796
7797void __stdcall glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint* params)
7798{
7799 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", sampler, pname, params);
7800
Geoff Langbfdea662014-07-23 14:16:32 -04007801 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007802 if (context)
7803 {
7804 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007805 {
Geoff Langb1196682014-07-23 13:47:29 -04007806 context->recordError(gl::Error(GL_INVALID_OPERATION));
7807 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007808 }
Geoff Langbfdea662014-07-23 14:16:32 -04007809
Geoff Langb1196682014-07-23 13:47:29 -04007810 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007811 {
7812 return;
7813 }
7814
7815 if (!context->isSampler(sampler))
7816 {
Geoff Langb1196682014-07-23 13:47:29 -04007817 context->recordError(gl::Error(GL_INVALID_OPERATION));
7818 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007819 }
7820
7821 *params = context->getSamplerParameteri(sampler, pname);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007822 }
7823}
7824
7825void __stdcall glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat* params)
7826{
7827 EVENT("(GLuint sample = %ur, GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", sampler, pname, params);
7828
Geoff Langbfdea662014-07-23 14:16:32 -04007829 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007830 if (context)
7831 {
7832 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007833 {
Geoff Langb1196682014-07-23 13:47:29 -04007834 context->recordError(gl::Error(GL_INVALID_OPERATION));
7835 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007836 }
Geoff Langbfdea662014-07-23 14:16:32 -04007837
Geoff Langb1196682014-07-23 13:47:29 -04007838 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007839 {
7840 return;
7841 }
7842
7843 if (!context->isSampler(sampler))
7844 {
Geoff Langb1196682014-07-23 13:47:29 -04007845 context->recordError(gl::Error(GL_INVALID_OPERATION));
7846 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007847 }
7848
7849 *params = context->getSamplerParameterf(sampler, pname);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007850 }
7851}
7852
7853void __stdcall glVertexAttribDivisor(GLuint index, GLuint divisor)
7854{
7855 EVENT("(GLuint index = %u, GLuint divisor = %u)", index, divisor);
7856
Geoff Langbfdea662014-07-23 14:16:32 -04007857 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007858 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007859 {
Geoff Langbfdea662014-07-23 14:16:32 -04007860 if (context->getClientVersion() < 3)
7861 {
Geoff Langb1196682014-07-23 13:47:29 -04007862 context->recordError(gl::Error(GL_INVALID_OPERATION));
7863 return;
7864 }
7865
7866 if (index >= gl::MAX_VERTEX_ATTRIBS)
7867 {
7868 context->recordError(gl::Error(GL_INVALID_VALUE));
7869 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007870 }
7871
7872 context->setVertexAttribDivisor(index, divisor);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007873 }
7874}
7875
7876void __stdcall glBindTransformFeedback(GLenum target, GLuint id)
7877{
7878 EVENT("(GLenum target = 0x%X, GLuint id = %u)", target, id);
7879
Geoff Langbfdea662014-07-23 14:16:32 -04007880 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007881 if (context)
7882 {
7883 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007884 {
Geoff Langb1196682014-07-23 13:47:29 -04007885 context->recordError(gl::Error(GL_INVALID_OPERATION));
7886 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007887 }
Geoff Langbfdea662014-07-23 14:16:32 -04007888
7889 switch (target)
7890 {
7891 case GL_TRANSFORM_FEEDBACK:
7892 {
7893 // Cannot bind a transform feedback object if the current one is started and not paused (3.0.2 pg 85 section 2.14.1)
7894 gl::TransformFeedback *curTransformFeedback = context->getState().getCurrentTransformFeedback();
7895 if (curTransformFeedback && curTransformFeedback->isStarted() && !curTransformFeedback->isPaused())
7896 {
Geoff Langb1196682014-07-23 13:47:29 -04007897 context->recordError(gl::Error(GL_INVALID_OPERATION));
7898 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007899 }
7900
7901 // Cannot bind a transform feedback object that does not exist (3.0.2 pg 85 section 2.14.1)
7902 if (context->getTransformFeedback(id) == NULL)
7903 {
Geoff Langb1196682014-07-23 13:47:29 -04007904 context->recordError(gl::Error(GL_INVALID_OPERATION));
7905 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007906 }
7907
7908 context->bindTransformFeedback(id);
7909 }
7910 break;
7911
7912 default:
Geoff Langb1196682014-07-23 13:47:29 -04007913 context->recordError(gl::Error(GL_INVALID_ENUM));
7914 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007915 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007916 }
7917}
7918
7919void __stdcall glDeleteTransformFeedbacks(GLsizei n, const GLuint* ids)
7920{
7921 EVENT("(GLsizei n = %d, const GLuint* ids = 0x%0.8p)", n, ids);
7922
Geoff Langbfdea662014-07-23 14:16:32 -04007923 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007924 if (context)
7925 {
7926 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007927 {
Geoff Langb1196682014-07-23 13:47:29 -04007928 context->recordError(gl::Error(GL_INVALID_OPERATION));
7929 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007930 }
Geoff Langbfdea662014-07-23 14:16:32 -04007931
7932 for (int i = 0; i < n; i++)
7933 {
7934 context->deleteTransformFeedback(ids[i]);
7935 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007936 }
7937}
7938
7939void __stdcall glGenTransformFeedbacks(GLsizei n, GLuint* ids)
7940{
7941 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
7942
Geoff Langbfdea662014-07-23 14:16:32 -04007943 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007944 if (context)
7945 {
7946 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007947 {
Geoff Langb1196682014-07-23 13:47:29 -04007948 context->recordError(gl::Error(GL_INVALID_OPERATION));
7949 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007950 }
Geoff Langbfdea662014-07-23 14:16:32 -04007951
7952 for (int i = 0; i < n; i++)
7953 {
7954 ids[i] = context->createTransformFeedback();
7955 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007956 }
7957}
7958
7959GLboolean __stdcall glIsTransformFeedback(GLuint id)
7960{
7961 EVENT("(GLuint id = %u)", id);
7962
Geoff Langbfdea662014-07-23 14:16:32 -04007963 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007964 if (context)
7965 {
7966 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007967 {
Geoff Langb1196682014-07-23 13:47:29 -04007968 context->recordError(gl::Error(GL_INVALID_OPERATION));
7969 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007970 }
Geoff Langbfdea662014-07-23 14:16:32 -04007971
7972 return ((context->getTransformFeedback(id) != NULL) ? GL_TRUE : GL_FALSE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007973 }
7974
7975 return GL_FALSE;
7976}
7977
7978void __stdcall glPauseTransformFeedback(void)
7979{
7980 EVENT("(void)");
7981
Geoff Langbfdea662014-07-23 14:16:32 -04007982 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007983 if (context)
7984 {
7985 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007986 {
Geoff Langb1196682014-07-23 13:47:29 -04007987 context->recordError(gl::Error(GL_INVALID_OPERATION));
7988 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007989 }
Geoff Langbfdea662014-07-23 14:16:32 -04007990
7991 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
7992 ASSERT(transformFeedback != NULL);
7993
7994 // Current transform feedback must be started and not paused in order to pause (3.0.2 pg 86)
7995 if (!transformFeedback->isStarted() || transformFeedback->isPaused())
7996 {
Geoff Langb1196682014-07-23 13:47:29 -04007997 context->recordError(gl::Error(GL_INVALID_OPERATION));
7998 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007999 }
8000
8001 transformFeedback->pause();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008002 }
8003}
8004
8005void __stdcall glResumeTransformFeedback(void)
8006{
8007 EVENT("(void)");
8008
Geoff Langbfdea662014-07-23 14:16:32 -04008009 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008010 if (context)
8011 {
8012 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008013 {
Geoff Langb1196682014-07-23 13:47:29 -04008014 context->recordError(gl::Error(GL_INVALID_OPERATION));
8015 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008016 }
Geoff Langbfdea662014-07-23 14:16:32 -04008017
8018 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
8019 ASSERT(transformFeedback != NULL);
8020
8021 // Current transform feedback must be started and paused in order to resume (3.0.2 pg 86)
8022 if (!transformFeedback->isStarted() || !transformFeedback->isPaused())
8023 {
Geoff Langb1196682014-07-23 13:47:29 -04008024 context->recordError(gl::Error(GL_INVALID_OPERATION));
8025 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008026 }
8027
8028 transformFeedback->resume();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008029 }
8030}
8031
8032void __stdcall glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, GLvoid* binary)
8033{
8034 EVENT("(GLuint program = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLenum* binaryFormat = 0x%0.8p, GLvoid* binary = 0x%0.8p)",
8035 program, bufSize, length, binaryFormat, binary);
8036
Geoff Langbfdea662014-07-23 14:16:32 -04008037 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008038 if (context)
8039 {
8040 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008041 {
Geoff Langb1196682014-07-23 13:47:29 -04008042 context->recordError(gl::Error(GL_INVALID_OPERATION));
8043 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008044 }
Geoff Langbfdea662014-07-23 14:16:32 -04008045
8046 // glGetProgramBinary
8047 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008048 }
8049}
8050
8051void __stdcall glProgramBinary(GLuint program, GLenum binaryFormat, const GLvoid* binary, GLsizei length)
8052{
8053 EVENT("(GLuint program = %u, GLenum binaryFormat = 0x%X, const GLvoid* binary = 0x%0.8p, GLsizei length = %d)",
8054 program, binaryFormat, binary, length);
8055
Geoff Langbfdea662014-07-23 14:16:32 -04008056 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008057 if (context)
8058 {
8059 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008060 {
Geoff Langb1196682014-07-23 13:47:29 -04008061 context->recordError(gl::Error(GL_INVALID_OPERATION));
8062 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008063 }
Geoff Langbfdea662014-07-23 14:16:32 -04008064
8065 // glProgramBinary
8066 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008067 }
8068}
8069
8070void __stdcall glProgramParameteri(GLuint program, GLenum pname, GLint value)
8071{
8072 EVENT("(GLuint program = %u, GLenum pname = 0x%X, GLint value = %d)",
8073 program, pname, value);
8074
Geoff Langbfdea662014-07-23 14:16:32 -04008075 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008076 if (context)
8077 {
8078 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008079 {
Geoff Langb1196682014-07-23 13:47:29 -04008080 context->recordError(gl::Error(GL_INVALID_OPERATION));
8081 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008082 }
Geoff Langbfdea662014-07-23 14:16:32 -04008083
8084 // glProgramParameteri
8085 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008086 }
8087}
8088
8089void __stdcall glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments)
8090{
8091 EVENT("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum* attachments = 0x%0.8p)",
8092 target, numAttachments, attachments);
8093
Geoff Langbfdea662014-07-23 14:16:32 -04008094 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008095 if (context)
8096 {
8097 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008098 {
Geoff Langb1196682014-07-23 13:47:29 -04008099 context->recordError(gl::Error(GL_INVALID_OPERATION));
8100 return;
shannonwoods@chromium.orgd63ef892013-05-30 00:10:56 +00008101 }
Geoff Langbfdea662014-07-23 14:16:32 -04008102
8103 if (!ValidateInvalidateFramebufferParameters(context, target, numAttachments, attachments))
8104 {
8105 return;
8106 }
8107
Jamie Madill2d96b9e2014-08-29 15:46:47 -04008108 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
8109 if (framebuffer && framebuffer->completeness() == GL_FRAMEBUFFER_COMPLETE)
8110 {
8111 framebuffer->invalidate(context->getCaps(), numAttachments, attachments);
8112 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008113 }
8114}
8115
8116void __stdcall glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height)
8117{
8118 EVENT("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum* attachments = 0x%0.8p, GLint x = %d, "
8119 "GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
8120 target, numAttachments, attachments, x, y, width, height);
8121
Geoff Langbfdea662014-07-23 14:16:32 -04008122 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008123 if (context)
8124 {
8125 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008126 {
Geoff Langb1196682014-07-23 13:47:29 -04008127 context->recordError(gl::Error(GL_INVALID_OPERATION));
8128 return;
shannonwoods@chromium.orgd63ef892013-05-30 00:10:56 +00008129 }
Geoff Langbfdea662014-07-23 14:16:32 -04008130
8131 if (!ValidateInvalidateFramebufferParameters(context, target, numAttachments, attachments))
8132 {
8133 return;
8134 }
8135
Jamie Madill2d96b9e2014-08-29 15:46:47 -04008136 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
8137 if (framebuffer && framebuffer->completeness() == GL_FRAMEBUFFER_COMPLETE)
8138 {
8139 framebuffer->invalidateSub(context->getCaps(), numAttachments, attachments, x, y, width, height);
8140 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008141 }
8142}
8143
8144void __stdcall glTexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
8145{
8146 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
8147 target, levels, internalformat, width, height);
8148
Geoff Langbfdea662014-07-23 14:16:32 -04008149 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008150 if (context)
8151 {
8152 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008153 {
Geoff Langb1196682014-07-23 13:47:29 -04008154 context->recordError(gl::Error(GL_INVALID_OPERATION));
8155 return;
shannonwoods@chromium.org8757c062013-05-30 00:14:24 +00008156 }
Geoff Langbfdea662014-07-23 14:16:32 -04008157
8158 if (!ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, 1))
8159 {
8160 return;
8161 }
8162
8163 switch (target)
8164 {
8165 case GL_TEXTURE_2D:
8166 {
8167 gl::Texture2D *texture2d = context->getTexture2D();
8168 texture2d->storage(levels, internalformat, width, height);
8169 }
8170 break;
8171
8172 case GL_TEXTURE_CUBE_MAP:
8173 {
8174 gl::TextureCubeMap *textureCube = context->getTextureCubeMap();
8175 textureCube->storage(levels, internalformat, width);
8176 }
8177 break;
8178
8179 default:
Geoff Langb1196682014-07-23 13:47:29 -04008180 context->recordError(gl::Error(GL_INVALID_ENUM));
8181 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008182 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008183 }
8184}
8185
8186void __stdcall glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth)
8187{
8188 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, "
8189 "GLsizei height = %d, GLsizei depth = %d)",
8190 target, levels, internalformat, width, height, depth);
8191
Geoff Langbfdea662014-07-23 14:16:32 -04008192 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008193 if (context)
8194 {
8195 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008196 {
Geoff Langb1196682014-07-23 13:47:29 -04008197 context->recordError(gl::Error(GL_INVALID_OPERATION));
8198 return;
shannon.woods%transgaming.com@gtempaccount.com14eb55e2013-04-13 03:35:06 +00008199 }
Geoff Langbfdea662014-07-23 14:16:32 -04008200
8201 if (!ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, depth))
8202 {
8203 return;
8204 }
8205
8206 switch (target)
8207 {
8208 case GL_TEXTURE_3D:
8209 {
8210 gl::Texture3D *texture3d = context->getTexture3D();
8211 texture3d->storage(levels, internalformat, width, height, depth);
8212 }
8213 break;
8214
8215 case GL_TEXTURE_2D_ARRAY:
8216 {
8217 gl::Texture2DArray *texture2darray = context->getTexture2DArray();
8218 texture2darray->storage(levels, internalformat, width, height, depth);
8219 }
8220 break;
8221
8222 default:
8223 UNREACHABLE();
8224 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008225 }
8226}
8227
8228void __stdcall glGetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint* params)
8229{
8230 EVENT("(GLenum target = 0x%X, GLenum internalformat = 0x%X, GLenum pname = 0x%X, GLsizei bufSize = %d, "
8231 "GLint* params = 0x%0.8p)",
8232 target, internalformat, pname, bufSize, params);
8233
Geoff Langbfdea662014-07-23 14:16:32 -04008234 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008235 if (context)
8236 {
8237 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008238 {
Geoff Langb1196682014-07-23 13:47:29 -04008239 context->recordError(gl::Error(GL_INVALID_OPERATION));
8240 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008241 }
Geoff Langbfdea662014-07-23 14:16:32 -04008242
8243 const gl::TextureCaps &formatCaps = context->getTextureCaps().get(internalformat);
8244 if (!formatCaps.renderable)
8245 {
Geoff Langb1196682014-07-23 13:47:29 -04008246 context->recordError(gl::Error(GL_INVALID_ENUM));
8247 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008248 }
8249
8250 if (target != GL_RENDERBUFFER)
8251 {
Geoff Langb1196682014-07-23 13:47:29 -04008252 context->recordError(gl::Error(GL_INVALID_ENUM));
8253 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008254 }
8255
8256 if (bufSize < 0)
8257 {
Geoff Langb1196682014-07-23 13:47:29 -04008258 context->recordError(gl::Error(GL_INVALID_VALUE));
8259 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008260 }
8261
8262 switch (pname)
8263 {
8264 case GL_NUM_SAMPLE_COUNTS:
8265 if (bufSize != 0)
Geoff Lang5f4c4632014-07-03 13:46:52 -04008266 {
8267 *params = formatCaps.sampleCounts.size();
8268 }
Geoff Langbfdea662014-07-23 14:16:32 -04008269 break;
Geoff Langb1196682014-07-23 13:47:29 -04008270
Geoff Langbfdea662014-07-23 14:16:32 -04008271 case GL_SAMPLES:
Geoff Lang5f4c4632014-07-03 13:46:52 -04008272 std::copy_n(formatCaps.sampleCounts.rbegin(), std::min<size_t>(bufSize, formatCaps.sampleCounts.size()), params);
Geoff Langbfdea662014-07-23 14:16:32 -04008273 break;
Geoff Langb1196682014-07-23 13:47:29 -04008274
Geoff Langbfdea662014-07-23 14:16:32 -04008275 default:
Geoff Langb1196682014-07-23 13:47:29 -04008276 context->recordError(gl::Error(GL_INVALID_ENUM));
8277 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008278 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008279 }
8280}
8281
8282// Extension functions
8283
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008284void __stdcall glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
8285 GLbitfield mask, GLenum filter)
8286{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00008287 EVENT("(GLint srcX0 = %d, GLint srcY0 = %d, GLint srcX1 = %d, GLint srcY1 = %d, "
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008288 "GLint dstX0 = %d, GLint dstY0 = %d, GLint dstX1 = %d, GLint dstY1 = %d, "
8289 "GLbitfield mask = 0x%X, GLenum filter = 0x%X)",
8290 srcX0, srcY0, srcX1, srcX1, dstX0, dstY0, dstX1, dstY1, mask, filter);
8291
Geoff Langbfdea662014-07-23 14:16:32 -04008292 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008293 if (context)
8294 {
8295 if (!ValidateBlitFramebufferParameters(context, srcX0, srcY0, srcX1, srcY1,
8296 dstX0, dstY0, dstX1, dstY1, mask, filter,
8297 true))
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008298 {
Geoff Langbfdea662014-07-23 14:16:32 -04008299 return;
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008300 }
Geoff Langbfdea662014-07-23 14:16:32 -04008301
Geoff Lang64839152014-08-26 16:23:25 -04008302 gl::Error error = context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
8303 mask, filter);
8304 if (error.isError())
8305 {
8306 context->recordError(error);
8307 return;
8308 }
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008309 }
8310}
8311
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00008312void __stdcall glTexImage3DOES(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth,
8313 GLint border, GLenum format, GLenum type, const GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008314{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00008315 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00008316 "GLsizei width = %d, GLsizei height = %d, GLsizei depth = %d, GLint border = %d, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00008317 "GLenum format = 0x%X, GLenum type = 0x%x, const GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008318 target, level, internalformat, width, height, depth, border, format, type, pixels);
8319
Geoff Langbfdea662014-07-23 14:16:32 -04008320 UNIMPLEMENTED(); // FIXME
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008321}
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008322
Geoff Langbfdea662014-07-23 14:16:32 -04008323void __stdcall glGetProgramBinaryOES(GLuint program, GLsizei bufSize, GLsizei *length,
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008324 GLenum *binaryFormat, void *binary)
8325{
apatrick@chromium.org90080e32012-07-09 22:15:33 +00008326 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 +00008327 program, bufSize, length, binaryFormat, binary);
8328
Geoff Langbfdea662014-07-23 14:16:32 -04008329 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008330 if (context)
8331 {
8332 gl::Program *programObject = context->getProgram(program);
8333
8334 if (!programObject || !programObject->isLinked())
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008335 {
Geoff Langb1196682014-07-23 13:47:29 -04008336 context->recordError(gl::Error(GL_INVALID_OPERATION));
8337 return;
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008338 }
Geoff Langbfdea662014-07-23 14:16:32 -04008339
8340 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
8341
8342 if (!programBinary)
8343 {
Geoff Langb1196682014-07-23 13:47:29 -04008344 context->recordError(gl::Error(GL_INVALID_OPERATION));
8345 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008346 }
8347
Geoff Lang900013c2014-07-07 11:32:19 -04008348 if (!programBinary->save(binaryFormat, binary, bufSize, length))
Geoff Langbfdea662014-07-23 14:16:32 -04008349 {
Geoff Langb1196682014-07-23 13:47:29 -04008350 context->recordError(gl::Error(GL_INVALID_OPERATION));
8351 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008352 }
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008353 }
8354}
8355
8356void __stdcall glProgramBinaryOES(GLuint program, GLenum binaryFormat,
8357 const void *binary, GLint length)
8358{
8359 EVENT("(GLenum program = 0x%X, binaryFormat = 0x%x, binary = 0x%0.8p, length = %d)",
8360 program, binaryFormat, binary, length);
8361
Geoff Langbfdea662014-07-23 14:16:32 -04008362 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008363 if (context)
8364 {
Geoff Lang900013c2014-07-07 11:32:19 -04008365 const std::vector<GLenum> &programBinaryFormats = context->getCaps().programBinaryFormats;
8366 if (std::find(programBinaryFormats.begin(), programBinaryFormats.end(), binaryFormat) == programBinaryFormats.end())
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008367 {
Geoff Langb1196682014-07-23 13:47:29 -04008368 context->recordError(gl::Error(GL_INVALID_ENUM));
8369 return;
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008370 }
Geoff Langbfdea662014-07-23 14:16:32 -04008371
8372 gl::Program *programObject = context->getProgram(program);
Geoff Langbfdea662014-07-23 14:16:32 -04008373 if (!programObject)
8374 {
Geoff Langb1196682014-07-23 13:47:29 -04008375 context->recordError(gl::Error(GL_INVALID_OPERATION));
8376 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008377 }
8378
Geoff Lang900013c2014-07-07 11:32:19 -04008379 context->setProgramBinary(program, binaryFormat, binary, length);
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008380 }
8381}
8382
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008383void __stdcall glDrawBuffersEXT(GLsizei n, const GLenum *bufs)
8384{
8385 EVENT("(GLenum n = %d, bufs = 0x%0.8p)", n, bufs);
8386
Geoff Langbfdea662014-07-23 14:16:32 -04008387 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008388 if (context)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008389 {
Geoff Langbfdea662014-07-23 14:16:32 -04008390 if (n < 0 || static_cast<GLuint>(n) > context->getCaps().maxDrawBuffers)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008391 {
Geoff Langb1196682014-07-23 13:47:29 -04008392 context->recordError(gl::Error(GL_INVALID_VALUE));
8393 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008394 }
8395
8396 if (context->getState().getDrawFramebuffer()->id() == 0)
8397 {
8398 if (n != 1)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008399 {
Geoff Langb1196682014-07-23 13:47:29 -04008400 context->recordError(gl::Error(GL_INVALID_OPERATION));
8401 return;
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008402 }
8403
Geoff Langbfdea662014-07-23 14:16:32 -04008404 if (bufs[0] != GL_NONE && bufs[0] != GL_BACK)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008405 {
Geoff Langb1196682014-07-23 13:47:29 -04008406 context->recordError(gl::Error(GL_INVALID_OPERATION));
8407 return;
shannon.woods%transgaming.com@gtempaccount.com2fa73c52013-04-13 03:37:20 +00008408 }
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008409 }
Geoff Langbfdea662014-07-23 14:16:32 -04008410 else
8411 {
8412 for (int colorAttachment = 0; colorAttachment < n; colorAttachment++)
8413 {
8414 const GLenum attachment = GL_COLOR_ATTACHMENT0_EXT + colorAttachment;
8415 if (bufs[colorAttachment] != GL_NONE && bufs[colorAttachment] != attachment)
8416 {
Geoff Langb1196682014-07-23 13:47:29 -04008417 context->recordError(gl::Error(GL_INVALID_OPERATION));
8418 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008419 }
8420 }
8421 }
8422
8423 gl::Framebuffer *framebuffer = context->getState().getDrawFramebuffer();
8424
8425 for (unsigned int colorAttachment = 0; colorAttachment < static_cast<unsigned int>(n); colorAttachment++)
8426 {
8427 framebuffer->setDrawBufferState(colorAttachment, bufs[colorAttachment]);
8428 }
8429
8430 for (unsigned int colorAttachment = n; colorAttachment < context->getCaps().maxDrawBuffers; colorAttachment++)
8431 {
8432 framebuffer->setDrawBufferState(colorAttachment, GL_NONE);
8433 }
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008434 }
8435}
8436
Shannon Woodsb3801742014-03-27 14:59:19 -04008437void __stdcall glGetBufferPointervOES(GLenum target, GLenum pname, void** params)
8438{
8439 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLvoid** params = 0x%0.8p)", target, pname, params);
8440
Geoff Langbfdea662014-07-23 14:16:32 -04008441 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008442 if (context)
8443 {
8444 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008445 {
Geoff Langb1196682014-07-23 13:47:29 -04008446 context->recordError(gl::Error(GL_INVALID_ENUM));
8447 return;
Shannon Woodsb3801742014-03-27 14:59:19 -04008448 }
Geoff Langbfdea662014-07-23 14:16:32 -04008449
8450 if (pname != GL_BUFFER_MAP_POINTER)
8451 {
Geoff Langb1196682014-07-23 13:47:29 -04008452 context->recordError(gl::Error(GL_INVALID_ENUM));
8453 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008454 }
8455
8456 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8457
8458 if (!buffer || !buffer->isMapped())
8459 {
8460 *params = NULL;
8461 }
8462 else
8463 {
8464 *params = buffer->getMapPointer();
8465 }
Shannon Woodsb3801742014-03-27 14:59:19 -04008466 }
8467}
8468
8469void * __stdcall glMapBufferOES(GLenum target, GLenum access)
8470{
8471 EVENT("(GLenum target = 0x%X, GLbitfield access = 0x%X)", target, access);
8472
Geoff Langbfdea662014-07-23 14:16:32 -04008473 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008474 if (context)
8475 {
8476 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008477 {
Geoff Langb1196682014-07-23 13:47:29 -04008478 context->recordError(gl::Error(GL_INVALID_ENUM));
8479 return NULL;
Shannon Woodsb3801742014-03-27 14:59:19 -04008480 }
Geoff Langbfdea662014-07-23 14:16:32 -04008481
8482 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8483
8484 if (buffer == NULL)
8485 {
Geoff Langb1196682014-07-23 13:47:29 -04008486 context->recordError(gl::Error(GL_INVALID_OPERATION));
8487 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008488 }
8489
8490 if (access != GL_WRITE_ONLY_OES)
8491 {
Geoff Langb1196682014-07-23 13:47:29 -04008492 context->recordError(gl::Error(GL_INVALID_ENUM));
8493 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008494 }
8495
8496 if (buffer->isMapped())
8497 {
Geoff Langb1196682014-07-23 13:47:29 -04008498 context->recordError(gl::Error(GL_INVALID_OPERATION));
8499 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008500 }
8501
Geoff Lang2a1c15a2014-07-25 11:43:00 -04008502 gl::Error error = buffer->mapRange(0, buffer->getSize(), GL_MAP_WRITE_BIT);
8503 if (error.isError())
8504 {
8505 context->recordError(error);
8506 return NULL;
8507 }
8508
8509 return buffer->getMapPointer();
Shannon Woodsb3801742014-03-27 14:59:19 -04008510 }
8511
8512 return NULL;
8513}
8514
8515GLboolean __stdcall glUnmapBufferOES(GLenum target)
8516{
8517 EVENT("(GLenum target = 0x%X)", target);
8518
Geoff Langbfdea662014-07-23 14:16:32 -04008519 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008520 if (context)
8521 {
8522 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008523 {
Geoff Langb1196682014-07-23 13:47:29 -04008524 context->recordError(gl::Error(GL_INVALID_ENUM));
8525 return GL_FALSE;
Shannon Woodsb3801742014-03-27 14:59:19 -04008526 }
Geoff Langbfdea662014-07-23 14:16:32 -04008527
8528 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8529
8530 if (buffer == NULL || !buffer->isMapped())
8531 {
Geoff Langb1196682014-07-23 13:47:29 -04008532 context->recordError(gl::Error(GL_INVALID_OPERATION));
8533 return GL_FALSE;
Geoff Langbfdea662014-07-23 14:16:32 -04008534 }
8535
8536 // TODO: detect if we had corruption. if so, throw an error and return false.
8537
Geoff Lang2a1c15a2014-07-25 11:43:00 -04008538 gl::Error error = buffer->unmap();
8539 if (error.isError())
8540 {
8541 context->recordError(error);
8542 return GL_FALSE;
8543 }
Geoff Langbfdea662014-07-23 14:16:32 -04008544
8545 return GL_TRUE;
Shannon Woodsb3801742014-03-27 14:59:19 -04008546 }
8547
8548 return GL_FALSE;
8549}
8550
Shannon Woods916e7692014-03-27 16:58:22 -04008551void* __stdcall glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
8552{
8553 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d, GLbitfield access = 0x%X)",
8554 target, offset, length, access);
8555
Geoff Langbfdea662014-07-23 14:16:32 -04008556 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008557 if (context)
8558 {
8559 if (!gl::ValidBufferTarget(context, target))
Shannon Woods916e7692014-03-27 16:58:22 -04008560 {
Geoff Langb1196682014-07-23 13:47:29 -04008561 context->recordError(gl::Error(GL_INVALID_ENUM));
8562 return NULL;
Shannon Woods916e7692014-03-27 16:58:22 -04008563 }
Geoff Langbfdea662014-07-23 14:16:32 -04008564
8565 if (offset < 0 || length < 0)
8566 {
Geoff Langb1196682014-07-23 13:47:29 -04008567 context->recordError(gl::Error(GL_INVALID_VALUE));
8568 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008569 }
8570
8571 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8572
8573 if (buffer == NULL)
8574 {
Geoff Langb1196682014-07-23 13:47:29 -04008575 context->recordError(gl::Error(GL_INVALID_OPERATION));
8576 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008577 }
8578
8579 // Check for buffer overflow
8580 size_t offsetSize = static_cast<size_t>(offset);
8581 size_t lengthSize = static_cast<size_t>(length);
8582
8583 if (!rx::IsUnsignedAdditionSafe(offsetSize, lengthSize) ||
8584 offsetSize + lengthSize > static_cast<size_t>(buffer->getSize()))
8585 {
Geoff Langb1196682014-07-23 13:47:29 -04008586 context->recordError(gl::Error(GL_INVALID_VALUE));
8587 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008588 }
8589
8590 // Check for invalid bits in the mask
8591 GLbitfield allAccessBits = GL_MAP_READ_BIT |
8592 GL_MAP_WRITE_BIT |
8593 GL_MAP_INVALIDATE_RANGE_BIT |
8594 GL_MAP_INVALIDATE_BUFFER_BIT |
8595 GL_MAP_FLUSH_EXPLICIT_BIT |
8596 GL_MAP_UNSYNCHRONIZED_BIT;
8597
8598 if (access & ~(allAccessBits))
8599 {
Geoff Langb1196682014-07-23 13:47:29 -04008600 context->recordError(gl::Error(GL_INVALID_VALUE));
8601 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008602 }
8603
8604 if (length == 0 || buffer->isMapped())
8605 {
Geoff Langb1196682014-07-23 13:47:29 -04008606 context->recordError(gl::Error(GL_INVALID_OPERATION));
8607 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008608 }
8609
8610 // Check for invalid bit combinations
8611 if ((access & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT)) == 0)
8612 {
Geoff Langb1196682014-07-23 13:47:29 -04008613 context->recordError(gl::Error(GL_INVALID_OPERATION));
8614 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008615 }
8616
8617 GLbitfield writeOnlyBits = GL_MAP_INVALIDATE_RANGE_BIT |
8618 GL_MAP_INVALIDATE_BUFFER_BIT |
8619 GL_MAP_UNSYNCHRONIZED_BIT;
8620
8621 if ((access & GL_MAP_READ_BIT) != 0 && (access & writeOnlyBits) != 0)
8622 {
Geoff Langb1196682014-07-23 13:47:29 -04008623 context->recordError(gl::Error(GL_INVALID_OPERATION));
8624 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008625 }
8626
8627 if ((access & GL_MAP_WRITE_BIT) == 0 && (access & GL_MAP_FLUSH_EXPLICIT_BIT) != 0)
8628 {
Geoff Langb1196682014-07-23 13:47:29 -04008629 context->recordError(gl::Error(GL_INVALID_OPERATION));
8630 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008631 }
8632
Geoff Lang2a1c15a2014-07-25 11:43:00 -04008633 gl::Error error = buffer->mapRange(offset, length, access);
8634 if (error.isError())
8635 {
8636 context->recordError(error);
8637 return NULL;
8638 }
8639
8640 return buffer->getMapPointer();
Shannon Woods916e7692014-03-27 16:58:22 -04008641 }
8642
8643 return NULL;
8644}
8645
8646void __stdcall glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length)
8647{
8648 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d)", target, offset, length);
8649
Geoff Langbfdea662014-07-23 14:16:32 -04008650 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008651 if (context)
8652 {
8653 if (offset < 0 || length < 0)
Shannon Woods916e7692014-03-27 16:58:22 -04008654 {
Geoff Langb1196682014-07-23 13:47:29 -04008655 context->recordError(gl::Error(GL_INVALID_VALUE));
8656 return;
Shannon Woods916e7692014-03-27 16:58:22 -04008657 }
Geoff Langbfdea662014-07-23 14:16:32 -04008658
8659 if (!gl::ValidBufferTarget(context, target))
8660 {
Geoff Langb1196682014-07-23 13:47:29 -04008661 context->recordError(gl::Error(GL_INVALID_ENUM));
8662 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008663 }
8664
8665 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8666
8667 if (buffer == NULL)
8668 {
Geoff Langb1196682014-07-23 13:47:29 -04008669 context->recordError(gl::Error(GL_INVALID_OPERATION));
8670 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008671 }
8672
8673 if (!buffer->isMapped() || (buffer->getAccessFlags() & GL_MAP_FLUSH_EXPLICIT_BIT) == 0)
8674 {
Geoff Langb1196682014-07-23 13:47:29 -04008675 context->recordError(gl::Error(GL_INVALID_OPERATION));
8676 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008677 }
8678
8679 // Check for buffer overflow
8680 size_t offsetSize = static_cast<size_t>(offset);
8681 size_t lengthSize = static_cast<size_t>(length);
8682
8683 if (!rx::IsUnsignedAdditionSafe(offsetSize, lengthSize) ||
8684 offsetSize + lengthSize > static_cast<size_t>(buffer->getMapLength()))
8685 {
Geoff Langb1196682014-07-23 13:47:29 -04008686 context->recordError(gl::Error(GL_INVALID_VALUE));
8687 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008688 }
8689
8690 // We do not currently support a non-trivial implementation of FlushMappedBufferRange
Shannon Woods916e7692014-03-27 16:58:22 -04008691 }
8692}
8693
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008694__eglMustCastToProperFunctionPointerType __stdcall glGetProcAddress(const char *procname)
8695{
8696 struct Extension
8697 {
8698 const char *name;
8699 __eglMustCastToProperFunctionPointerType address;
8700 };
8701
8702 static const Extension glExtensions[] =
8703 {
8704 {"glTexImage3DOES", (__eglMustCastToProperFunctionPointerType)glTexImage3DOES},
daniel@transgaming.com01868132010-08-24 19:21:17 +00008705 {"glBlitFramebufferANGLE", (__eglMustCastToProperFunctionPointerType)glBlitFramebufferANGLE},
daniel@transgaming.com1fe96c92011-01-14 15:08:44 +00008706 {"glRenderbufferStorageMultisampleANGLE", (__eglMustCastToProperFunctionPointerType)glRenderbufferStorageMultisampleANGLE},
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00008707 {"glDeleteFencesNV", (__eglMustCastToProperFunctionPointerType)glDeleteFencesNV},
8708 {"glGenFencesNV", (__eglMustCastToProperFunctionPointerType)glGenFencesNV},
8709 {"glIsFenceNV", (__eglMustCastToProperFunctionPointerType)glIsFenceNV},
8710 {"glTestFenceNV", (__eglMustCastToProperFunctionPointerType)glTestFenceNV},
8711 {"glGetFenceivNV", (__eglMustCastToProperFunctionPointerType)glGetFenceivNV},
8712 {"glFinishFenceNV", (__eglMustCastToProperFunctionPointerType)glFinishFenceNV},
8713 {"glSetFenceNV", (__eglMustCastToProperFunctionPointerType)glSetFenceNV},
zmo@google.coma574f782011-10-03 21:45:23 +00008714 {"glGetTranslatedShaderSourceANGLE", (__eglMustCastToProperFunctionPointerType)glGetTranslatedShaderSourceANGLE},
daniel@transgaming.com0bd1f2f2011-11-11 04:19:03 +00008715 {"glTexStorage2DEXT", (__eglMustCastToProperFunctionPointerType)glTexStorage2DEXT},
daniel@transgaming.com709ed112011-11-12 03:18:10 +00008716 {"glGetGraphicsResetStatusEXT", (__eglMustCastToProperFunctionPointerType)glGetGraphicsResetStatusEXT},
8717 {"glReadnPixelsEXT", (__eglMustCastToProperFunctionPointerType)glReadnPixelsEXT},
8718 {"glGetnUniformfvEXT", (__eglMustCastToProperFunctionPointerType)glGetnUniformfvEXT},
8719 {"glGetnUniformivEXT", (__eglMustCastToProperFunctionPointerType)glGetnUniformivEXT},
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00008720 {"glGenQueriesEXT", (__eglMustCastToProperFunctionPointerType)glGenQueriesEXT},
8721 {"glDeleteQueriesEXT", (__eglMustCastToProperFunctionPointerType)glDeleteQueriesEXT},
8722 {"glIsQueryEXT", (__eglMustCastToProperFunctionPointerType)glIsQueryEXT},
8723 {"glBeginQueryEXT", (__eglMustCastToProperFunctionPointerType)glBeginQueryEXT},
8724 {"glEndQueryEXT", (__eglMustCastToProperFunctionPointerType)glEndQueryEXT},
8725 {"glGetQueryivEXT", (__eglMustCastToProperFunctionPointerType)glGetQueryivEXT},
8726 {"glGetQueryObjectuivEXT", (__eglMustCastToProperFunctionPointerType)glGetQueryObjectuivEXT},
shannon.woods%transgaming.com@gtempaccount.com77d94722013-04-13 03:34:22 +00008727 {"glDrawBuffersEXT", (__eglMustCastToProperFunctionPointerType)glDrawBuffersEXT},
daniel@transgaming.comdce02fd2012-01-27 15:39:51 +00008728 {"glVertexAttribDivisorANGLE", (__eglMustCastToProperFunctionPointerType)glVertexAttribDivisorANGLE},
8729 {"glDrawArraysInstancedANGLE", (__eglMustCastToProperFunctionPointerType)glDrawArraysInstancedANGLE},
8730 {"glDrawElementsInstancedANGLE", (__eglMustCastToProperFunctionPointerType)glDrawElementsInstancedANGLE},
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008731 {"glGetProgramBinaryOES", (__eglMustCastToProperFunctionPointerType)glGetProgramBinaryOES},
Shannon Woodsb3801742014-03-27 14:59:19 -04008732 {"glProgramBinaryOES", (__eglMustCastToProperFunctionPointerType)glProgramBinaryOES},
8733 {"glGetBufferPointervOES", (__eglMustCastToProperFunctionPointerType)glGetBufferPointervOES},
8734 {"glMapBufferOES", (__eglMustCastToProperFunctionPointerType)glMapBufferOES},
Shannon Woods916e7692014-03-27 16:58:22 -04008735 {"glUnmapBufferOES", (__eglMustCastToProperFunctionPointerType)glUnmapBufferOES},
8736 {"glMapBufferRangeEXT", (__eglMustCastToProperFunctionPointerType)glMapBufferRangeEXT},
8737 {"glFlushMappedBufferRangeEXT", (__eglMustCastToProperFunctionPointerType)glFlushMappedBufferRangeEXT}, };
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008738
shannon.woods@transgaming.comd438fd42013-02-28 23:17:45 +00008739 for (unsigned int ext = 0; ext < ArraySize(glExtensions); ext++)
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008740 {
8741 if (strcmp(procname, glExtensions[ext].name) == 0)
8742 {
8743 return (__eglMustCastToProperFunctionPointerType)glExtensions[ext].address;
8744 }
8745 }
8746
8747 return NULL;
8748}
8749
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00008750// Non-public functions used by EGL
8751
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00008752bool __stdcall glBindTexImage(egl::Surface *surface)
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008753{
8754 EVENT("(egl::Surface* surface = 0x%0.8p)",
8755 surface);
8756
Geoff Langbfdea662014-07-23 14:16:32 -04008757 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008758 if (context)
8759 {
8760 gl::Texture2D *textureObject = context->getTexture2D();
8761 ASSERT(textureObject != NULL);
8762
8763 if (textureObject->isImmutable())
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008764 {
Geoff Langbfdea662014-07-23 14:16:32 -04008765 return false;
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008766 }
Geoff Langbfdea662014-07-23 14:16:32 -04008767
8768 textureObject->bindTexImage(surface);
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008769 }
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00008770
8771 return true;
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008772}
8773
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008774}