blob: 198c0ee84b0308ec9211d508227f828171f369c4 [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
5647 context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
5648 mask, filter);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005649 }
5650}
5651
5652void __stdcall glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height)
5653{
5654 EVENT("(GLenum target = 0x%X, GLsizei samples = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
5655 target, samples, internalformat, width, height);
5656
Geoff Langbfdea662014-07-23 14:16:32 -04005657 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005658 if (context)
5659 {
5660 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005661 {
Geoff Langb1196682014-07-23 13:47:29 -04005662 context->recordError(gl::Error(GL_INVALID_OPERATION));
5663 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005664 }
Geoff Langbfdea662014-07-23 14:16:32 -04005665
5666 if (!ValidateRenderbufferStorageParameters(context, target, samples, internalformat,
5667 width, height, false))
5668 {
5669 return;
5670 }
5671
5672 context->setRenderbufferStorage(width, height, internalformat, samples);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005673 }
5674}
5675
5676void __stdcall glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)
5677{
5678 EVENT("(GLenum target = 0x%X, GLenum attachment = 0x%X, GLuint texture = %u, GLint level = %d, GLint layer = %d)",
5679 target, attachment, texture, level, layer);
5680
Geoff Langbfdea662014-07-23 14:16:32 -04005681 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005682 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005683 {
Geoff Langbfdea662014-07-23 14:16:32 -04005684 if (!ValidateFramebufferTextureLayer(context, target, attachment, texture,
5685 level, layer))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005686 {
Geoff Langbfdea662014-07-23 14:16:32 -04005687 return;
5688 }
Geoff Lang3ed0c482013-07-25 17:03:18 -04005689
Geoff Langbfdea662014-07-23 14:16:32 -04005690 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
5691 ASSERT(framebuffer);
Geoff Lang3ed0c482013-07-25 17:03:18 -04005692
Geoff Langbfdea662014-07-23 14:16:32 -04005693 gl::Texture *textureObject = context->getTexture(texture);
5694 GLenum textarget = textureObject ? textureObject->getTarget() : GL_NONE;
Geoff Lang3ed0c482013-07-25 17:03:18 -04005695
Geoff Langbfdea662014-07-23 14:16:32 -04005696 if (attachment >= GL_COLOR_ATTACHMENT0_EXT && attachment <= GL_COLOR_ATTACHMENT15_EXT)
5697 {
5698 const unsigned int colorAttachment = (attachment - GL_COLOR_ATTACHMENT0_EXT);
5699 framebuffer->setColorbuffer(colorAttachment, textarget, texture, level, layer);
5700 }
5701 else
5702 {
5703 switch (attachment)
Geoff Lang3ed0c482013-07-25 17:03:18 -04005704 {
Geoff Langbfdea662014-07-23 14:16:32 -04005705 case GL_DEPTH_ATTACHMENT: framebuffer->setDepthbuffer(textarget, texture, level, layer); break;
5706 case GL_STENCIL_ATTACHMENT: framebuffer->setStencilbuffer(textarget, texture, level, layer); break;
5707 case GL_DEPTH_STENCIL_ATTACHMENT: framebuffer->setDepthStencilBuffer(textarget, texture, level, layer); break;
Geoff Lang3ed0c482013-07-25 17:03:18 -04005708 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005709 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005710 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005711}
5712
5713GLvoid* __stdcall glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
5714{
5715 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d, GLbitfield access = 0x%X)",
5716 target, offset, length, access);
5717
Geoff Langbfdea662014-07-23 14:16:32 -04005718 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005719 if (context)
5720 {
5721 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005722 {
Geoff Langb1196682014-07-23 13:47:29 -04005723 context->recordError(gl::Error(GL_INVALID_OPERATION));
5724 return NULL;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005725 }
Geoff Langbfdea662014-07-23 14:16:32 -04005726
5727 return glMapBufferRangeEXT(target, offset, length, access);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005728 }
5729
5730 return NULL;
5731}
5732
5733void __stdcall glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length)
5734{
5735 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d)", target, offset, length);
5736
Geoff Langbfdea662014-07-23 14:16:32 -04005737 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005738 if (context)
5739 {
5740 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005741 {
Geoff Langb1196682014-07-23 13:47:29 -04005742 context->recordError(gl::Error(GL_INVALID_OPERATION));
5743 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005744 }
Geoff Langbfdea662014-07-23 14:16:32 -04005745
5746 glFlushMappedBufferRangeEXT(target, offset, length);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005747 }
5748}
5749
5750void __stdcall glBindVertexArray(GLuint array)
5751{
5752 EVENT("(GLuint array = %u)", array);
5753
Geoff Langbfdea662014-07-23 14:16:32 -04005754 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005755 if (context)
5756 {
5757 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005758 {
Geoff Langb1196682014-07-23 13:47:29 -04005759 context->recordError(gl::Error(GL_INVALID_OPERATION));
5760 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005761 }
Geoff Langbfdea662014-07-23 14:16:32 -04005762
5763 gl::VertexArray *vao = context->getVertexArray(array);
5764
5765 if (!vao)
5766 {
5767 // The default VAO should always exist
5768 ASSERT(array != 0);
Geoff Langb1196682014-07-23 13:47:29 -04005769 context->recordError(gl::Error(GL_INVALID_OPERATION));
5770 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005771 }
5772
5773 context->bindVertexArray(array);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005774 }
5775}
5776
5777void __stdcall glDeleteVertexArrays(GLsizei n, const GLuint* arrays)
5778{
5779 EVENT("(GLsizei n = %d, const GLuint* arrays = 0x%0.8p)", n, arrays);
5780
Geoff Langbfdea662014-07-23 14:16:32 -04005781 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005782 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005783 {
Geoff Langbfdea662014-07-23 14:16:32 -04005784 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005785 {
Geoff Langb1196682014-07-23 13:47:29 -04005786 context->recordError(gl::Error(GL_INVALID_OPERATION));
5787 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005788 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005789
Geoff Langbfdea662014-07-23 14:16:32 -04005790 if (n < 0)
5791 {
Geoff Langb1196682014-07-23 13:47:29 -04005792 context->recordError(gl::Error(GL_INVALID_VALUE));
5793 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005794 }
Jamie Madilld1028542013-07-02 11:57:04 -04005795
Geoff Langbfdea662014-07-23 14:16:32 -04005796 for (int arrayIndex = 0; arrayIndex < n; arrayIndex++)
5797 {
5798 if (arrays[arrayIndex] != 0)
Jamie Madilld1028542013-07-02 11:57:04 -04005799 {
Geoff Langbfdea662014-07-23 14:16:32 -04005800 context->deleteVertexArray(arrays[arrayIndex]);
Jamie Madilld1028542013-07-02 11:57:04 -04005801 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005802 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005803 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005804}
5805
5806void __stdcall glGenVertexArrays(GLsizei n, GLuint* arrays)
5807{
5808 EVENT("(GLsizei n = %d, GLuint* arrays = 0x%0.8p)", n, arrays);
5809
Geoff Langbfdea662014-07-23 14:16:32 -04005810 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005811 if (context)
5812 {
5813 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005814 {
Geoff Langb1196682014-07-23 13:47:29 -04005815 context->recordError(gl::Error(GL_INVALID_OPERATION));
5816 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005817 }
Geoff Langbfdea662014-07-23 14:16:32 -04005818
5819 if (n < 0)
5820 {
Geoff Langb1196682014-07-23 13:47:29 -04005821 context->recordError(gl::Error(GL_INVALID_VALUE));
5822 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005823 }
5824
5825 for (int arrayIndex = 0; arrayIndex < n; arrayIndex++)
5826 {
5827 arrays[arrayIndex] = context->createVertexArray();
5828 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005829 }
5830}
5831
5832GLboolean __stdcall glIsVertexArray(GLuint array)
5833{
5834 EVENT("(GLuint array = %u)", array);
5835
Geoff Langbfdea662014-07-23 14:16:32 -04005836 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005837 if (context)
5838 {
5839 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005840 {
Geoff Langb1196682014-07-23 13:47:29 -04005841 context->recordError(gl::Error(GL_INVALID_OPERATION));
5842 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005843 }
Geoff Langbfdea662014-07-23 14:16:32 -04005844
5845 if (array == 0)
5846 {
5847 return GL_FALSE;
5848 }
5849
5850 gl::VertexArray *vao = context->getVertexArray(array);
5851
5852 return (vao != NULL ? GL_TRUE : GL_FALSE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005853 }
5854
5855 return GL_FALSE;
5856}
5857
5858void __stdcall glGetIntegeri_v(GLenum target, GLuint index, GLint* data)
5859{
5860 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLint* data = 0x%0.8p)",
5861 target, index, data);
5862
Geoff Langbfdea662014-07-23 14:16:32 -04005863 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005864 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005865 {
Geoff Langbfdea662014-07-23 14:16:32 -04005866 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005867 {
Geoff Langb1196682014-07-23 13:47:29 -04005868 context->recordError(gl::Error(GL_INVALID_OPERATION));
5869 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005870 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005871
Geoff Lang3a61c322014-07-10 13:01:54 -04005872 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04005873 switch (target)
5874 {
5875 case GL_TRANSFORM_FEEDBACK_BUFFER_START:
5876 case GL_TRANSFORM_FEEDBACK_BUFFER_SIZE:
5877 case GL_TRANSFORM_FEEDBACK_BUFFER_BINDING:
Geoff Lang05881a02014-07-10 14:05:30 -04005878 if (index >= caps.maxTransformFeedbackSeparateAttributes)
5879 {
Geoff Langb1196682014-07-23 13:47:29 -04005880 context->recordError(gl::Error(GL_INVALID_VALUE));
5881 return;
Geoff Lang05881a02014-07-10 14:05:30 -04005882 }
Geoff Langbfdea662014-07-23 14:16:32 -04005883 break;
Geoff Langb1196682014-07-23 13:47:29 -04005884
Geoff Langbfdea662014-07-23 14:16:32 -04005885 case GL_UNIFORM_BUFFER_START:
5886 case GL_UNIFORM_BUFFER_SIZE:
5887 case GL_UNIFORM_BUFFER_BINDING:
Geoff Lang3a61c322014-07-10 13:01:54 -04005888 if (index >= caps.maxCombinedUniformBlocks)
5889 {
Geoff Langb1196682014-07-23 13:47:29 -04005890 context->recordError(gl::Error(GL_INVALID_VALUE));
5891 return;
Geoff Lang3a61c322014-07-10 13:01:54 -04005892 }
Geoff Langbfdea662014-07-23 14:16:32 -04005893 break;
Geoff Langb1196682014-07-23 13:47:29 -04005894
Geoff Langbfdea662014-07-23 14:16:32 -04005895 default:
Geoff Langb1196682014-07-23 13:47:29 -04005896 context->recordError(gl::Error(GL_INVALID_ENUM));
5897 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005898 }
5899
5900 if (!(context->getIndexedIntegerv(target, index, data)))
5901 {
5902 GLenum nativeType;
5903 unsigned int numParams = 0;
5904 if (!context->getIndexedQueryParameterInfo(target, &nativeType, &numParams))
Geoff Langb1196682014-07-23 13:47:29 -04005905 {
5906 context->recordError(gl::Error(GL_INVALID_ENUM));
5907 return;
5908 }
Shannon Woods15934d52013-08-19 14:28:49 -04005909
Geoff Langbfdea662014-07-23 14:16:32 -04005910 if (numParams == 0)
Geoff Langb1196682014-07-23 13:47:29 -04005911 {
Geoff Langbfdea662014-07-23 14:16:32 -04005912 return; // it is known that pname is valid, but there are no parameters to return
Geoff Langb1196682014-07-23 13:47:29 -04005913 }
Geoff Langbfdea662014-07-23 14:16:32 -04005914
5915 if (nativeType == GL_INT_64_ANGLEX)
Shannon Woods15934d52013-08-19 14:28:49 -04005916 {
Geoff Langbfdea662014-07-23 14:16:32 -04005917 GLint64 minIntValue = static_cast<GLint64>(std::numeric_limits<int>::min());
5918 GLint64 maxIntValue = static_cast<GLint64>(std::numeric_limits<int>::max());
5919 GLint64 *int64Params = new GLint64[numParams];
Shannon Woods15934d52013-08-19 14:28:49 -04005920
Geoff Langbfdea662014-07-23 14:16:32 -04005921 context->getIndexedInteger64v(target, index, int64Params);
Shannon Woods15934d52013-08-19 14:28:49 -04005922
Geoff Langbfdea662014-07-23 14:16:32 -04005923 for (unsigned int i = 0; i < numParams; ++i)
Shannon Woods15934d52013-08-19 14:28:49 -04005924 {
Geoff Langbfdea662014-07-23 14:16:32 -04005925 GLint64 clampedValue = std::max(std::min(int64Params[i], maxIntValue), minIntValue);
5926 data[i] = static_cast<GLint>(clampedValue);
Shannon Woods15934d52013-08-19 14:28:49 -04005927 }
Geoff Langbfdea662014-07-23 14:16:32 -04005928
5929 delete [] int64Params;
5930 }
5931 else
5932 {
5933 UNREACHABLE();
Shannon Woods15934d52013-08-19 14:28:49 -04005934 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005935 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005936 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005937}
5938
5939void __stdcall glBeginTransformFeedback(GLenum primitiveMode)
5940{
5941 EVENT("(GLenum primitiveMode = 0x%X)", primitiveMode);
5942
Geoff Langbfdea662014-07-23 14:16:32 -04005943 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005944 if (context)
5945 {
5946 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005947 {
Geoff Langb1196682014-07-23 13:47:29 -04005948 context->recordError(gl::Error(GL_INVALID_OPERATION));
5949 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005950 }
Geoff Langbfdea662014-07-23 14:16:32 -04005951
5952 switch (primitiveMode)
5953 {
5954 case GL_TRIANGLES:
5955 case GL_LINES:
5956 case GL_POINTS:
5957 break;
Geoff Langb1196682014-07-23 13:47:29 -04005958
Geoff Langbfdea662014-07-23 14:16:32 -04005959 default:
Geoff Langb1196682014-07-23 13:47:29 -04005960 context->recordError(gl::Error(GL_INVALID_ENUM));
5961 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005962 }
5963
5964 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
5965 ASSERT(transformFeedback != NULL);
5966
5967 if (transformFeedback->isStarted())
5968 {
Geoff Langb1196682014-07-23 13:47:29 -04005969 context->recordError(gl::Error(GL_INVALID_OPERATION));
5970 return;
Geoff Langbfdea662014-07-23 14:16:32 -04005971 }
5972
5973 if (transformFeedback->isPaused())
5974 {
5975 transformFeedback->resume();
5976 }
5977 else
5978 {
5979 transformFeedback->start(primitiveMode);
5980 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005981 }
5982}
5983
5984void __stdcall glEndTransformFeedback(void)
5985{
5986 EVENT("(void)");
5987
Geoff Langbfdea662014-07-23 14:16:32 -04005988 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04005989 if (context)
5990 {
5991 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00005992 {
Geoff Langb1196682014-07-23 13:47:29 -04005993 context->recordError(gl::Error(GL_INVALID_OPERATION));
5994 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00005995 }
Geoff Langbfdea662014-07-23 14:16:32 -04005996
5997 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
5998 ASSERT(transformFeedback != NULL);
5999
6000 if (!transformFeedback->isStarted())
6001 {
Geoff Langb1196682014-07-23 13:47:29 -04006002 context->recordError(gl::Error(GL_INVALID_OPERATION));
6003 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006004 }
6005
6006 transformFeedback->stop();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006007 }
6008}
6009
6010void __stdcall glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)
6011{
6012 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLuint buffer = %u, GLintptr offset = %d, GLsizeiptr size = %d)",
6013 target, index, buffer, offset, size);
6014
Geoff Langbfdea662014-07-23 14:16:32 -04006015 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006016 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006017 {
Geoff Langbfdea662014-07-23 14:16:32 -04006018 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006019 {
Geoff Langb1196682014-07-23 13:47:29 -04006020 context->recordError(gl::Error(GL_INVALID_OPERATION));
6021 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006022 }
6023
Geoff Lang3a61c322014-07-10 13:01:54 -04006024 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04006025 switch (target)
6026 {
6027 case GL_TRANSFORM_FEEDBACK_BUFFER:
Geoff Lang05881a02014-07-10 14:05:30 -04006028 if (index >= caps.maxTransformFeedbackSeparateAttributes)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006029 {
Geoff Langb1196682014-07-23 13:47:29 -04006030 context->recordError(gl::Error(GL_INVALID_VALUE));
6031 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006032 }
Geoff Langbfdea662014-07-23 14:16:32 -04006033 break;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006034
Geoff Langbfdea662014-07-23 14:16:32 -04006035 case GL_UNIFORM_BUFFER:
Geoff Lang3a61c322014-07-10 13:01:54 -04006036 if (index >= caps.maxUniformBufferBindings)
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006037 {
Geoff Langb1196682014-07-23 13:47:29 -04006038 context->recordError(gl::Error(GL_INVALID_VALUE));
6039 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006040 }
Geoff Langbfdea662014-07-23 14:16:32 -04006041 break;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006042
Geoff Langbfdea662014-07-23 14:16:32 -04006043 default:
Geoff Langb1196682014-07-23 13:47:29 -04006044 context->recordError(gl::Error(GL_INVALID_ENUM));
6045 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006046 }
6047
6048 if (buffer != 0 && size <= 0)
6049 {
Geoff Langb1196682014-07-23 13:47:29 -04006050 context->recordError(gl::Error(GL_INVALID_VALUE));
6051 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006052 }
6053
6054 switch (target)
6055 {
6056 case GL_TRANSFORM_FEEDBACK_BUFFER:
6057
6058 // size and offset must be a multiple of 4
6059 if (buffer != 0 && ((offset % 4) != 0 || (size % 4) != 0))
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006060 {
Geoff Langb1196682014-07-23 13:47:29 -04006061 context->recordError(gl::Error(GL_INVALID_VALUE));
6062 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006063 }
6064
Geoff Langbfdea662014-07-23 14:16:32 -04006065 context->bindIndexedTransformFeedbackBuffer(buffer, index, offset, size);
6066 context->bindGenericTransformFeedbackBuffer(buffer);
6067 break;
6068
6069 case GL_UNIFORM_BUFFER:
6070
6071 // it is an error to bind an offset not a multiple of the alignment
Geoff Lang3a61c322014-07-10 13:01:54 -04006072 if (buffer != 0 && (offset % caps.uniformBufferOffsetAlignment) != 0)
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006073 {
Geoff Langb1196682014-07-23 13:47:29 -04006074 context->recordError(gl::Error(GL_INVALID_VALUE));
6075 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006076 }
Geoff Langbfdea662014-07-23 14:16:32 -04006077
6078 context->bindIndexedUniformBuffer(buffer, index, offset, size);
6079 context->bindGenericUniformBuffer(buffer);
6080 break;
6081
6082 default:
6083 UNREACHABLE();
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006084 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006085 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006086}
6087
6088void __stdcall glBindBufferBase(GLenum target, GLuint index, GLuint buffer)
6089{
6090 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLuint buffer = %u)",
6091 target, index, buffer);
6092
Geoff Langbfdea662014-07-23 14:16:32 -04006093 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006094 if (context)
6095 {
6096 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006097 {
Geoff Langb1196682014-07-23 13:47:29 -04006098 context->recordError(gl::Error(GL_INVALID_OPERATION));
6099 return;
shannon.woods%transgaming.com@gtempaccount.comd4e61972013-04-13 03:37:04 +00006100 }
Geoff Langbfdea662014-07-23 14:16:32 -04006101
Geoff Lang3a61c322014-07-10 13:01:54 -04006102 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04006103 switch (target)
6104 {
6105 case GL_TRANSFORM_FEEDBACK_BUFFER:
Geoff Lang05881a02014-07-10 14:05:30 -04006106 if (index >= caps.maxTransformFeedbackSeparateAttributes)
Geoff Langbfdea662014-07-23 14:16:32 -04006107 {
Geoff Langb1196682014-07-23 13:47:29 -04006108 context->recordError(gl::Error(GL_INVALID_VALUE));
6109 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006110 }
6111 break;
6112
6113 case GL_UNIFORM_BUFFER:
Geoff Lang3a61c322014-07-10 13:01:54 -04006114 if (index >= caps.maxUniformBufferBindings)
Geoff Langbfdea662014-07-23 14:16:32 -04006115 {
Geoff Langb1196682014-07-23 13:47:29 -04006116 context->recordError(gl::Error(GL_INVALID_VALUE));
6117 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006118 }
6119 break;
6120
6121 default:
Geoff Langb1196682014-07-23 13:47:29 -04006122 context->recordError(gl::Error(GL_INVALID_ENUM));
6123 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006124 }
6125
6126 switch (target)
6127 {
6128 case GL_TRANSFORM_FEEDBACK_BUFFER:
6129 context->bindIndexedTransformFeedbackBuffer(buffer, index, 0, 0);
6130 context->bindGenericTransformFeedbackBuffer(buffer);
6131 break;
6132
6133 case GL_UNIFORM_BUFFER:
6134 context->bindIndexedUniformBuffer(buffer, index, 0, 0);
6135 context->bindGenericUniformBuffer(buffer);
6136 break;
6137
6138 default:
6139 UNREACHABLE();
6140 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006141 }
6142}
6143
6144void __stdcall glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar* const* varyings, GLenum bufferMode)
6145{
6146 EVENT("(GLuint program = %u, GLsizei count = %d, const GLchar* const* varyings = 0x%0.8p, GLenum bufferMode = 0x%X)",
6147 program, count, varyings, bufferMode);
6148
Geoff Langbfdea662014-07-23 14:16:32 -04006149 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006150 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006151 {
Geoff Langbfdea662014-07-23 14:16:32 -04006152 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006153 {
Geoff Langb1196682014-07-23 13:47:29 -04006154 context->recordError(gl::Error(GL_INVALID_OPERATION));
6155 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006156 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006157
Geoff Langbfdea662014-07-23 14:16:32 -04006158 if (count < 0)
6159 {
Geoff Langb1196682014-07-23 13:47:29 -04006160 context->recordError(gl::Error(GL_INVALID_VALUE));
6161 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006162 }
6163
Geoff Lang05881a02014-07-10 14:05:30 -04006164 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04006165 switch (bufferMode)
6166 {
6167 case GL_INTERLEAVED_ATTRIBS:
6168 break;
6169 case GL_SEPARATE_ATTRIBS:
Geoff Lang05881a02014-07-10 14:05:30 -04006170 if (static_cast<GLuint>(count) > caps.maxTransformFeedbackSeparateAttributes)
Geoff Lang48dcae72014-02-05 16:28:24 -05006171 {
Geoff Langb1196682014-07-23 13:47:29 -04006172 context->recordError(gl::Error(GL_INVALID_VALUE));
6173 return;
Geoff Lang48dcae72014-02-05 16:28:24 -05006174 }
Geoff Langbfdea662014-07-23 14:16:32 -04006175 break;
6176 default:
Geoff Langb1196682014-07-23 13:47:29 -04006177 context->recordError(gl::Error(GL_INVALID_ENUM));
6178 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006179 }
Geoff Langbfdea662014-07-23 14:16:32 -04006180
6181 if (!gl::ValidProgram(context, program))
6182 {
6183 return;
6184 }
6185
6186 gl::Program *programObject = context->getProgram(program);
6187 ASSERT(programObject);
6188
6189 programObject->setTransformFeedbackVaryings(count, varyings, bufferMode);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006190 }
6191}
6192
6193void __stdcall glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei* length, GLsizei* size, GLenum* type, GLchar* name)
6194{
6195 EVENT("(GLuint program = %u, GLuint index = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, "
6196 "GLsizei* size = 0x%0.8p, GLenum* type = 0x%0.8p, GLchar* name = 0x%0.8p)",
6197 program, index, bufSize, length, size, type, name);
6198
Geoff Langbfdea662014-07-23 14:16:32 -04006199 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006200 if (context)
6201 {
6202 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006203 {
Geoff Langb1196682014-07-23 13:47:29 -04006204 context->recordError(gl::Error(GL_INVALID_OPERATION));
6205 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006206 }
Geoff Langbfdea662014-07-23 14:16:32 -04006207
6208 if (bufSize < 0)
6209 {
Geoff Langb1196682014-07-23 13:47:29 -04006210 context->recordError(gl::Error(GL_INVALID_VALUE));
6211 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006212 }
6213
6214 if (!gl::ValidProgram(context, program))
6215 {
6216 return;
6217 }
6218
6219 gl::Program *programObject = context->getProgram(program);
6220 ASSERT(programObject);
6221
6222 if (index >= static_cast<GLuint>(programObject->getTransformFeedbackVaryingCount()))
6223 {
Geoff Langb1196682014-07-23 13:47:29 -04006224 context->recordError(gl::Error(GL_INVALID_VALUE));
6225 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006226 }
6227
6228 programObject->getTransformFeedbackVarying(index, bufSize, length, size, type, name);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006229 }
6230}
6231
6232void __stdcall glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid* pointer)
6233{
6234 EVENT("(GLuint index = %u, GLint size = %d, GLenum type = 0x%X, GLsizei stride = %d, const GLvoid* pointer = 0x%0.8p)",
6235 index, size, type, stride, pointer);
6236
Geoff Langbfdea662014-07-23 14:16:32 -04006237 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006238 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006239 {
Geoff Langbfdea662014-07-23 14:16:32 -04006240 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006241 {
Geoff Langb1196682014-07-23 13:47:29 -04006242 context->recordError(gl::Error(GL_INVALID_OPERATION));
6243 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006244 }
6245
Geoff Langb1196682014-07-23 13:47:29 -04006246 if (index >= gl::MAX_VERTEX_ATTRIBS)
6247 {
6248 context->recordError(gl::Error(GL_INVALID_VALUE));
6249 return;
6250 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006251
Geoff Langb1196682014-07-23 13:47:29 -04006252 if (size < 1 || size > 4)
6253 {
6254 context->recordError(gl::Error(GL_INVALID_VALUE));
6255 return;
6256 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006257
Geoff Langb1196682014-07-23 13:47:29 -04006258 switch (type)
6259 {
6260 case GL_BYTE:
6261 case GL_UNSIGNED_BYTE:
6262 case GL_SHORT:
6263 case GL_UNSIGNED_SHORT:
6264 case GL_INT:
6265 case GL_UNSIGNED_INT:
6266 case GL_INT_2_10_10_10_REV:
6267 case GL_UNSIGNED_INT_2_10_10_10_REV:
6268 break;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006269
Geoff Langb1196682014-07-23 13:47:29 -04006270 default:
6271 context->recordError(gl::Error(GL_INVALID_ENUM));
6272 return;
6273 }
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006274
Geoff Langb1196682014-07-23 13:47:29 -04006275 if (stride < 0)
6276 {
6277 context->recordError(gl::Error(GL_INVALID_VALUE));
6278 return;
6279 }
Geoff Langbfdea662014-07-23 14:16:32 -04006280
Geoff Langb1196682014-07-23 13:47:29 -04006281 if ((type == GL_INT_2_10_10_10_REV || type == GL_UNSIGNED_INT_2_10_10_10_REV) && size != 4)
6282 {
6283 context->recordError(gl::Error(GL_INVALID_OPERATION));
6284 return;
6285 }
6286
Geoff Langbfdea662014-07-23 14:16:32 -04006287 // [OpenGL ES 3.0.2] Section 2.8 page 24:
6288 // An INVALID_OPERATION error is generated when a non-zero vertex array object
6289 // is bound, zero is bound to the ARRAY_BUFFER buffer object binding point,
6290 // and the pointer argument is not NULL.
6291 if (context->getState().getVertexArray()->id() != 0 && context->getState().getArrayBufferId() == 0 && pointer != NULL)
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00006292 {
Geoff Langb1196682014-07-23 13:47:29 -04006293 context->recordError(gl::Error(GL_INVALID_OPERATION));
6294 return;
shannon.woods%transgaming.com@gtempaccount.com1ab57be2013-04-13 03:38:39 +00006295 }
6296
Geoff Langbfdea662014-07-23 14:16:32 -04006297 context->getState().setVertexAttribState(index, context->getState().getTargetBuffer(GL_ARRAY_BUFFER), size, type, false, true,
6298 stride, pointer);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006299 }
6300}
6301
6302void __stdcall glGetVertexAttribIiv(GLuint index, GLenum pname, GLint* params)
6303{
6304 EVENT("(GLuint index = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
6305 index, pname, params);
6306
Geoff Langbfdea662014-07-23 14:16:32 -04006307 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006308 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006309 {
Geoff Langbfdea662014-07-23 14:16:32 -04006310 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006311 {
Geoff Langb1196682014-07-23 13:47:29 -04006312 context->recordError(gl::Error(GL_INVALID_OPERATION));
6313 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006314 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006315
Geoff Langbfdea662014-07-23 14:16:32 -04006316 if (index >= gl::MAX_VERTEX_ATTRIBS)
6317 {
Geoff Langb1196682014-07-23 13:47:29 -04006318 context->recordError(gl::Error(GL_INVALID_VALUE));
6319 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006320 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006321
Geoff Langbfdea662014-07-23 14:16:32 -04006322 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
Jamie Madilla7d05862013-07-02 11:57:06 -04006323
Geoff Langb1196682014-07-23 13:47:29 -04006324 if (!gl::ValidateGetVertexAttribParameters(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04006325 {
6326 return;
6327 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006328
Geoff Langbfdea662014-07-23 14:16:32 -04006329 if (pname == GL_CURRENT_VERTEX_ATTRIB)
6330 {
6331 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
6332 for (int i = 0; i < 4; ++i)
Jamie Madilla7d05862013-07-02 11:57:06 -04006333 {
Geoff Langbfdea662014-07-23 14:16:32 -04006334 params[i] = currentValueData.IntValues[i];
Jamie Madilla7d05862013-07-02 11:57:06 -04006335 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006336 }
Geoff Langbfdea662014-07-23 14:16:32 -04006337 else
6338 {
6339 *params = gl::QuerySingleVertexAttributeParameter<GLint>(attribState, pname);
6340 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006341 }
6342}
6343
6344void __stdcall glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint* params)
6345{
6346 EVENT("(GLuint index = %u, GLenum pname = 0x%X, GLuint* params = 0x%0.8p)",
6347 index, pname, params);
6348
Geoff Langbfdea662014-07-23 14:16:32 -04006349 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006350 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006351 {
Geoff Langbfdea662014-07-23 14:16:32 -04006352 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006353 {
Geoff Langb1196682014-07-23 13:47:29 -04006354 context->recordError(gl::Error(GL_INVALID_OPERATION));
6355 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006356 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006357
Geoff Langbfdea662014-07-23 14:16:32 -04006358 if (index >= gl::MAX_VERTEX_ATTRIBS)
6359 {
Geoff Langb1196682014-07-23 13:47:29 -04006360 context->recordError(gl::Error(GL_INVALID_VALUE));
6361 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006362 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006363
Geoff Langbfdea662014-07-23 14:16:32 -04006364 const gl::VertexAttribute &attribState = context->getState().getVertexAttribState(index);
Jamie Madilla7d05862013-07-02 11:57:06 -04006365
Geoff Langb1196682014-07-23 13:47:29 -04006366 if (!gl::ValidateGetVertexAttribParameters(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04006367 {
6368 return;
6369 }
Jamie Madilla7d05862013-07-02 11:57:06 -04006370
Geoff Langbfdea662014-07-23 14:16:32 -04006371 if (pname == GL_CURRENT_VERTEX_ATTRIB)
6372 {
6373 const gl::VertexAttribCurrentValueData &currentValueData = context->getState().getVertexAttribCurrentValue(index);
6374 for (int i = 0; i < 4; ++i)
Jamie Madilla7d05862013-07-02 11:57:06 -04006375 {
Geoff Langbfdea662014-07-23 14:16:32 -04006376 params[i] = currentValueData.UnsignedIntValues[i];
Jamie Madilla7d05862013-07-02 11:57:06 -04006377 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006378 }
Geoff Langbfdea662014-07-23 14:16:32 -04006379 else
6380 {
6381 *params = gl::QuerySingleVertexAttributeParameter<GLuint>(attribState, pname);
6382 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006383 }
6384}
6385
6386void __stdcall glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w)
6387{
6388 EVENT("(GLuint index = %u, GLint x = %d, GLint y = %d, GLint z = %d, GLint w = %d)",
6389 index, x, y, z, w);
6390
Geoff Langbfdea662014-07-23 14:16:32 -04006391 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006392 if (context)
6393 {
6394 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006395 {
Geoff Langb1196682014-07-23 13:47:29 -04006396 context->recordError(gl::Error(GL_INVALID_OPERATION));
6397 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006398 }
Geoff Langbfdea662014-07-23 14:16:32 -04006399
6400 if (index >= gl::MAX_VERTEX_ATTRIBS)
6401 {
Geoff Langb1196682014-07-23 13:47:29 -04006402 context->recordError(gl::Error(GL_INVALID_VALUE));
6403 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006404 }
6405
6406 GLint vals[4] = { x, y, z, w };
6407 context->getState().setVertexAttribi(index, vals);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006408 }
6409}
6410
6411void __stdcall glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)
6412{
6413 EVENT("(GLuint index = %u, GLuint x = %u, GLuint y = %u, GLuint z = %u, GLuint w = %u)",
6414 index, x, y, z, w);
6415
Geoff Langbfdea662014-07-23 14:16:32 -04006416 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006417 if (context)
6418 {
6419 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006420 {
Geoff Langb1196682014-07-23 13:47:29 -04006421 context->recordError(gl::Error(GL_INVALID_OPERATION));
6422 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006423 }
Geoff Langbfdea662014-07-23 14:16:32 -04006424
6425 if (index >= gl::MAX_VERTEX_ATTRIBS)
6426 {
Geoff Langb1196682014-07-23 13:47:29 -04006427 context->recordError(gl::Error(GL_INVALID_VALUE));
6428 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006429 }
6430
6431 GLuint vals[4] = { x, y, z, w };
6432 context->getState().setVertexAttribu(index, vals);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006433 }
6434}
6435
6436void __stdcall glVertexAttribI4iv(GLuint index, const GLint* v)
6437{
6438 EVENT("(GLuint index = %u, const GLint* v = 0x%0.8p)", index, v);
6439
Geoff Langbfdea662014-07-23 14:16:32 -04006440 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006441 if (context)
6442 {
6443 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006444 {
Geoff Langb1196682014-07-23 13:47:29 -04006445 context->recordError(gl::Error(GL_INVALID_OPERATION));
6446 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006447 }
Geoff Langbfdea662014-07-23 14:16:32 -04006448
6449 if (index >= gl::MAX_VERTEX_ATTRIBS)
6450 {
Geoff Langb1196682014-07-23 13:47:29 -04006451 context->recordError(gl::Error(GL_INVALID_VALUE));
6452 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006453 }
6454
6455 context->getState().setVertexAttribi(index, v);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006456 }
6457}
6458
6459void __stdcall glVertexAttribI4uiv(GLuint index, const GLuint* v)
6460{
6461 EVENT("(GLuint index = %u, const GLuint* v = 0x%0.8p)", index, v);
6462
Geoff Langbfdea662014-07-23 14:16:32 -04006463 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006464 if (context)
6465 {
6466 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006467 {
Geoff Langb1196682014-07-23 13:47:29 -04006468 context->recordError(gl::Error(GL_INVALID_OPERATION));
6469 return;
shannon.woods%transgaming.com@gtempaccount.coma8885862013-04-13 03:37:53 +00006470 }
Geoff Langbfdea662014-07-23 14:16:32 -04006471
6472 if (index >= gl::MAX_VERTEX_ATTRIBS)
6473 {
Geoff Langb1196682014-07-23 13:47:29 -04006474 context->recordError(gl::Error(GL_INVALID_VALUE));
6475 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006476 }
6477
6478 context->getState().setVertexAttribu(index, v);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006479 }
6480}
6481
6482void __stdcall glGetUniformuiv(GLuint program, GLint location, GLuint* params)
6483{
6484 EVENT("(GLuint program = %u, GLint location = %d, GLuint* params = 0x%0.8p)",
6485 program, location, params);
6486
Geoff Langbfdea662014-07-23 14:16:32 -04006487 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006488 if (context)
6489 {
Jamie Madill0063c512014-08-25 15:47:53 -04006490 if (!ValidateGetUniformuiv(context, program, location, params))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006491 {
Jamie Madill0063c512014-08-25 15:47:53 -04006492 return;
shannon.woods%transgaming.com@gtempaccount.come2290122013-04-13 03:41:07 +00006493 }
Geoff Langbfdea662014-07-23 14:16:32 -04006494
Jamie Madilla502c742014-08-28 17:19:13 -04006495 gl::Program *programObject = context->getProgram(program);
6496 ASSERT(programObject);
6497 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
Jamie Madill0063c512014-08-25 15:47:53 -04006498 ASSERT(programBinary);
Geoff Langbfdea662014-07-23 14:16:32 -04006499
Jamie Madill99a1e982014-08-25 15:47:54 -04006500 programBinary->getUniformuiv(location, params);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006501 }
6502}
6503
6504GLint __stdcall glGetFragDataLocation(GLuint program, const GLchar *name)
6505{
6506 EVENT("(GLuint program = %u, const GLchar *name = 0x%0.8p)",
6507 program, name);
6508
Geoff Langbfdea662014-07-23 14:16:32 -04006509 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006510 if (context)
6511 {
6512 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006513 {
Geoff Langb1196682014-07-23 13:47:29 -04006514 context->recordError(gl::Error(GL_INVALID_OPERATION));
6515 return -1;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006516 }
Geoff Langbfdea662014-07-23 14:16:32 -04006517
6518 if (program == 0)
6519 {
Geoff Langb1196682014-07-23 13:47:29 -04006520 context->recordError(gl::Error(GL_INVALID_VALUE));
6521 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04006522 }
6523
6524 gl::Program *programObject = context->getProgram(program);
6525
6526 if (!programObject || !programObject->isLinked())
6527 {
Geoff Langb1196682014-07-23 13:47:29 -04006528 context->recordError(gl::Error(GL_INVALID_OPERATION));
6529 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04006530 }
6531
6532 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6533 if (!programBinary)
6534 {
Geoff Langb1196682014-07-23 13:47:29 -04006535 context->recordError(gl::Error(GL_INVALID_OPERATION));
6536 return -1;
Geoff Langbfdea662014-07-23 14:16:32 -04006537 }
6538
6539 return programBinary->getFragDataLocation(name);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006540 }
6541
6542 return 0;
6543}
6544
6545void __stdcall glUniform1ui(GLint location, GLuint v0)
6546{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006547 glUniform1uiv(location, 1, &v0);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006548}
6549
6550void __stdcall glUniform2ui(GLint location, GLuint v0, GLuint v1)
6551{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006552 const GLuint xy[] = { v0, v1 };
6553 glUniform2uiv(location, 1, xy);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006554}
6555
6556void __stdcall glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2)
6557{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006558 const GLuint xyz[] = { v0, v1, v2 };
6559 glUniform3uiv(location, 1, xyz);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006560}
6561
6562void __stdcall glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3)
6563{
shannon.woods%transgaming.com@gtempaccount.com8431b9c2013-04-13 03:40:17 +00006564 const GLuint xyzw[] = { v0, v1, v2, v3 };
6565 glUniform4uiv(location, 1, xyzw);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006566}
6567
6568void __stdcall glUniform1uiv(GLint location, GLsizei count, const GLuint* value)
6569{
6570 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6571 location, count, value);
6572
Geoff Langbfdea662014-07-23 14:16:32 -04006573 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006574 if (context)
6575 {
6576 if (!ValidateUniform(context, GL_UNSIGNED_INT, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006577 {
Geoff Langbfdea662014-07-23 14:16:32 -04006578 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006579 }
Geoff Langbfdea662014-07-23 14:16:32 -04006580
6581 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6582 programBinary->setUniform1uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006583 }
6584}
6585
6586void __stdcall glUniform2uiv(GLint location, GLsizei count, const GLuint* value)
6587{
6588 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6589 location, count, value);
6590
Geoff Langbfdea662014-07-23 14:16:32 -04006591 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006592 if (context)
6593 {
6594 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC2, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006595 {
Geoff Langbfdea662014-07-23 14:16:32 -04006596 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006597 }
Geoff Langbfdea662014-07-23 14:16:32 -04006598
6599 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6600 programBinary->setUniform2uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006601 }
6602}
6603
6604void __stdcall glUniform3uiv(GLint location, GLsizei count, const GLuint* value)
6605{
6606 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value)",
6607 location, count, value);
6608
Geoff Langbfdea662014-07-23 14:16:32 -04006609 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006610 if (context)
6611 {
6612 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC3, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006613 {
Geoff Langbfdea662014-07-23 14:16:32 -04006614 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006615 }
Geoff Langbfdea662014-07-23 14:16:32 -04006616
6617 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6618 programBinary->setUniform3uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006619 }
6620}
6621
6622void __stdcall glUniform4uiv(GLint location, GLsizei count, const GLuint* value)
6623{
6624 EVENT("(GLint location = %d, GLsizei count = %d, const GLuint* value = 0x%0.8p)",
6625 location, count, value);
6626
Geoff Langbfdea662014-07-23 14:16:32 -04006627 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006628 if (context)
6629 {
6630 if (!ValidateUniform(context, GL_UNSIGNED_INT_VEC4, location, count))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006631 {
Geoff Langbfdea662014-07-23 14:16:32 -04006632 return;
shannon.woods%transgaming.com@gtempaccount.com50ea4ab2013-04-13 03:40:36 +00006633 }
Geoff Langbfdea662014-07-23 14:16:32 -04006634
6635 gl::ProgramBinary *programBinary = context->getState().getCurrentProgramBinary();
6636 programBinary->setUniform4uiv(location, count, value);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006637 }
6638}
6639
6640void __stdcall glClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint* value)
6641{
6642 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLint* value = 0x%0.8p)",
6643 buffer, drawbuffer, value);
6644
Geoff Langbfdea662014-07-23 14:16:32 -04006645 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006646 if (context)
6647 {
6648 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006649 {
Geoff Langbfdea662014-07-23 14:16:32 -04006650 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006651 }
Geoff Langbfdea662014-07-23 14:16:32 -04006652
6653 switch (buffer)
6654 {
6655 case GL_COLOR:
6656 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6657 {
Geoff Langb1196682014-07-23 13:47:29 -04006658 context->recordError(gl::Error(GL_INVALID_VALUE));
6659 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006660 }
6661 break;
Geoff Langb1196682014-07-23 13:47:29 -04006662
Geoff Langbfdea662014-07-23 14:16:32 -04006663 case GL_STENCIL:
6664 if (drawbuffer != 0)
6665 {
Geoff Langb1196682014-07-23 13:47:29 -04006666 context->recordError(gl::Error(GL_INVALID_VALUE));
6667 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006668 }
6669 break;
Geoff Langb1196682014-07-23 13:47:29 -04006670
Geoff Langbfdea662014-07-23 14:16:32 -04006671 default:
Geoff Langb1196682014-07-23 13:47:29 -04006672 context->recordError(gl::Error(GL_INVALID_ENUM));
6673 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006674 }
6675
Geoff Langcc79b8c2014-07-25 13:48:02 -04006676 gl::Error error = context->clearBufferiv(buffer, drawbuffer, value);
6677 if (error.isError())
6678 {
6679 context->recordError(error);
6680 return;
6681 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006682 }
6683}
6684
6685void __stdcall glClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint* value)
6686{
6687 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLuint* value = 0x%0.8p)",
6688 buffer, drawbuffer, value);
6689
Geoff Langbfdea662014-07-23 14:16:32 -04006690 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006691 if (context)
6692 {
6693 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006694 {
Geoff Langbfdea662014-07-23 14:16:32 -04006695 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006696 }
Geoff Langbfdea662014-07-23 14:16:32 -04006697
6698 switch (buffer)
6699 {
6700 case GL_COLOR:
6701 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6702 {
Geoff Langb1196682014-07-23 13:47:29 -04006703 context->recordError(gl::Error(GL_INVALID_VALUE));
6704 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006705 }
6706 break;
Geoff Langb1196682014-07-23 13:47:29 -04006707
Geoff Langbfdea662014-07-23 14:16:32 -04006708 default:
Geoff Langb1196682014-07-23 13:47:29 -04006709 context->recordError(gl::Error(GL_INVALID_ENUM));
6710 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006711 }
6712
Geoff Langcc79b8c2014-07-25 13:48:02 -04006713 gl::Error error = context->clearBufferuiv(buffer, drawbuffer, value);
6714 if (error.isError())
6715 {
6716 context->recordError(error);
6717 return;
6718 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006719 }
6720}
6721
6722void __stdcall glClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat* value)
6723{
6724 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, const GLfloat* value = 0x%0.8p)",
6725 buffer, drawbuffer, value);
6726
Geoff Langbfdea662014-07-23 14:16:32 -04006727 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006728 if (context)
6729 {
6730 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006731 {
Geoff Langbfdea662014-07-23 14:16:32 -04006732 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006733 }
Geoff Langbfdea662014-07-23 14:16:32 -04006734
6735 switch (buffer)
6736 {
6737 case GL_COLOR:
6738 if (drawbuffer < 0 || static_cast<GLuint>(drawbuffer) >= context->getCaps().maxDrawBuffers)
6739 {
Geoff Langb1196682014-07-23 13:47:29 -04006740 context->recordError(gl::Error(GL_INVALID_VALUE));
6741 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006742 }
6743 break;
Geoff Langb1196682014-07-23 13:47:29 -04006744
Geoff Langbfdea662014-07-23 14:16:32 -04006745 case GL_DEPTH:
6746 if (drawbuffer != 0)
6747 {
Geoff Langb1196682014-07-23 13:47:29 -04006748 context->recordError(gl::Error(GL_INVALID_VALUE));
6749 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006750 }
6751 break;
Geoff Langb1196682014-07-23 13:47:29 -04006752
Geoff Langbfdea662014-07-23 14:16:32 -04006753 default:
Geoff Langb1196682014-07-23 13:47:29 -04006754 context->recordError(gl::Error(GL_INVALID_ENUM));
6755 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006756 }
6757
Geoff Langcc79b8c2014-07-25 13:48:02 -04006758 gl::Error error = context->clearBufferfv(buffer, drawbuffer, value);
6759 if (error.isError())
6760 {
6761 context->recordError(error);
6762 return;
6763 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006764 }
6765}
6766
6767void __stdcall glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil)
6768{
6769 EVENT("(GLenum buffer = 0x%X, GLint drawbuffer = %d, GLfloat depth, GLint stencil = %d)",
6770 buffer, drawbuffer, depth, stencil);
6771
Geoff Langbfdea662014-07-23 14:16:32 -04006772 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006773 if (context)
6774 {
6775 if (!ValidateClearBuffer(context))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006776 {
Geoff Langbfdea662014-07-23 14:16:32 -04006777 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00006778 }
Geoff Langbfdea662014-07-23 14:16:32 -04006779
6780 switch (buffer)
6781 {
6782 case GL_DEPTH_STENCIL:
6783 if (drawbuffer != 0)
6784 {
Geoff Langb1196682014-07-23 13:47:29 -04006785 context->recordError(gl::Error(GL_INVALID_VALUE));
6786 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006787 }
6788 break;
Geoff Langb1196682014-07-23 13:47:29 -04006789
Geoff Langbfdea662014-07-23 14:16:32 -04006790 default:
Geoff Langb1196682014-07-23 13:47:29 -04006791 context->recordError(gl::Error(GL_INVALID_ENUM));
6792 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006793 }
6794
Geoff Langcc79b8c2014-07-25 13:48:02 -04006795 gl::Error error = context->clearBufferfi(buffer, drawbuffer, depth, stencil);
6796 if (error.isError())
6797 {
6798 context->recordError(error);
6799 return;
6800 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006801 }
6802}
6803
6804const GLubyte* __stdcall glGetStringi(GLenum name, GLuint index)
6805{
6806 EVENT("(GLenum name = 0x%X, GLuint index = %u)", name, index);
6807
Geoff Langbfdea662014-07-23 14:16:32 -04006808 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006809 if (context)
6810 {
6811 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006812 {
Geoff Langb1196682014-07-23 13:47:29 -04006813 context->recordError(gl::Error(GL_INVALID_OPERATION));
6814 return NULL;
shannonwoods@chromium.org302df742013-05-30 00:05:54 +00006815 }
Geoff Langbfdea662014-07-23 14:16:32 -04006816
6817 if (name != GL_EXTENSIONS)
6818 {
Geoff Langb1196682014-07-23 13:47:29 -04006819 context->recordError(gl::Error(GL_INVALID_ENUM));
6820 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04006821 }
6822
6823 if (index >= context->getExtensionStringCount())
6824 {
Geoff Langb1196682014-07-23 13:47:29 -04006825 context->recordError(gl::Error(GL_INVALID_VALUE));
6826 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04006827 }
6828
6829 return reinterpret_cast<const GLubyte*>(context->getExtensionString(index).c_str());
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006830 }
6831
6832 return NULL;
6833}
6834
6835void __stdcall glCopyBufferSubData(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size)
6836{
6837 EVENT("(GLenum readTarget = 0x%X, GLenum writeTarget = 0x%X, GLintptr readOffset = %d, GLintptr writeOffset = %d, GLsizeiptr size = %d)",
6838 readTarget, writeTarget, readOffset, writeOffset, size);
6839
Geoff Langbfdea662014-07-23 14:16:32 -04006840 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006841 if (context)
6842 {
6843 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006844 {
Geoff Langb1196682014-07-23 13:47:29 -04006845 context->recordError(gl::Error(GL_INVALID_OPERATION));
6846 return;
shannon.woods%transgaming.com@gtempaccount.com296c3f22013-04-13 03:39:39 +00006847 }
Geoff Langbfdea662014-07-23 14:16:32 -04006848
6849 if (!gl::ValidBufferTarget(context, readTarget) || !gl::ValidBufferTarget(context, readTarget))
6850 {
Geoff Langb1196682014-07-23 13:47:29 -04006851 context->recordError(gl::Error(GL_INVALID_ENUM));
6852 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006853 }
6854
6855 gl::Buffer *readBuffer = context->getState().getTargetBuffer(readTarget);
6856 gl::Buffer *writeBuffer = context->getState().getTargetBuffer(writeTarget);
6857
6858 if (!readBuffer || !writeBuffer)
6859 {
Geoff Langb1196682014-07-23 13:47:29 -04006860 context->recordError(gl::Error(GL_INVALID_OPERATION));
6861 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006862 }
6863
Jamie Madillcfaaf722014-07-31 10:47:54 -04006864 // Verify that readBuffer and writeBuffer are not currently mapped
Geoff Langbfdea662014-07-23 14:16:32 -04006865 if (readBuffer->isMapped() || writeBuffer->isMapped())
6866 {
Geoff Langb1196682014-07-23 13:47:29 -04006867 context->recordError(gl::Error(GL_INVALID_OPERATION));
6868 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006869 }
6870
6871 if (readOffset < 0 || writeOffset < 0 || size < 0 ||
6872 static_cast<unsigned int>(readOffset + size) > readBuffer->getSize() ||
6873 static_cast<unsigned int>(writeOffset + size) > writeBuffer->getSize())
6874 {
Geoff Langb1196682014-07-23 13:47:29 -04006875 context->recordError(gl::Error(GL_INVALID_VALUE));
6876 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006877 }
6878
6879 if (readBuffer == writeBuffer && abs(readOffset - writeOffset) < size)
6880 {
Geoff Langb1196682014-07-23 13:47:29 -04006881 context->recordError(gl::Error(GL_INVALID_VALUE));
6882 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006883 }
6884
Geoff Langbfdea662014-07-23 14:16:32 -04006885 // if size is zero, the copy is a successful no-op
6886 if (size > 0)
6887 {
Geoff Lang2a1c15a2014-07-25 11:43:00 -04006888 gl::Error error = writeBuffer->copyBufferSubData(readBuffer, readOffset, writeOffset, size);
6889 if (error.isError())
6890 {
6891 context->recordError(error);
6892 return;
6893 }
Geoff Langbfdea662014-07-23 14:16:32 -04006894 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006895 }
6896}
6897
6898void __stdcall glGetUniformIndices(GLuint program, GLsizei uniformCount, const GLchar* const* uniformNames, GLuint* uniformIndices)
6899{
6900 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLchar* const* uniformNames = 0x%0.8p, GLuint* uniformIndices = 0x%0.8p)",
6901 program, uniformCount, uniformNames, uniformIndices);
6902
Geoff Langbfdea662014-07-23 14:16:32 -04006903 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006904 if (context)
6905 {
6906 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006907 {
Geoff Langb1196682014-07-23 13:47:29 -04006908 context->recordError(gl::Error(GL_INVALID_OPERATION));
6909 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006910 }
6911
6912 if (uniformCount < 0)
6913 {
Geoff Langb1196682014-07-23 13:47:29 -04006914 context->recordError(gl::Error(GL_INVALID_VALUE));
6915 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006916 }
6917
6918 gl::Program *programObject = context->getProgram(program);
6919
6920 if (!programObject)
6921 {
6922 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006923 {
Geoff Langb1196682014-07-23 13:47:29 -04006924 context->recordError(gl::Error(GL_INVALID_OPERATION));
6925 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006926 }
Geoff Langbfdea662014-07-23 14:16:32 -04006927 else
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006928 {
Geoff Langb1196682014-07-23 13:47:29 -04006929 context->recordError(gl::Error(GL_INVALID_VALUE));
6930 return;
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006931 }
Geoff Langbfdea662014-07-23 14:16:32 -04006932 }
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006933
Geoff Langbfdea662014-07-23 14:16:32 -04006934 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
6935 if (!programObject->isLinked() || !programBinary)
6936 {
6937 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006938 {
Geoff Langbfdea662014-07-23 14:16:32 -04006939 uniformIndices[uniformId] = GL_INVALID_INDEX;
shannonwoods@chromium.orgc2ed9912013-05-30 00:05:33 +00006940 }
6941 }
Geoff Langbfdea662014-07-23 14:16:32 -04006942 else
6943 {
6944 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
6945 {
6946 uniformIndices[uniformId] = programBinary->getUniformIndex(uniformNames[uniformId]);
6947 }
6948 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006949 }
6950}
6951
6952void __stdcall glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, const GLuint* uniformIndices, GLenum pname, GLint* params)
6953{
6954 EVENT("(GLuint program = %u, GLsizei uniformCount = %d, const GLuint* uniformIndices = 0x%0.8p, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
6955 program, uniformCount, uniformIndices, pname, params);
6956
Geoff Langbfdea662014-07-23 14:16:32 -04006957 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04006958 if (context)
6959 {
6960 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006961 {
Geoff Langb1196682014-07-23 13:47:29 -04006962 context->recordError(gl::Error(GL_INVALID_OPERATION));
6963 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006964 }
6965
6966 if (uniformCount < 0)
6967 {
Geoff Langb1196682014-07-23 13:47:29 -04006968 context->recordError(gl::Error(GL_INVALID_VALUE));
6969 return;
Geoff Langbfdea662014-07-23 14:16:32 -04006970 }
6971
6972 gl::Program *programObject = context->getProgram(program);
6973
6974 if (!programObject)
6975 {
6976 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006977 {
Geoff Langb1196682014-07-23 13:47:29 -04006978 context->recordError(gl::Error(GL_INVALID_OPERATION));
6979 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00006980 }
Geoff Langbfdea662014-07-23 14:16:32 -04006981 else
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006982 {
Geoff Langb1196682014-07-23 13:47:29 -04006983 context->recordError(gl::Error(GL_INVALID_VALUE));
6984 return;
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006985 }
shannonwoods@chromium.org2a9a9d22013-05-30 00:05:40 +00006986 }
Geoff Langbfdea662014-07-23 14:16:32 -04006987
6988 switch (pname)
6989 {
6990 case GL_UNIFORM_TYPE:
6991 case GL_UNIFORM_SIZE:
6992 case GL_UNIFORM_NAME_LENGTH:
6993 case GL_UNIFORM_BLOCK_INDEX:
6994 case GL_UNIFORM_OFFSET:
6995 case GL_UNIFORM_ARRAY_STRIDE:
6996 case GL_UNIFORM_MATRIX_STRIDE:
6997 case GL_UNIFORM_IS_ROW_MAJOR:
6998 break;
Geoff Langb1196682014-07-23 13:47:29 -04006999
Geoff Langbfdea662014-07-23 14:16:32 -04007000 default:
Geoff Langb1196682014-07-23 13:47:29 -04007001 context->recordError(gl::Error(GL_INVALID_ENUM));
7002 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007003 }
7004
7005 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7006
7007 if (!programBinary && uniformCount > 0)
7008 {
Geoff Langb1196682014-07-23 13:47:29 -04007009 context->recordError(gl::Error(GL_INVALID_VALUE));
7010 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007011 }
7012
7013 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
7014 {
7015 const GLuint index = uniformIndices[uniformId];
7016
7017 if (index >= (GLuint)programBinary->getActiveUniformCount())
7018 {
Geoff Langb1196682014-07-23 13:47:29 -04007019 context->recordError(gl::Error(GL_INVALID_VALUE));
7020 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007021 }
7022 }
7023
7024 for (int uniformId = 0; uniformId < uniformCount; uniformId++)
7025 {
7026 const GLuint index = uniformIndices[uniformId];
7027 params[uniformId] = programBinary->getActiveUniformi(index, pname);
7028 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007029 }
7030}
7031
7032GLuint __stdcall glGetUniformBlockIndex(GLuint program, const GLchar* uniformBlockName)
7033{
7034 EVENT("(GLuint program = %u, const GLchar* uniformBlockName = 0x%0.8p)", program, uniformBlockName);
7035
Geoff Langbfdea662014-07-23 14:16:32 -04007036 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007037 if (context)
7038 {
7039 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007040 {
Geoff Langb1196682014-07-23 13:47:29 -04007041 context->recordError(gl::Error(GL_INVALID_OPERATION));
7042 return GL_INVALID_INDEX;
Geoff Langbfdea662014-07-23 14:16:32 -04007043 }
7044
7045 gl::Program *programObject = context->getProgram(program);
7046
7047 if (!programObject)
7048 {
7049 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007050 {
Geoff Langb1196682014-07-23 13:47:29 -04007051 context->recordError(gl::Error(GL_INVALID_OPERATION));
7052 return GL_INVALID_INDEX;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007053 }
Geoff Langbfdea662014-07-23 14:16:32 -04007054 else
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00007055 {
Geoff Langb1196682014-07-23 13:47:29 -04007056 context->recordError(gl::Error(GL_INVALID_VALUE));
7057 return GL_INVALID_INDEX;
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00007058 }
shannonwoods@chromium.org42766252013-05-30 00:07:12 +00007059 }
Geoff Langbfdea662014-07-23 14:16:32 -04007060
7061 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7062 if (!programBinary)
7063 {
7064 return GL_INVALID_INDEX;
7065 }
7066
7067 return programBinary->getUniformBlockIndex(uniformBlockName);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007068 }
7069
7070 return 0;
7071}
7072
7073void __stdcall glGetActiveUniformBlockiv(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint* params)
7074{
7075 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)",
7076 program, uniformBlockIndex, pname, params);
7077
Geoff Langbfdea662014-07-23 14:16:32 -04007078 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007079 if (context)
7080 {
7081 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007082 {
Geoff Langb1196682014-07-23 13:47:29 -04007083 context->recordError(gl::Error(GL_INVALID_OPERATION));
7084 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007085 }
7086 gl::Program *programObject = context->getProgram(program);
7087
7088 if (!programObject)
7089 {
7090 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007091 {
Geoff Langb1196682014-07-23 13:47:29 -04007092 context->recordError(gl::Error(GL_INVALID_OPERATION));
7093 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007094 }
Geoff Langbfdea662014-07-23 14:16:32 -04007095 else
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00007096 {
Geoff Langb1196682014-07-23 13:47:29 -04007097 context->recordError(gl::Error(GL_INVALID_VALUE));
7098 return;
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00007099 }
shannonwoods@chromium.orge7317ca2013-05-30 00:07:35 +00007100 }
Geoff Langbfdea662014-07-23 14:16:32 -04007101
7102 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7103
7104 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
7105 {
Geoff Langb1196682014-07-23 13:47:29 -04007106 context->recordError(gl::Error(GL_INVALID_VALUE));
7107 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007108 }
7109
7110 switch (pname)
7111 {
7112 case GL_UNIFORM_BLOCK_BINDING:
7113 *params = static_cast<GLint>(programObject->getUniformBlockBinding(uniformBlockIndex));
7114 break;
7115
7116 case GL_UNIFORM_BLOCK_DATA_SIZE:
7117 case GL_UNIFORM_BLOCK_NAME_LENGTH:
7118 case GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS:
7119 case GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES:
7120 case GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER:
7121 case GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER:
7122 programBinary->getActiveUniformBlockiv(uniformBlockIndex, pname, params);
7123 break;
7124
7125 default:
Geoff Langb1196682014-07-23 13:47:29 -04007126 context->recordError(gl::Error(GL_INVALID_ENUM));
7127 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007128 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007129 }
7130}
7131
7132void __stdcall glGetActiveUniformBlockName(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei* length, GLchar* uniformBlockName)
7133{
7134 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLchar* uniformBlockName = 0x%0.8p)",
7135 program, uniformBlockIndex, bufSize, length, uniformBlockName);
7136
Geoff Langbfdea662014-07-23 14:16:32 -04007137 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007138 if (context)
7139 {
7140 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007141 {
Geoff Langb1196682014-07-23 13:47:29 -04007142 context->recordError(gl::Error(GL_INVALID_OPERATION));
7143 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007144 }
7145
7146 gl::Program *programObject = context->getProgram(program);
7147
7148 if (!programObject)
7149 {
7150 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007151 {
Geoff Langb1196682014-07-23 13:47:29 -04007152 context->recordError(gl::Error(GL_INVALID_OPERATION));
7153 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007154 }
Geoff Langbfdea662014-07-23 14:16:32 -04007155 else
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00007156 {
Geoff Langb1196682014-07-23 13:47:29 -04007157 context->recordError(gl::Error(GL_INVALID_VALUE));
7158 return;
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00007159 }
shannonwoods@chromium.orgbeb02782013-05-30 00:07:28 +00007160 }
Geoff Langbfdea662014-07-23 14:16:32 -04007161
7162 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7163
7164 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
7165 {
Geoff Langb1196682014-07-23 13:47:29 -04007166 context->recordError(gl::Error(GL_INVALID_VALUE));
7167 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007168 }
7169
7170 programBinary->getActiveUniformBlockName(uniformBlockIndex, bufSize, length, uniformBlockName);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007171 }
7172}
7173
7174void __stdcall glUniformBlockBinding(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding)
7175{
7176 EVENT("(GLuint program = %u, GLuint uniformBlockIndex = %u, GLuint uniformBlockBinding = %u)",
7177 program, uniformBlockIndex, uniformBlockBinding);
7178
Geoff Langbfdea662014-07-23 14:16:32 -04007179 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007180 if (context)
7181 {
7182 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007183 {
Geoff Langb1196682014-07-23 13:47:29 -04007184 context->recordError(gl::Error(GL_INVALID_OPERATION));
7185 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007186 }
7187
Geoff Lang3a61c322014-07-10 13:01:54 -04007188 if (uniformBlockBinding >= context->getCaps().maxUniformBufferBindings)
Geoff Langbfdea662014-07-23 14:16:32 -04007189 {
Geoff Langb1196682014-07-23 13:47:29 -04007190 context->recordError(gl::Error(GL_INVALID_VALUE));
7191 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007192 }
7193
7194 gl::Program *programObject = context->getProgram(program);
7195
7196 if (!programObject)
7197 {
7198 if (context->getShader(program))
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007199 {
Geoff Langb1196682014-07-23 13:47:29 -04007200 context->recordError(gl::Error(GL_INVALID_OPERATION));
7201 return;
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007202 }
Geoff Langbfdea662014-07-23 14:16:32 -04007203 else
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00007204 {
Geoff Langb1196682014-07-23 13:47:29 -04007205 context->recordError(gl::Error(GL_INVALID_VALUE));
7206 return;
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00007207 }
shannonwoods@chromium.org70eb1ea2013-05-30 00:07:20 +00007208 }
Geoff Langbfdea662014-07-23 14:16:32 -04007209
7210 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
7211
7212 // if never linked, there won't be any uniform blocks
7213 if (!programBinary || uniformBlockIndex >= programBinary->getActiveUniformBlockCount())
7214 {
Geoff Langb1196682014-07-23 13:47:29 -04007215 context->recordError(gl::Error(GL_INVALID_VALUE));
7216 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007217 }
7218
7219 programObject->bindUniformBlock(uniformBlockIndex, uniformBlockBinding);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007220 }
7221}
7222
7223void __stdcall glDrawArraysInstanced(GLenum mode, GLint first, GLsizei count, GLsizei instanceCount)
7224{
7225 EVENT("(GLenum mode = 0x%X, GLint first = %d, GLsizei count = %d, GLsizei instanceCount = %d)",
7226 mode, first, count, instanceCount);
7227
Geoff Langbfdea662014-07-23 14:16:32 -04007228 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007229 if (context)
7230 {
7231 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007232 {
Geoff Langb1196682014-07-23 13:47:29 -04007233 context->recordError(gl::Error(GL_INVALID_OPERATION));
7234 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007235 }
Geoff Langbfdea662014-07-23 14:16:32 -04007236
7237 // glDrawArraysInstanced
7238 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007239 }
7240}
7241
7242void __stdcall glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsizei instanceCount)
7243{
7244 EVENT("(GLenum mode = 0x%X, GLsizei count = %d, GLenum type = 0x%X, const GLvoid* indices = 0x%0.8p, GLsizei instanceCount = %d)",
7245 mode, count, type, indices, instanceCount);
7246
Geoff Langbfdea662014-07-23 14:16:32 -04007247 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007248 if (context)
7249 {
7250 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007251 {
Geoff Langb1196682014-07-23 13:47:29 -04007252 context->recordError(gl::Error(GL_INVALID_OPERATION));
7253 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007254 }
Geoff Langbfdea662014-07-23 14:16:32 -04007255
7256 // glDrawElementsInstanced
7257 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007258 }
7259}
7260
7261GLsync __stdcall glFenceSync(GLenum condition, GLbitfield flags)
7262{
7263 EVENT("(GLenum condition = 0x%X, GLbitfield flags = 0x%X)", condition, flags);
7264
Geoff Langbfdea662014-07-23 14:16:32 -04007265 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007266 if (context)
7267 {
7268 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007269 {
Geoff Langb1196682014-07-23 13:47:29 -04007270 context->recordError(gl::Error(GL_INVALID_OPERATION));
7271 return 0;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007272 }
Geoff Langbfdea662014-07-23 14:16:32 -04007273
7274 if (condition != GL_SYNC_GPU_COMMANDS_COMPLETE)
7275 {
Geoff Langb1196682014-07-23 13:47:29 -04007276 context->recordError(gl::Error(GL_INVALID_ENUM));
7277 return 0;
Geoff Langbfdea662014-07-23 14:16:32 -04007278 }
7279
7280 if (flags != 0)
7281 {
Geoff Langb1196682014-07-23 13:47:29 -04007282 context->recordError(gl::Error(GL_INVALID_VALUE));
7283 return 0;
Geoff Langbfdea662014-07-23 14:16:32 -04007284 }
7285
7286 return context->createFenceSync(condition);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007287 }
7288
7289 return NULL;
7290}
7291
7292GLboolean __stdcall glIsSync(GLsync sync)
7293{
7294 EVENT("(GLsync sync = 0x%0.8p)", sync);
7295
Geoff Langbfdea662014-07-23 14:16:32 -04007296 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007297 if (context)
7298 {
7299 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007300 {
Geoff Langb1196682014-07-23 13:47:29 -04007301 context->recordError(gl::Error(GL_INVALID_OPERATION));
7302 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007303 }
Geoff Langbfdea662014-07-23 14:16:32 -04007304
7305 return (context->getFenceSync(sync) != NULL);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007306 }
7307
7308 return GL_FALSE;
7309}
7310
7311void __stdcall glDeleteSync(GLsync sync)
7312{
7313 EVENT("(GLsync sync = 0x%0.8p)", sync);
7314
Geoff Langbfdea662014-07-23 14:16:32 -04007315 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007316 if (context)
7317 {
7318 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007319 {
Geoff Langb1196682014-07-23 13:47:29 -04007320 context->recordError(gl::Error(GL_INVALID_OPERATION));
7321 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007322 }
Geoff Langbfdea662014-07-23 14:16:32 -04007323
7324 if (sync != static_cast<GLsync>(0) && !context->getFenceSync(sync))
7325 {
Geoff Langb1196682014-07-23 13:47:29 -04007326 context->recordError(gl::Error(GL_INVALID_VALUE));
7327 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007328 }
7329
7330 context->deleteFenceSync(sync);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007331 }
7332}
7333
7334GLenum __stdcall glClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
7335{
7336 EVENT("(GLsync sync = 0x%0.8p, GLbitfield flags = 0x%X, GLuint64 timeout = %llu)",
7337 sync, flags, timeout);
7338
Geoff Langbfdea662014-07-23 14:16:32 -04007339 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007340 if (context)
7341 {
7342 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007343 {
Geoff Langb1196682014-07-23 13:47:29 -04007344 context->recordError(gl::Error(GL_INVALID_OPERATION));
7345 return GL_WAIT_FAILED;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007346 }
Geoff Langbfdea662014-07-23 14:16:32 -04007347
7348 if ((flags & ~(GL_SYNC_FLUSH_COMMANDS_BIT)) != 0)
7349 {
Geoff Langb1196682014-07-23 13:47:29 -04007350 context->recordError(gl::Error(GL_INVALID_VALUE));
7351 return GL_WAIT_FAILED;
Geoff Langbfdea662014-07-23 14:16:32 -04007352 }
7353
7354 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7355
7356 if (!fenceSync)
7357 {
Geoff Langb1196682014-07-23 13:47:29 -04007358 context->recordError(gl::Error(GL_INVALID_VALUE));
7359 return GL_WAIT_FAILED;
Geoff Langbfdea662014-07-23 14:16:32 -04007360 }
7361
7362 return fenceSync->clientWait(flags, timeout);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007363 }
7364
7365 return GL_FALSE;
7366}
7367
7368void __stdcall glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
7369{
7370 EVENT("(GLsync sync = 0x%0.8p, GLbitfield flags = 0x%X, GLuint64 timeout = %llu)",
7371 sync, flags, timeout);
7372
Geoff Langbfdea662014-07-23 14:16:32 -04007373 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007374 if (context)
7375 {
7376 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007377 {
Geoff Langb1196682014-07-23 13:47:29 -04007378 context->recordError(gl::Error(GL_INVALID_OPERATION));
7379 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007380 }
Geoff Langbfdea662014-07-23 14:16:32 -04007381
7382 if (flags != 0)
7383 {
Geoff Langb1196682014-07-23 13:47:29 -04007384 context->recordError(gl::Error(GL_INVALID_VALUE));
7385 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007386 }
7387
7388 if (timeout != GL_TIMEOUT_IGNORED)
7389 {
Geoff Langb1196682014-07-23 13:47:29 -04007390 context->recordError(gl::Error(GL_INVALID_VALUE));
7391 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007392 }
7393
7394 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7395
7396 if (!fenceSync)
7397 {
Geoff Langb1196682014-07-23 13:47:29 -04007398 context->recordError(gl::Error(GL_INVALID_VALUE));
7399 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007400 }
7401
7402 fenceSync->serverWait();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007403 }
7404}
7405
7406void __stdcall glGetInteger64v(GLenum pname, GLint64* params)
7407{
7408 EVENT("(GLenum pname = 0x%X, GLint64* params = 0x%0.8p)",
7409 pname, params);
7410
Geoff Langbfdea662014-07-23 14:16:32 -04007411 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007412 if (context)
7413 {
7414 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007415 {
Geoff Langb1196682014-07-23 13:47:29 -04007416 context->recordError(gl::Error(GL_INVALID_OPERATION));
7417 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007418 }
Geoff Langbfdea662014-07-23 14:16:32 -04007419
7420 GLenum nativeType;
7421 unsigned int numParams = 0;
7422 if (!ValidateStateQuery(context, pname, &nativeType, &numParams))
7423 {
7424 return;
7425 }
7426
7427 if (nativeType == GL_INT_64_ANGLEX)
7428 {
7429 context->getInteger64v(pname, params);
7430 }
7431 else
7432 {
7433 CastStateValues(context, nativeType, pname, numParams, params);
7434 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007435 }
7436}
7437
7438void __stdcall glGetSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei* length, GLint* values)
7439{
7440 EVENT("(GLsync sync = 0x%0.8p, GLenum pname = 0x%X, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLint* values = 0x%0.8p)",
7441 sync, pname, bufSize, length, values);
7442
Geoff Langbfdea662014-07-23 14:16:32 -04007443 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007444 if (context)
7445 {
7446 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007447 {
Geoff Langb1196682014-07-23 13:47:29 -04007448 context->recordError(gl::Error(GL_INVALID_OPERATION));
7449 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007450 }
Geoff Langbfdea662014-07-23 14:16:32 -04007451
7452 if (bufSize < 0)
7453 {
Geoff Langb1196682014-07-23 13:47:29 -04007454 context->recordError(gl::Error(GL_INVALID_VALUE));
7455 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007456 }
7457
7458 gl::FenceSync *fenceSync = context->getFenceSync(sync);
7459
7460 if (!fenceSync)
7461 {
Geoff Langb1196682014-07-23 13:47:29 -04007462 context->recordError(gl::Error(GL_INVALID_VALUE));
7463 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007464 }
7465
7466 switch (pname)
7467 {
7468 case GL_OBJECT_TYPE: values[0] = static_cast<GLint>(GL_SYNC_FENCE); break;
7469 case GL_SYNC_STATUS: values[0] = static_cast<GLint>(fenceSync->getStatus()); break;
7470 case GL_SYNC_CONDITION: values[0] = static_cast<GLint>(fenceSync->getCondition()); break;
7471 case GL_SYNC_FLAGS: values[0] = 0; break;
7472
7473 default:
Geoff Langb1196682014-07-23 13:47:29 -04007474 context->recordError(gl::Error(GL_INVALID_ENUM));
7475 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007476 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007477 }
7478}
7479
7480void __stdcall glGetInteger64i_v(GLenum target, GLuint index, GLint64* data)
7481{
7482 EVENT("(GLenum target = 0x%X, GLuint index = %u, GLint64* data = 0x%0.8p)",
7483 target, index, data);
7484
Geoff Langbfdea662014-07-23 14:16:32 -04007485 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007486 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007487 {
Geoff Langbfdea662014-07-23 14:16:32 -04007488 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007489 {
Geoff Langb1196682014-07-23 13:47:29 -04007490 context->recordError(gl::Error(GL_INVALID_OPERATION));
7491 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007492 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007493
Geoff Lang3a61c322014-07-10 13:01:54 -04007494 const gl::Caps &caps = context->getCaps();
Geoff Langbfdea662014-07-23 14:16:32 -04007495 switch (target)
7496 {
7497 case GL_TRANSFORM_FEEDBACK_BUFFER_START:
7498 case GL_TRANSFORM_FEEDBACK_BUFFER_SIZE:
7499 case GL_TRANSFORM_FEEDBACK_BUFFER_BINDING:
Geoff Lang05881a02014-07-10 14:05:30 -04007500 if (index >= caps.maxTransformFeedbackSeparateAttributes)
7501 {
Geoff Langb1196682014-07-23 13:47:29 -04007502 context->recordError(gl::Error(GL_INVALID_VALUE));
7503 return;
Geoff Lang05881a02014-07-10 14:05:30 -04007504 }
Geoff Langbfdea662014-07-23 14:16:32 -04007505 break;
Geoff Langb1196682014-07-23 13:47:29 -04007506
Geoff Langbfdea662014-07-23 14:16:32 -04007507 case GL_UNIFORM_BUFFER_START:
7508 case GL_UNIFORM_BUFFER_SIZE:
7509 case GL_UNIFORM_BUFFER_BINDING:
Geoff Lang3a61c322014-07-10 13:01:54 -04007510 if (index >= caps.maxUniformBufferBindings)
7511 {
Geoff Langb1196682014-07-23 13:47:29 -04007512 context->recordError(gl::Error(GL_INVALID_VALUE));
7513 return;
Geoff Lang3a61c322014-07-10 13:01:54 -04007514 }
Geoff Langbfdea662014-07-23 14:16:32 -04007515 break;
Geoff Langb1196682014-07-23 13:47:29 -04007516
Geoff Langbfdea662014-07-23 14:16:32 -04007517 default:
Geoff Langb1196682014-07-23 13:47:29 -04007518 context->recordError(gl::Error(GL_INVALID_ENUM));
7519 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007520 }
7521
7522 if (!(context->getIndexedInteger64v(target, index, data)))
7523 {
7524 GLenum nativeType;
7525 unsigned int numParams = 0;
7526 if (!context->getIndexedQueryParameterInfo(target, &nativeType, &numParams))
Geoff Langb1196682014-07-23 13:47:29 -04007527 {
7528 context->recordError(gl::Error(GL_INVALID_ENUM));
7529 return;
7530 }
Shannon Woods15934d52013-08-19 14:28:49 -04007531
Geoff Langbfdea662014-07-23 14:16:32 -04007532 if (numParams == 0)
7533 return; // it is known that pname is valid, but there are no parameters to return
7534
7535 if (nativeType == GL_INT)
Shannon Woods15934d52013-08-19 14:28:49 -04007536 {
Geoff Langbfdea662014-07-23 14:16:32 -04007537 GLint *intParams = new GLint[numParams];
Shannon Woods15934d52013-08-19 14:28:49 -04007538
Geoff Langbfdea662014-07-23 14:16:32 -04007539 context->getIndexedIntegerv(target, index, intParams);
Shannon Woods15934d52013-08-19 14:28:49 -04007540
Geoff Langbfdea662014-07-23 14:16:32 -04007541 for (unsigned int i = 0; i < numParams; ++i)
Shannon Woods15934d52013-08-19 14:28:49 -04007542 {
Geoff Langbfdea662014-07-23 14:16:32 -04007543 data[i] = static_cast<GLint64>(intParams[i]);
Shannon Woods15934d52013-08-19 14:28:49 -04007544 }
Geoff Langbfdea662014-07-23 14:16:32 -04007545
7546 delete [] intParams;
7547 }
7548 else
7549 {
7550 UNREACHABLE();
Shannon Woods15934d52013-08-19 14:28:49 -04007551 }
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007552 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007553 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007554}
7555
7556void __stdcall glGetBufferParameteri64v(GLenum target, GLenum pname, GLint64* params)
7557{
7558 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLint64* params = 0x%0.8p)",
7559 target, pname, params);
7560
Geoff Langbfdea662014-07-23 14:16:32 -04007561 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007562 if (context)
7563 {
7564 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007565 {
Geoff Langb1196682014-07-23 13:47:29 -04007566 context->recordError(gl::Error(GL_INVALID_OPERATION));
7567 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007568 }
Geoff Langbfdea662014-07-23 14:16:32 -04007569
7570 if (!gl::ValidBufferTarget(context, target))
7571 {
Geoff Langb1196682014-07-23 13:47:29 -04007572 context->recordError(gl::Error(GL_INVALID_ENUM));
7573 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007574 }
7575
7576 if (!gl::ValidBufferParameter(context, pname))
7577 {
Geoff Langb1196682014-07-23 13:47:29 -04007578 context->recordError(gl::Error(GL_INVALID_ENUM));
7579 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007580 }
7581
7582 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
7583
7584 if (!buffer)
7585 {
7586 // A null buffer means that "0" is bound to the requested buffer target
Geoff Langb1196682014-07-23 13:47:29 -04007587 context->recordError(gl::Error(GL_INVALID_OPERATION));
7588 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007589 }
7590
7591 switch (pname)
7592 {
7593 case GL_BUFFER_USAGE:
7594 *params = static_cast<GLint64>(buffer->getUsage());
7595 break;
7596 case GL_BUFFER_SIZE:
7597 *params = buffer->getSize();
7598 break;
7599 case GL_BUFFER_ACCESS_FLAGS:
7600 *params = static_cast<GLint64>(buffer->getAccessFlags());
7601 break;
7602 case GL_BUFFER_MAPPED:
7603 *params = static_cast<GLint64>(buffer->isMapped());
7604 break;
7605 case GL_BUFFER_MAP_OFFSET:
7606 *params = buffer->getMapOffset();
7607 break;
7608 case GL_BUFFER_MAP_LENGTH:
7609 *params = buffer->getMapLength();
7610 break;
7611 default: UNREACHABLE(); break;
7612 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007613 }
7614}
7615
7616void __stdcall glGenSamplers(GLsizei count, GLuint* samplers)
7617{
7618 EVENT("(GLsizei count = %d, GLuint* samplers = 0x%0.8p)", count, samplers);
7619
Geoff Langbfdea662014-07-23 14:16:32 -04007620 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007621 if (context)
7622 {
7623 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007624 {
Geoff Langb1196682014-07-23 13:47:29 -04007625 context->recordError(gl::Error(GL_INVALID_OPERATION));
7626 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007627 }
Geoff Langbfdea662014-07-23 14:16:32 -04007628
7629 if (count < 0)
7630 {
Geoff Langb1196682014-07-23 13:47:29 -04007631 context->recordError(gl::Error(GL_INVALID_VALUE));
7632 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007633 }
7634
7635 for (int i = 0; i < count; i++)
7636 {
7637 samplers[i] = context->createSampler();
7638 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007639 }
7640}
7641
7642void __stdcall glDeleteSamplers(GLsizei count, const GLuint* samplers)
7643{
7644 EVENT("(GLsizei count = %d, const GLuint* samplers = 0x%0.8p)", count, samplers);
7645
Geoff Langbfdea662014-07-23 14:16:32 -04007646 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007647 if (context)
7648 {
7649 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007650 {
Geoff Langb1196682014-07-23 13:47:29 -04007651 context->recordError(gl::Error(GL_INVALID_OPERATION));
7652 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007653 }
Geoff Langbfdea662014-07-23 14:16:32 -04007654
7655 if (count < 0)
7656 {
Geoff Langb1196682014-07-23 13:47:29 -04007657 context->recordError(gl::Error(GL_INVALID_VALUE));
7658 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007659 }
7660
7661 for (int i = 0; i < count; i++)
7662 {
7663 context->deleteSampler(samplers[i]);
7664 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007665 }
7666}
7667
7668GLboolean __stdcall glIsSampler(GLuint sampler)
7669{
7670 EVENT("(GLuint sampler = %u)", sampler);
7671
Geoff Langbfdea662014-07-23 14:16:32 -04007672 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007673 if (context)
7674 {
7675 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007676 {
Geoff Langb1196682014-07-23 13:47:29 -04007677 context->recordError(gl::Error(GL_INVALID_OPERATION));
7678 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007679 }
Geoff Langbfdea662014-07-23 14:16:32 -04007680
7681 return context->isSampler(sampler);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007682 }
7683
7684 return GL_FALSE;
7685}
7686
7687void __stdcall glBindSampler(GLuint unit, GLuint sampler)
7688{
7689 EVENT("(GLuint unit = %u, GLuint sampler = %u)", unit, sampler);
7690
Geoff Langbfdea662014-07-23 14:16:32 -04007691 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007692 if (context)
7693 {
7694 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007695 {
Geoff Langb1196682014-07-23 13:47:29 -04007696 context->recordError(gl::Error(GL_INVALID_OPERATION));
7697 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007698 }
Geoff Langbfdea662014-07-23 14:16:32 -04007699
7700 if (sampler != 0 && !context->isSampler(sampler))
7701 {
Geoff Langb1196682014-07-23 13:47:29 -04007702 context->recordError(gl::Error(GL_INVALID_OPERATION));
7703 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007704 }
7705
Geoff Lang3a61c322014-07-10 13:01:54 -04007706 if (unit >= context->getCaps().maxCombinedTextureImageUnits)
Geoff Langbfdea662014-07-23 14:16:32 -04007707 {
Geoff Langb1196682014-07-23 13:47:29 -04007708 context->recordError(gl::Error(GL_INVALID_VALUE));
7709 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007710 }
7711
7712 context->bindSampler(unit, sampler);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007713 }
7714}
7715
7716void __stdcall glSamplerParameteri(GLuint sampler, GLenum pname, GLint param)
7717{
7718 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLint param = %d)", sampler, pname, param);
7719
Geoff Langbfdea662014-07-23 14:16:32 -04007720 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007721 if (context)
7722 {
7723 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007724 {
Geoff Langb1196682014-07-23 13:47:29 -04007725 context->recordError(gl::Error(GL_INVALID_OPERATION));
7726 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007727 }
Geoff Langbfdea662014-07-23 14:16:32 -04007728
Geoff Langb1196682014-07-23 13:47:29 -04007729 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007730 {
7731 return;
7732 }
7733
7734 if (!gl::ValidateTexParamParameters(context, pname, param))
7735 {
7736 return;
7737 }
7738
7739 if (!context->isSampler(sampler))
7740 {
Geoff Langb1196682014-07-23 13:47:29 -04007741 context->recordError(gl::Error(GL_INVALID_OPERATION));
7742 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007743 }
7744
7745 context->samplerParameteri(sampler, pname, param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007746 }
7747}
7748
7749void __stdcall glSamplerParameteriv(GLuint sampler, GLenum pname, const GLint* param)
7750{
Jamie Madillf6cc8cc2013-07-03 12:44:15 -04007751 glSamplerParameteri(sampler, pname, *param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007752}
7753
7754void __stdcall glSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param)
7755{
7756 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLfloat param = %g)", sampler, pname, param);
7757
Geoff Langbfdea662014-07-23 14:16:32 -04007758 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007759 if (context)
7760 {
7761 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007762 {
Geoff Langb1196682014-07-23 13:47:29 -04007763 context->recordError(gl::Error(GL_INVALID_OPERATION));
7764 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007765 }
Geoff Langbfdea662014-07-23 14:16:32 -04007766
Geoff Langb1196682014-07-23 13:47:29 -04007767 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007768 {
7769 return;
7770 }
7771
7772 if (!gl::ValidateTexParamParameters(context, pname, static_cast<GLint>(param)))
7773 {
7774 return;
7775 }
7776
7777 if (!context->isSampler(sampler))
7778 {
Geoff Langb1196682014-07-23 13:47:29 -04007779 context->recordError(gl::Error(GL_INVALID_OPERATION));
7780 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007781 }
7782
7783 context->samplerParameterf(sampler, pname, param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007784 }
7785}
7786
7787void __stdcall glSamplerParameterfv(GLuint sampler, GLenum pname, const GLfloat* param)
7788{
Jamie Madillf6cc8cc2013-07-03 12:44:15 -04007789 glSamplerParameterf(sampler, pname, *param);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007790}
7791
7792void __stdcall glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint* params)
7793{
7794 EVENT("(GLuint sampler = %u, GLenum pname = 0x%X, GLint* params = 0x%0.8p)", sampler, pname, params);
7795
Geoff Langbfdea662014-07-23 14:16:32 -04007796 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007797 if (context)
7798 {
7799 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007800 {
Geoff Langb1196682014-07-23 13:47:29 -04007801 context->recordError(gl::Error(GL_INVALID_OPERATION));
7802 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007803 }
Geoff Langbfdea662014-07-23 14:16:32 -04007804
Geoff Langb1196682014-07-23 13:47:29 -04007805 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007806 {
7807 return;
7808 }
7809
7810 if (!context->isSampler(sampler))
7811 {
Geoff Langb1196682014-07-23 13:47:29 -04007812 context->recordError(gl::Error(GL_INVALID_OPERATION));
7813 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007814 }
7815
7816 *params = context->getSamplerParameteri(sampler, pname);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007817 }
7818}
7819
7820void __stdcall glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat* params)
7821{
7822 EVENT("(GLuint sample = %ur, GLenum pname = 0x%X, GLfloat* params = 0x%0.8p)", sampler, pname, params);
7823
Geoff Langbfdea662014-07-23 14:16:32 -04007824 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007825 if (context)
7826 {
7827 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007828 {
Geoff Langb1196682014-07-23 13:47:29 -04007829 context->recordError(gl::Error(GL_INVALID_OPERATION));
7830 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007831 }
Geoff Langbfdea662014-07-23 14:16:32 -04007832
Geoff Langb1196682014-07-23 13:47:29 -04007833 if (!gl::ValidateSamplerObjectParameter(context, pname))
Geoff Langbfdea662014-07-23 14:16:32 -04007834 {
7835 return;
7836 }
7837
7838 if (!context->isSampler(sampler))
7839 {
Geoff Langb1196682014-07-23 13:47:29 -04007840 context->recordError(gl::Error(GL_INVALID_OPERATION));
7841 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007842 }
7843
7844 *params = context->getSamplerParameterf(sampler, pname);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007845 }
7846}
7847
7848void __stdcall glVertexAttribDivisor(GLuint index, GLuint divisor)
7849{
7850 EVENT("(GLuint index = %u, GLuint divisor = %u)", index, divisor);
7851
Geoff Langbfdea662014-07-23 14:16:32 -04007852 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007853 if (context)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007854 {
Geoff Langbfdea662014-07-23 14:16:32 -04007855 if (context->getClientVersion() < 3)
7856 {
Geoff Langb1196682014-07-23 13:47:29 -04007857 context->recordError(gl::Error(GL_INVALID_OPERATION));
7858 return;
7859 }
7860
7861 if (index >= gl::MAX_VERTEX_ATTRIBS)
7862 {
7863 context->recordError(gl::Error(GL_INVALID_VALUE));
7864 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007865 }
7866
7867 context->setVertexAttribDivisor(index, divisor);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007868 }
7869}
7870
7871void __stdcall glBindTransformFeedback(GLenum target, GLuint id)
7872{
7873 EVENT("(GLenum target = 0x%X, GLuint id = %u)", target, id);
7874
Geoff Langbfdea662014-07-23 14:16:32 -04007875 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007876 if (context)
7877 {
7878 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007879 {
Geoff Langb1196682014-07-23 13:47:29 -04007880 context->recordError(gl::Error(GL_INVALID_OPERATION));
7881 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007882 }
Geoff Langbfdea662014-07-23 14:16:32 -04007883
7884 switch (target)
7885 {
7886 case GL_TRANSFORM_FEEDBACK:
7887 {
7888 // Cannot bind a transform feedback object if the current one is started and not paused (3.0.2 pg 85 section 2.14.1)
7889 gl::TransformFeedback *curTransformFeedback = context->getState().getCurrentTransformFeedback();
7890 if (curTransformFeedback && curTransformFeedback->isStarted() && !curTransformFeedback->isPaused())
7891 {
Geoff Langb1196682014-07-23 13:47:29 -04007892 context->recordError(gl::Error(GL_INVALID_OPERATION));
7893 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007894 }
7895
7896 // Cannot bind a transform feedback object that does not exist (3.0.2 pg 85 section 2.14.1)
7897 if (context->getTransformFeedback(id) == NULL)
7898 {
Geoff Langb1196682014-07-23 13:47:29 -04007899 context->recordError(gl::Error(GL_INVALID_OPERATION));
7900 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007901 }
7902
7903 context->bindTransformFeedback(id);
7904 }
7905 break;
7906
7907 default:
Geoff Langb1196682014-07-23 13:47:29 -04007908 context->recordError(gl::Error(GL_INVALID_ENUM));
7909 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007910 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007911 }
7912}
7913
7914void __stdcall glDeleteTransformFeedbacks(GLsizei n, const GLuint* ids)
7915{
7916 EVENT("(GLsizei n = %d, const GLuint* ids = 0x%0.8p)", n, ids);
7917
Geoff Langbfdea662014-07-23 14:16:32 -04007918 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007919 if (context)
7920 {
7921 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007922 {
Geoff Langb1196682014-07-23 13:47:29 -04007923 context->recordError(gl::Error(GL_INVALID_OPERATION));
7924 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007925 }
Geoff Langbfdea662014-07-23 14:16:32 -04007926
7927 for (int i = 0; i < n; i++)
7928 {
7929 context->deleteTransformFeedback(ids[i]);
7930 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007931 }
7932}
7933
7934void __stdcall glGenTransformFeedbacks(GLsizei n, GLuint* ids)
7935{
7936 EVENT("(GLsizei n = %d, GLuint* ids = 0x%0.8p)", n, ids);
7937
Geoff Langbfdea662014-07-23 14:16:32 -04007938 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007939 if (context)
7940 {
7941 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007942 {
Geoff Langb1196682014-07-23 13:47:29 -04007943 context->recordError(gl::Error(GL_INVALID_OPERATION));
7944 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007945 }
Geoff Langbfdea662014-07-23 14:16:32 -04007946
7947 for (int i = 0; i < n; i++)
7948 {
7949 ids[i] = context->createTransformFeedback();
7950 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007951 }
7952}
7953
7954GLboolean __stdcall glIsTransformFeedback(GLuint id)
7955{
7956 EVENT("(GLuint id = %u)", id);
7957
Geoff Langbfdea662014-07-23 14:16:32 -04007958 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007959 if (context)
7960 {
7961 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007962 {
Geoff Langb1196682014-07-23 13:47:29 -04007963 context->recordError(gl::Error(GL_INVALID_OPERATION));
7964 return GL_FALSE;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007965 }
Geoff Langbfdea662014-07-23 14:16:32 -04007966
7967 return ((context->getTransformFeedback(id) != NULL) ? GL_TRUE : GL_FALSE);
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007968 }
7969
7970 return GL_FALSE;
7971}
7972
7973void __stdcall glPauseTransformFeedback(void)
7974{
7975 EVENT("(void)");
7976
Geoff Langbfdea662014-07-23 14:16:32 -04007977 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04007978 if (context)
7979 {
7980 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007981 {
Geoff Langb1196682014-07-23 13:47:29 -04007982 context->recordError(gl::Error(GL_INVALID_OPERATION));
7983 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00007984 }
Geoff Langbfdea662014-07-23 14:16:32 -04007985
7986 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
7987 ASSERT(transformFeedback != NULL);
7988
7989 // Current transform feedback must be started and not paused in order to pause (3.0.2 pg 86)
7990 if (!transformFeedback->isStarted() || transformFeedback->isPaused())
7991 {
Geoff Langb1196682014-07-23 13:47:29 -04007992 context->recordError(gl::Error(GL_INVALID_OPERATION));
7993 return;
Geoff Langbfdea662014-07-23 14:16:32 -04007994 }
7995
7996 transformFeedback->pause();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00007997 }
7998}
7999
8000void __stdcall glResumeTransformFeedback(void)
8001{
8002 EVENT("(void)");
8003
Geoff Langbfdea662014-07-23 14:16:32 -04008004 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008005 if (context)
8006 {
8007 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008008 {
Geoff Langb1196682014-07-23 13:47:29 -04008009 context->recordError(gl::Error(GL_INVALID_OPERATION));
8010 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008011 }
Geoff Langbfdea662014-07-23 14:16:32 -04008012
8013 gl::TransformFeedback *transformFeedback = context->getState().getCurrentTransformFeedback();
8014 ASSERT(transformFeedback != NULL);
8015
8016 // Current transform feedback must be started and paused in order to resume (3.0.2 pg 86)
8017 if (!transformFeedback->isStarted() || !transformFeedback->isPaused())
8018 {
Geoff Langb1196682014-07-23 13:47:29 -04008019 context->recordError(gl::Error(GL_INVALID_OPERATION));
8020 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008021 }
8022
8023 transformFeedback->resume();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008024 }
8025}
8026
8027void __stdcall glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei* length, GLenum* binaryFormat, GLvoid* binary)
8028{
8029 EVENT("(GLuint program = %u, GLsizei bufSize = %d, GLsizei* length = 0x%0.8p, GLenum* binaryFormat = 0x%0.8p, GLvoid* binary = 0x%0.8p)",
8030 program, bufSize, length, binaryFormat, binary);
8031
Geoff Langbfdea662014-07-23 14:16:32 -04008032 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008033 if (context)
8034 {
8035 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008036 {
Geoff Langb1196682014-07-23 13:47:29 -04008037 context->recordError(gl::Error(GL_INVALID_OPERATION));
8038 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008039 }
Geoff Langbfdea662014-07-23 14:16:32 -04008040
8041 // glGetProgramBinary
8042 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008043 }
8044}
8045
8046void __stdcall glProgramBinary(GLuint program, GLenum binaryFormat, const GLvoid* binary, GLsizei length)
8047{
8048 EVENT("(GLuint program = %u, GLenum binaryFormat = 0x%X, const GLvoid* binary = 0x%0.8p, GLsizei length = %d)",
8049 program, binaryFormat, binary, length);
8050
Geoff Langbfdea662014-07-23 14:16:32 -04008051 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008052 if (context)
8053 {
8054 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008055 {
Geoff Langb1196682014-07-23 13:47:29 -04008056 context->recordError(gl::Error(GL_INVALID_OPERATION));
8057 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008058 }
Geoff Langbfdea662014-07-23 14:16:32 -04008059
8060 // glProgramBinary
8061 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008062 }
8063}
8064
8065void __stdcall glProgramParameteri(GLuint program, GLenum pname, GLint value)
8066{
8067 EVENT("(GLuint program = %u, GLenum pname = 0x%X, GLint value = %d)",
8068 program, pname, value);
8069
Geoff Langbfdea662014-07-23 14:16:32 -04008070 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008071 if (context)
8072 {
8073 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008074 {
Geoff Langb1196682014-07-23 13:47:29 -04008075 context->recordError(gl::Error(GL_INVALID_OPERATION));
8076 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008077 }
Geoff Langbfdea662014-07-23 14:16:32 -04008078
8079 // glProgramParameteri
8080 UNIMPLEMENTED();
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008081 }
8082}
8083
8084void __stdcall glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments)
8085{
8086 EVENT("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum* attachments = 0x%0.8p)",
8087 target, numAttachments, attachments);
8088
Geoff Langbfdea662014-07-23 14:16:32 -04008089 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008090 if (context)
8091 {
8092 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008093 {
Geoff Langb1196682014-07-23 13:47:29 -04008094 context->recordError(gl::Error(GL_INVALID_OPERATION));
8095 return;
shannonwoods@chromium.orgd63ef892013-05-30 00:10:56 +00008096 }
Geoff Langbfdea662014-07-23 14:16:32 -04008097
8098 if (!ValidateInvalidateFramebufferParameters(context, target, numAttachments, attachments))
8099 {
8100 return;
8101 }
8102
Jamie Madill2d96b9e2014-08-29 15:46:47 -04008103 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
8104 if (framebuffer && framebuffer->completeness() == GL_FRAMEBUFFER_COMPLETE)
8105 {
8106 framebuffer->invalidate(context->getCaps(), numAttachments, attachments);
8107 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008108 }
8109}
8110
8111void __stdcall glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height)
8112{
8113 EVENT("(GLenum target = 0x%X, GLsizei numAttachments = %d, const GLenum* attachments = 0x%0.8p, GLint x = %d, "
8114 "GLint y = %d, GLsizei width = %d, GLsizei height = %d)",
8115 target, numAttachments, attachments, x, y, width, height);
8116
Geoff Langbfdea662014-07-23 14:16:32 -04008117 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008118 if (context)
8119 {
8120 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008121 {
Geoff Langb1196682014-07-23 13:47:29 -04008122 context->recordError(gl::Error(GL_INVALID_OPERATION));
8123 return;
shannonwoods@chromium.orgd63ef892013-05-30 00:10:56 +00008124 }
Geoff Langbfdea662014-07-23 14:16:32 -04008125
8126 if (!ValidateInvalidateFramebufferParameters(context, target, numAttachments, attachments))
8127 {
8128 return;
8129 }
8130
Jamie Madill2d96b9e2014-08-29 15:46:47 -04008131 gl::Framebuffer *framebuffer = context->getState().getTargetFramebuffer(target);
8132 if (framebuffer && framebuffer->completeness() == GL_FRAMEBUFFER_COMPLETE)
8133 {
8134 framebuffer->invalidateSub(context->getCaps(), numAttachments, attachments, x, y, width, height);
8135 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008136 }
8137}
8138
8139void __stdcall glTexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height)
8140{
8141 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, GLsizei height = %d)",
8142 target, levels, internalformat, width, height);
8143
Geoff Langbfdea662014-07-23 14:16:32 -04008144 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008145 if (context)
8146 {
8147 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008148 {
Geoff Langb1196682014-07-23 13:47:29 -04008149 context->recordError(gl::Error(GL_INVALID_OPERATION));
8150 return;
shannonwoods@chromium.org8757c062013-05-30 00:14:24 +00008151 }
Geoff Langbfdea662014-07-23 14:16:32 -04008152
8153 if (!ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, 1))
8154 {
8155 return;
8156 }
8157
8158 switch (target)
8159 {
8160 case GL_TEXTURE_2D:
8161 {
8162 gl::Texture2D *texture2d = context->getTexture2D();
8163 texture2d->storage(levels, internalformat, width, height);
8164 }
8165 break;
8166
8167 case GL_TEXTURE_CUBE_MAP:
8168 {
8169 gl::TextureCubeMap *textureCube = context->getTextureCubeMap();
8170 textureCube->storage(levels, internalformat, width);
8171 }
8172 break;
8173
8174 default:
Geoff Langb1196682014-07-23 13:47:29 -04008175 context->recordError(gl::Error(GL_INVALID_ENUM));
8176 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008177 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008178 }
8179}
8180
8181void __stdcall glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth)
8182{
8183 EVENT("(GLenum target = 0x%X, GLsizei levels = %d, GLenum internalformat = 0x%X, GLsizei width = %d, "
8184 "GLsizei height = %d, GLsizei depth = %d)",
8185 target, levels, internalformat, width, height, depth);
8186
Geoff Langbfdea662014-07-23 14:16:32 -04008187 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008188 if (context)
8189 {
8190 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008191 {
Geoff Langb1196682014-07-23 13:47:29 -04008192 context->recordError(gl::Error(GL_INVALID_OPERATION));
8193 return;
shannon.woods%transgaming.com@gtempaccount.com14eb55e2013-04-13 03:35:06 +00008194 }
Geoff Langbfdea662014-07-23 14:16:32 -04008195
8196 if (!ValidateES3TexStorageParameters(context, target, levels, internalformat, width, height, depth))
8197 {
8198 return;
8199 }
8200
8201 switch (target)
8202 {
8203 case GL_TEXTURE_3D:
8204 {
8205 gl::Texture3D *texture3d = context->getTexture3D();
8206 texture3d->storage(levels, internalformat, width, height, depth);
8207 }
8208 break;
8209
8210 case GL_TEXTURE_2D_ARRAY:
8211 {
8212 gl::Texture2DArray *texture2darray = context->getTexture2DArray();
8213 texture2darray->storage(levels, internalformat, width, height, depth);
8214 }
8215 break;
8216
8217 default:
8218 UNREACHABLE();
8219 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008220 }
8221}
8222
8223void __stdcall glGetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint* params)
8224{
8225 EVENT("(GLenum target = 0x%X, GLenum internalformat = 0x%X, GLenum pname = 0x%X, GLsizei bufSize = %d, "
8226 "GLint* params = 0x%0.8p)",
8227 target, internalformat, pname, bufSize, params);
8228
Geoff Langbfdea662014-07-23 14:16:32 -04008229 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008230 if (context)
8231 {
8232 if (context->getClientVersion() < 3)
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008233 {
Geoff Langb1196682014-07-23 13:47:29 -04008234 context->recordError(gl::Error(GL_INVALID_OPERATION));
8235 return;
shannonwoods@chromium.org705fc2f2013-05-30 00:17:14 +00008236 }
Geoff Langbfdea662014-07-23 14:16:32 -04008237
8238 const gl::TextureCaps &formatCaps = context->getTextureCaps().get(internalformat);
8239 if (!formatCaps.renderable)
8240 {
Geoff Langb1196682014-07-23 13:47:29 -04008241 context->recordError(gl::Error(GL_INVALID_ENUM));
8242 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008243 }
8244
8245 if (target != GL_RENDERBUFFER)
8246 {
Geoff Langb1196682014-07-23 13:47:29 -04008247 context->recordError(gl::Error(GL_INVALID_ENUM));
8248 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008249 }
8250
8251 if (bufSize < 0)
8252 {
Geoff Langb1196682014-07-23 13:47:29 -04008253 context->recordError(gl::Error(GL_INVALID_VALUE));
8254 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008255 }
8256
8257 switch (pname)
8258 {
8259 case GL_NUM_SAMPLE_COUNTS:
8260 if (bufSize != 0)
Geoff Lang5f4c4632014-07-03 13:46:52 -04008261 {
8262 *params = formatCaps.sampleCounts.size();
8263 }
Geoff Langbfdea662014-07-23 14:16:32 -04008264 break;
Geoff Langb1196682014-07-23 13:47:29 -04008265
Geoff Langbfdea662014-07-23 14:16:32 -04008266 case GL_SAMPLES:
Geoff Lang5f4c4632014-07-03 13:46:52 -04008267 std::copy_n(formatCaps.sampleCounts.rbegin(), std::min<size_t>(bufSize, formatCaps.sampleCounts.size()), params);
Geoff Langbfdea662014-07-23 14:16:32 -04008268 break;
Geoff Langb1196682014-07-23 13:47:29 -04008269
Geoff Langbfdea662014-07-23 14:16:32 -04008270 default:
Geoff Langb1196682014-07-23 13:47:29 -04008271 context->recordError(gl::Error(GL_INVALID_ENUM));
8272 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008273 }
shannon.woods%transgaming.com@gtempaccount.coma8171752013-04-13 03:29:28 +00008274 }
8275}
8276
8277// Extension functions
8278
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008279void __stdcall glBlitFramebufferANGLE(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1,
8280 GLbitfield mask, GLenum filter)
8281{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00008282 EVENT("(GLint srcX0 = %d, GLint srcY0 = %d, GLint srcX1 = %d, GLint srcY1 = %d, "
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008283 "GLint dstX0 = %d, GLint dstY0 = %d, GLint dstX1 = %d, GLint dstY1 = %d, "
8284 "GLbitfield mask = 0x%X, GLenum filter = 0x%X)",
8285 srcX0, srcY0, srcX1, srcX1, dstX0, dstY0, dstX1, dstY1, mask, filter);
8286
Geoff Langbfdea662014-07-23 14:16:32 -04008287 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008288 if (context)
8289 {
8290 if (!ValidateBlitFramebufferParameters(context, srcX0, srcY0, srcX1, srcY1,
8291 dstX0, dstY0, dstX1, dstY1, mask, filter,
8292 true))
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008293 {
Geoff Langbfdea662014-07-23 14:16:32 -04008294 return;
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008295 }
Geoff Langbfdea662014-07-23 14:16:32 -04008296
8297 context->blitFramebuffer(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1,
8298 mask, filter);
daniel@transgaming.com4cbc5902010-08-24 19:20:26 +00008299 }
8300}
8301
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00008302void __stdcall glTexImage3DOES(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth,
8303 GLint border, GLenum format, GLenum type, const GLvoid* pixels)
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008304{
apatrick@chromium.org0f4cefe2011-01-26 19:30:57 +00008305 EVENT("(GLenum target = 0x%X, GLint level = %d, GLenum internalformat = 0x%X, "
daniel@transgaming.comb5b06162010-03-21 04:31:32 +00008306 "GLsizei width = %d, GLsizei height = %d, GLsizei depth = %d, GLint border = %d, "
daniel@transgaming.comfe4b8272010-04-08 03:51:20 +00008307 "GLenum format = 0x%X, GLenum type = 0x%x, const GLvoid* pixels = 0x%0.8p)",
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008308 target, level, internalformat, width, height, depth, border, format, type, pixels);
8309
Geoff Langbfdea662014-07-23 14:16:32 -04008310 UNIMPLEMENTED(); // FIXME
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008311}
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008312
Geoff Langbfdea662014-07-23 14:16:32 -04008313void __stdcall glGetProgramBinaryOES(GLuint program, GLsizei bufSize, GLsizei *length,
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008314 GLenum *binaryFormat, void *binary)
8315{
apatrick@chromium.org90080e32012-07-09 22:15:33 +00008316 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 +00008317 program, bufSize, length, binaryFormat, binary);
8318
Geoff Langbfdea662014-07-23 14:16:32 -04008319 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008320 if (context)
8321 {
8322 gl::Program *programObject = context->getProgram(program);
8323
8324 if (!programObject || !programObject->isLinked())
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008325 {
Geoff Langb1196682014-07-23 13:47:29 -04008326 context->recordError(gl::Error(GL_INVALID_OPERATION));
8327 return;
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008328 }
Geoff Langbfdea662014-07-23 14:16:32 -04008329
8330 gl::ProgramBinary *programBinary = programObject->getProgramBinary();
8331
8332 if (!programBinary)
8333 {
Geoff Langb1196682014-07-23 13:47:29 -04008334 context->recordError(gl::Error(GL_INVALID_OPERATION));
8335 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008336 }
8337
Geoff Lang900013c2014-07-07 11:32:19 -04008338 if (!programBinary->save(binaryFormat, binary, bufSize, length))
Geoff Langbfdea662014-07-23 14:16:32 -04008339 {
Geoff Langb1196682014-07-23 13:47:29 -04008340 context->recordError(gl::Error(GL_INVALID_OPERATION));
8341 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008342 }
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008343 }
8344}
8345
8346void __stdcall glProgramBinaryOES(GLuint program, GLenum binaryFormat,
8347 const void *binary, GLint length)
8348{
8349 EVENT("(GLenum program = 0x%X, binaryFormat = 0x%x, binary = 0x%0.8p, length = %d)",
8350 program, binaryFormat, binary, length);
8351
Geoff Langbfdea662014-07-23 14:16:32 -04008352 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008353 if (context)
8354 {
Geoff Lang900013c2014-07-07 11:32:19 -04008355 const std::vector<GLenum> &programBinaryFormats = context->getCaps().programBinaryFormats;
8356 if (std::find(programBinaryFormats.begin(), programBinaryFormats.end(), binaryFormat) == programBinaryFormats.end())
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008357 {
Geoff Langb1196682014-07-23 13:47:29 -04008358 context->recordError(gl::Error(GL_INVALID_ENUM));
8359 return;
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008360 }
Geoff Langbfdea662014-07-23 14:16:32 -04008361
8362 gl::Program *programObject = context->getProgram(program);
Geoff Langbfdea662014-07-23 14:16:32 -04008363 if (!programObject)
8364 {
Geoff Langb1196682014-07-23 13:47:29 -04008365 context->recordError(gl::Error(GL_INVALID_OPERATION));
8366 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008367 }
8368
Geoff Lang900013c2014-07-07 11:32:19 -04008369 context->setProgramBinary(program, binaryFormat, binary, length);
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008370 }
8371}
8372
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008373void __stdcall glDrawBuffersEXT(GLsizei n, const GLenum *bufs)
8374{
8375 EVENT("(GLenum n = %d, bufs = 0x%0.8p)", n, bufs);
8376
Geoff Langbfdea662014-07-23 14:16:32 -04008377 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008378 if (context)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008379 {
Geoff Langbfdea662014-07-23 14:16:32 -04008380 if (n < 0 || static_cast<GLuint>(n) > context->getCaps().maxDrawBuffers)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008381 {
Geoff Langb1196682014-07-23 13:47:29 -04008382 context->recordError(gl::Error(GL_INVALID_VALUE));
8383 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008384 }
8385
8386 if (context->getState().getDrawFramebuffer()->id() == 0)
8387 {
8388 if (n != 1)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008389 {
Geoff Langb1196682014-07-23 13:47:29 -04008390 context->recordError(gl::Error(GL_INVALID_OPERATION));
8391 return;
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008392 }
8393
Geoff Langbfdea662014-07-23 14:16:32 -04008394 if (bufs[0] != GL_NONE && bufs[0] != GL_BACK)
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008395 {
Geoff Langb1196682014-07-23 13:47:29 -04008396 context->recordError(gl::Error(GL_INVALID_OPERATION));
8397 return;
shannon.woods%transgaming.com@gtempaccount.com2fa73c52013-04-13 03:37:20 +00008398 }
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008399 }
Geoff Langbfdea662014-07-23 14:16:32 -04008400 else
8401 {
8402 for (int colorAttachment = 0; colorAttachment < n; colorAttachment++)
8403 {
8404 const GLenum attachment = GL_COLOR_ATTACHMENT0_EXT + colorAttachment;
8405 if (bufs[colorAttachment] != GL_NONE && bufs[colorAttachment] != attachment)
8406 {
Geoff Langb1196682014-07-23 13:47:29 -04008407 context->recordError(gl::Error(GL_INVALID_OPERATION));
8408 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008409 }
8410 }
8411 }
8412
8413 gl::Framebuffer *framebuffer = context->getState().getDrawFramebuffer();
8414
8415 for (unsigned int colorAttachment = 0; colorAttachment < static_cast<unsigned int>(n); colorAttachment++)
8416 {
8417 framebuffer->setDrawBufferState(colorAttachment, bufs[colorAttachment]);
8418 }
8419
8420 for (unsigned int colorAttachment = n; colorAttachment < context->getCaps().maxDrawBuffers; colorAttachment++)
8421 {
8422 framebuffer->setDrawBufferState(colorAttachment, GL_NONE);
8423 }
shannon.woods%transgaming.com@gtempaccount.com4059a382013-04-13 03:31:16 +00008424 }
8425}
8426
Shannon Woodsb3801742014-03-27 14:59:19 -04008427void __stdcall glGetBufferPointervOES(GLenum target, GLenum pname, void** params)
8428{
8429 EVENT("(GLenum target = 0x%X, GLenum pname = 0x%X, GLvoid** params = 0x%0.8p)", target, pname, params);
8430
Geoff Langbfdea662014-07-23 14:16:32 -04008431 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008432 if (context)
8433 {
8434 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008435 {
Geoff Langb1196682014-07-23 13:47:29 -04008436 context->recordError(gl::Error(GL_INVALID_ENUM));
8437 return;
Shannon Woodsb3801742014-03-27 14:59:19 -04008438 }
Geoff Langbfdea662014-07-23 14:16:32 -04008439
8440 if (pname != GL_BUFFER_MAP_POINTER)
8441 {
Geoff Langb1196682014-07-23 13:47:29 -04008442 context->recordError(gl::Error(GL_INVALID_ENUM));
8443 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008444 }
8445
8446 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8447
8448 if (!buffer || !buffer->isMapped())
8449 {
8450 *params = NULL;
8451 }
8452 else
8453 {
8454 *params = buffer->getMapPointer();
8455 }
Shannon Woodsb3801742014-03-27 14:59:19 -04008456 }
8457}
8458
8459void * __stdcall glMapBufferOES(GLenum target, GLenum access)
8460{
8461 EVENT("(GLenum target = 0x%X, GLbitfield access = 0x%X)", target, access);
8462
Geoff Langbfdea662014-07-23 14:16:32 -04008463 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008464 if (context)
8465 {
8466 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008467 {
Geoff Langb1196682014-07-23 13:47:29 -04008468 context->recordError(gl::Error(GL_INVALID_ENUM));
8469 return NULL;
Shannon Woodsb3801742014-03-27 14:59:19 -04008470 }
Geoff Langbfdea662014-07-23 14:16:32 -04008471
8472 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8473
8474 if (buffer == NULL)
8475 {
Geoff Langb1196682014-07-23 13:47:29 -04008476 context->recordError(gl::Error(GL_INVALID_OPERATION));
8477 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008478 }
8479
8480 if (access != GL_WRITE_ONLY_OES)
8481 {
Geoff Langb1196682014-07-23 13:47:29 -04008482 context->recordError(gl::Error(GL_INVALID_ENUM));
8483 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008484 }
8485
8486 if (buffer->isMapped())
8487 {
Geoff Langb1196682014-07-23 13:47:29 -04008488 context->recordError(gl::Error(GL_INVALID_OPERATION));
8489 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008490 }
8491
Geoff Lang2a1c15a2014-07-25 11:43:00 -04008492 gl::Error error = buffer->mapRange(0, buffer->getSize(), GL_MAP_WRITE_BIT);
8493 if (error.isError())
8494 {
8495 context->recordError(error);
8496 return NULL;
8497 }
8498
8499 return buffer->getMapPointer();
Shannon Woodsb3801742014-03-27 14:59:19 -04008500 }
8501
8502 return NULL;
8503}
8504
8505GLboolean __stdcall glUnmapBufferOES(GLenum target)
8506{
8507 EVENT("(GLenum target = 0x%X)", target);
8508
Geoff Langbfdea662014-07-23 14:16:32 -04008509 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008510 if (context)
8511 {
8512 if (!gl::ValidBufferTarget(context, target))
Shannon Woodsb3801742014-03-27 14:59:19 -04008513 {
Geoff Langb1196682014-07-23 13:47:29 -04008514 context->recordError(gl::Error(GL_INVALID_ENUM));
8515 return GL_FALSE;
Shannon Woodsb3801742014-03-27 14:59:19 -04008516 }
Geoff Langbfdea662014-07-23 14:16:32 -04008517
8518 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8519
8520 if (buffer == NULL || !buffer->isMapped())
8521 {
Geoff Langb1196682014-07-23 13:47:29 -04008522 context->recordError(gl::Error(GL_INVALID_OPERATION));
8523 return GL_FALSE;
Geoff Langbfdea662014-07-23 14:16:32 -04008524 }
8525
8526 // TODO: detect if we had corruption. if so, throw an error and return false.
8527
Geoff Lang2a1c15a2014-07-25 11:43:00 -04008528 gl::Error error = buffer->unmap();
8529 if (error.isError())
8530 {
8531 context->recordError(error);
8532 return GL_FALSE;
8533 }
Geoff Langbfdea662014-07-23 14:16:32 -04008534
8535 return GL_TRUE;
Shannon Woodsb3801742014-03-27 14:59:19 -04008536 }
8537
8538 return GL_FALSE;
8539}
8540
Shannon Woods916e7692014-03-27 16:58:22 -04008541void* __stdcall glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access)
8542{
8543 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d, GLbitfield access = 0x%X)",
8544 target, offset, length, access);
8545
Geoff Langbfdea662014-07-23 14:16:32 -04008546 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008547 if (context)
8548 {
8549 if (!gl::ValidBufferTarget(context, target))
Shannon Woods916e7692014-03-27 16:58:22 -04008550 {
Geoff Langb1196682014-07-23 13:47:29 -04008551 context->recordError(gl::Error(GL_INVALID_ENUM));
8552 return NULL;
Shannon Woods916e7692014-03-27 16:58:22 -04008553 }
Geoff Langbfdea662014-07-23 14:16:32 -04008554
8555 if (offset < 0 || length < 0)
8556 {
Geoff Langb1196682014-07-23 13:47:29 -04008557 context->recordError(gl::Error(GL_INVALID_VALUE));
8558 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008559 }
8560
8561 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8562
8563 if (buffer == NULL)
8564 {
Geoff Langb1196682014-07-23 13:47:29 -04008565 context->recordError(gl::Error(GL_INVALID_OPERATION));
8566 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008567 }
8568
8569 // Check for buffer overflow
8570 size_t offsetSize = static_cast<size_t>(offset);
8571 size_t lengthSize = static_cast<size_t>(length);
8572
8573 if (!rx::IsUnsignedAdditionSafe(offsetSize, lengthSize) ||
8574 offsetSize + lengthSize > static_cast<size_t>(buffer->getSize()))
8575 {
Geoff Langb1196682014-07-23 13:47:29 -04008576 context->recordError(gl::Error(GL_INVALID_VALUE));
8577 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008578 }
8579
8580 // Check for invalid bits in the mask
8581 GLbitfield allAccessBits = GL_MAP_READ_BIT |
8582 GL_MAP_WRITE_BIT |
8583 GL_MAP_INVALIDATE_RANGE_BIT |
8584 GL_MAP_INVALIDATE_BUFFER_BIT |
8585 GL_MAP_FLUSH_EXPLICIT_BIT |
8586 GL_MAP_UNSYNCHRONIZED_BIT;
8587
8588 if (access & ~(allAccessBits))
8589 {
Geoff Langb1196682014-07-23 13:47:29 -04008590 context->recordError(gl::Error(GL_INVALID_VALUE));
8591 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008592 }
8593
8594 if (length == 0 || buffer->isMapped())
8595 {
Geoff Langb1196682014-07-23 13:47:29 -04008596 context->recordError(gl::Error(GL_INVALID_OPERATION));
8597 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008598 }
8599
8600 // Check for invalid bit combinations
8601 if ((access & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT)) == 0)
8602 {
Geoff Langb1196682014-07-23 13:47:29 -04008603 context->recordError(gl::Error(GL_INVALID_OPERATION));
8604 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008605 }
8606
8607 GLbitfield writeOnlyBits = GL_MAP_INVALIDATE_RANGE_BIT |
8608 GL_MAP_INVALIDATE_BUFFER_BIT |
8609 GL_MAP_UNSYNCHRONIZED_BIT;
8610
8611 if ((access & GL_MAP_READ_BIT) != 0 && (access & writeOnlyBits) != 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 if ((access & GL_MAP_WRITE_BIT) == 0 && (access & GL_MAP_FLUSH_EXPLICIT_BIT) != 0)
8618 {
Geoff Langb1196682014-07-23 13:47:29 -04008619 context->recordError(gl::Error(GL_INVALID_OPERATION));
8620 return NULL;
Geoff Langbfdea662014-07-23 14:16:32 -04008621 }
8622
Geoff Lang2a1c15a2014-07-25 11:43:00 -04008623 gl::Error error = buffer->mapRange(offset, length, access);
8624 if (error.isError())
8625 {
8626 context->recordError(error);
8627 return NULL;
8628 }
8629
8630 return buffer->getMapPointer();
Shannon Woods916e7692014-03-27 16:58:22 -04008631 }
8632
8633 return NULL;
8634}
8635
8636void __stdcall glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length)
8637{
8638 EVENT("(GLenum target = 0x%X, GLintptr offset = %d, GLsizeiptr length = %d)", target, offset, length);
8639
Geoff Langbfdea662014-07-23 14:16:32 -04008640 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008641 if (context)
8642 {
8643 if (offset < 0 || length < 0)
Shannon Woods916e7692014-03-27 16:58:22 -04008644 {
Geoff Langb1196682014-07-23 13:47:29 -04008645 context->recordError(gl::Error(GL_INVALID_VALUE));
8646 return;
Shannon Woods916e7692014-03-27 16:58:22 -04008647 }
Geoff Langbfdea662014-07-23 14:16:32 -04008648
8649 if (!gl::ValidBufferTarget(context, target))
8650 {
Geoff Langb1196682014-07-23 13:47:29 -04008651 context->recordError(gl::Error(GL_INVALID_ENUM));
8652 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008653 }
8654
8655 gl::Buffer *buffer = context->getState().getTargetBuffer(target);
8656
8657 if (buffer == NULL)
8658 {
Geoff Langb1196682014-07-23 13:47:29 -04008659 context->recordError(gl::Error(GL_INVALID_OPERATION));
8660 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008661 }
8662
8663 if (!buffer->isMapped() || (buffer->getAccessFlags() & GL_MAP_FLUSH_EXPLICIT_BIT) == 0)
8664 {
Geoff Langb1196682014-07-23 13:47:29 -04008665 context->recordError(gl::Error(GL_INVALID_OPERATION));
8666 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008667 }
8668
8669 // Check for buffer overflow
8670 size_t offsetSize = static_cast<size_t>(offset);
8671 size_t lengthSize = static_cast<size_t>(length);
8672
8673 if (!rx::IsUnsignedAdditionSafe(offsetSize, lengthSize) ||
8674 offsetSize + lengthSize > static_cast<size_t>(buffer->getMapLength()))
8675 {
Geoff Langb1196682014-07-23 13:47:29 -04008676 context->recordError(gl::Error(GL_INVALID_VALUE));
8677 return;
Geoff Langbfdea662014-07-23 14:16:32 -04008678 }
8679
8680 // We do not currently support a non-trivial implementation of FlushMappedBufferRange
Shannon Woods916e7692014-03-27 16:58:22 -04008681 }
8682}
8683
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008684__eglMustCastToProperFunctionPointerType __stdcall glGetProcAddress(const char *procname)
8685{
8686 struct Extension
8687 {
8688 const char *name;
8689 __eglMustCastToProperFunctionPointerType address;
8690 };
8691
8692 static const Extension glExtensions[] =
8693 {
8694 {"glTexImage3DOES", (__eglMustCastToProperFunctionPointerType)glTexImage3DOES},
daniel@transgaming.com01868132010-08-24 19:21:17 +00008695 {"glBlitFramebufferANGLE", (__eglMustCastToProperFunctionPointerType)glBlitFramebufferANGLE},
daniel@transgaming.com1fe96c92011-01-14 15:08:44 +00008696 {"glRenderbufferStorageMultisampleANGLE", (__eglMustCastToProperFunctionPointerType)glRenderbufferStorageMultisampleANGLE},
apatrick@chromium.orgd3bd0ad2010-08-30 18:55:36 +00008697 {"glDeleteFencesNV", (__eglMustCastToProperFunctionPointerType)glDeleteFencesNV},
8698 {"glGenFencesNV", (__eglMustCastToProperFunctionPointerType)glGenFencesNV},
8699 {"glIsFenceNV", (__eglMustCastToProperFunctionPointerType)glIsFenceNV},
8700 {"glTestFenceNV", (__eglMustCastToProperFunctionPointerType)glTestFenceNV},
8701 {"glGetFenceivNV", (__eglMustCastToProperFunctionPointerType)glGetFenceivNV},
8702 {"glFinishFenceNV", (__eglMustCastToProperFunctionPointerType)glFinishFenceNV},
8703 {"glSetFenceNV", (__eglMustCastToProperFunctionPointerType)glSetFenceNV},
zmo@google.coma574f782011-10-03 21:45:23 +00008704 {"glGetTranslatedShaderSourceANGLE", (__eglMustCastToProperFunctionPointerType)glGetTranslatedShaderSourceANGLE},
daniel@transgaming.com0bd1f2f2011-11-11 04:19:03 +00008705 {"glTexStorage2DEXT", (__eglMustCastToProperFunctionPointerType)glTexStorage2DEXT},
daniel@transgaming.com709ed112011-11-12 03:18:10 +00008706 {"glGetGraphicsResetStatusEXT", (__eglMustCastToProperFunctionPointerType)glGetGraphicsResetStatusEXT},
8707 {"glReadnPixelsEXT", (__eglMustCastToProperFunctionPointerType)glReadnPixelsEXT},
8708 {"glGetnUniformfvEXT", (__eglMustCastToProperFunctionPointerType)glGetnUniformfvEXT},
8709 {"glGetnUniformivEXT", (__eglMustCastToProperFunctionPointerType)glGetnUniformivEXT},
daniel@transgaming.com86bdb822012-01-20 18:24:39 +00008710 {"glGenQueriesEXT", (__eglMustCastToProperFunctionPointerType)glGenQueriesEXT},
8711 {"glDeleteQueriesEXT", (__eglMustCastToProperFunctionPointerType)glDeleteQueriesEXT},
8712 {"glIsQueryEXT", (__eglMustCastToProperFunctionPointerType)glIsQueryEXT},
8713 {"glBeginQueryEXT", (__eglMustCastToProperFunctionPointerType)glBeginQueryEXT},
8714 {"glEndQueryEXT", (__eglMustCastToProperFunctionPointerType)glEndQueryEXT},
8715 {"glGetQueryivEXT", (__eglMustCastToProperFunctionPointerType)glGetQueryivEXT},
8716 {"glGetQueryObjectuivEXT", (__eglMustCastToProperFunctionPointerType)glGetQueryObjectuivEXT},
shannon.woods%transgaming.com@gtempaccount.com77d94722013-04-13 03:34:22 +00008717 {"glDrawBuffersEXT", (__eglMustCastToProperFunctionPointerType)glDrawBuffersEXT},
daniel@transgaming.comdce02fd2012-01-27 15:39:51 +00008718 {"glVertexAttribDivisorANGLE", (__eglMustCastToProperFunctionPointerType)glVertexAttribDivisorANGLE},
8719 {"glDrawArraysInstancedANGLE", (__eglMustCastToProperFunctionPointerType)glDrawArraysInstancedANGLE},
8720 {"glDrawElementsInstancedANGLE", (__eglMustCastToProperFunctionPointerType)glDrawElementsInstancedANGLE},
apatrick@chromium.org3ce8dbc2012-06-08 17:52:30 +00008721 {"glGetProgramBinaryOES", (__eglMustCastToProperFunctionPointerType)glGetProgramBinaryOES},
Shannon Woodsb3801742014-03-27 14:59:19 -04008722 {"glProgramBinaryOES", (__eglMustCastToProperFunctionPointerType)glProgramBinaryOES},
8723 {"glGetBufferPointervOES", (__eglMustCastToProperFunctionPointerType)glGetBufferPointervOES},
8724 {"glMapBufferOES", (__eglMustCastToProperFunctionPointerType)glMapBufferOES},
Shannon Woods916e7692014-03-27 16:58:22 -04008725 {"glUnmapBufferOES", (__eglMustCastToProperFunctionPointerType)glUnmapBufferOES},
8726 {"glMapBufferRangeEXT", (__eglMustCastToProperFunctionPointerType)glMapBufferRangeEXT},
8727 {"glFlushMappedBufferRangeEXT", (__eglMustCastToProperFunctionPointerType)glFlushMappedBufferRangeEXT}, };
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008728
shannon.woods@transgaming.comd438fd42013-02-28 23:17:45 +00008729 for (unsigned int ext = 0; ext < ArraySize(glExtensions); ext++)
daniel@transgaming.comce3d0f22010-05-04 03:35:14 +00008730 {
8731 if (strcmp(procname, glExtensions[ext].name) == 0)
8732 {
8733 return (__eglMustCastToProperFunctionPointerType)glExtensions[ext].address;
8734 }
8735 }
8736
8737 return NULL;
8738}
8739
daniel@transgaming.com17f548c2011-11-09 17:47:02 +00008740// Non-public functions used by EGL
8741
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00008742bool __stdcall glBindTexImage(egl::Surface *surface)
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008743{
8744 EVENT("(egl::Surface* surface = 0x%0.8p)",
8745 surface);
8746
Geoff Langbfdea662014-07-23 14:16:32 -04008747 gl::Context *context = gl::getNonLostContext();
Geoff Langbfdea662014-07-23 14:16:32 -04008748 if (context)
8749 {
8750 gl::Texture2D *textureObject = context->getTexture2D();
8751 ASSERT(textureObject != NULL);
8752
8753 if (textureObject->isImmutable())
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008754 {
Geoff Langbfdea662014-07-23 14:16:32 -04008755 return false;
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008756 }
Geoff Langbfdea662014-07-23 14:16:32 -04008757
8758 textureObject->bindTexImage(surface);
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008759 }
daniel@transgaming.com64a0fb22011-11-11 04:10:40 +00008760
8761 return true;
jbauman@chromium.orgae345802011-03-30 22:04:25 +00008762}
8763
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00008764}