blob: 507d0ce6883cada1813958c2c213c49c3f40fd7f [file] [log] [blame]
Keith Whitwellcab974c2000-12-26 05:09:27 +00001/*
2 * Mesa 3-D graphics library
Briana3c3bc92007-08-20 12:55:34 +01003 * Version: 7.1
Keith Whitwellcab974c2000-12-26 05:09:27 +00004 *
Brian37ece4d2007-07-08 09:20:42 -06005 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
Keith Whitwellcab974c2000-12-26 05:09:27 +00006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25#include "glheader.h"
Brian Paul8446d1b2001-01-02 21:40:57 +000026#include "api_validate.h"
Brian Paul434ec3a2009-08-12 13:46:16 -060027#include "bufferobj.h"
Keith Whitwellcab974c2000-12-26 05:09:27 +000028#include "context.h"
Brian Paul3c634522002-10-24 23:57:19 +000029#include "imports.h"
Vinson Lee6bf0ac02010-11-06 21:13:40 -070030#include "mfeatures.h"
Keith Whitwellcab974c2000-12-26 05:09:27 +000031#include "mtypes.h"
Eric Anholt92d7ed82009-08-27 10:09:24 -070032#include "vbo/vbo.h"
Keith Whitwell58e99172001-01-05 02:26:48 +000033
Brian Paulbb1fb2a2009-05-06 12:37:10 -060034
35/**
36 * \return number of bytes in array [count] of type.
37 */
38static GLsizei
39index_bytes(GLenum type, GLsizei count)
40{
41 if (type == GL_UNSIGNED_INT) {
42 return count * sizeof(GLuint);
43 }
44 else if (type == GL_UNSIGNED_BYTE) {
45 return count * sizeof(GLubyte);
46 }
47 else {
48 ASSERT(type == GL_UNSIGNED_SHORT);
49 return count * sizeof(GLushort);
50 }
51}
52
53
Briand8c67192007-08-20 13:12:20 +010054/**
Brian Paule5d29eb2009-09-21 14:07:35 -060055 * Find the max index in the given element/index buffer
56 */
57GLuint
Kristian Høgsbergf9995b32010-10-12 12:26:10 -040058_mesa_max_buffer_index(struct gl_context *ctx, GLuint count, GLenum type,
Brian Paule5d29eb2009-09-21 14:07:35 -060059 const void *indices,
60 struct gl_buffer_object *elementBuf)
61{
62 const GLubyte *map = NULL;
63 GLuint max = 0;
64 GLuint i;
65
66 if (_mesa_is_bufferobj(elementBuf)) {
67 /* elements are in a user-defined buffer object. need to map it */
Ian Romanick12d924c2011-08-21 17:07:56 -070068 map = ctx->Driver.MapBuffer(ctx, GL_READ_ONLY, elementBuf);
Brian Paule5d29eb2009-09-21 14:07:35 -060069 /* Actual address is the sum of pointers */
70 indices = (const GLvoid *) ADD_POINTERS(map, (const GLubyte *) indices);
71 }
72
73 if (type == GL_UNSIGNED_INT) {
74 for (i = 0; i < count; i++)
75 if (((GLuint *) indices)[i] > max)
76 max = ((GLuint *) indices)[i];
77 }
78 else if (type == GL_UNSIGNED_SHORT) {
79 for (i = 0; i < count; i++)
80 if (((GLushort *) indices)[i] > max)
81 max = ((GLushort *) indices)[i];
82 }
83 else {
84 ASSERT(type == GL_UNSIGNED_BYTE);
85 for (i = 0; i < count; i++)
86 if (((GLubyte *) indices)[i] > max)
87 max = ((GLubyte *) indices)[i];
88 }
89
90 if (map) {
Ian Romanick56f0c002011-08-21 16:59:30 -070091 ctx->Driver.UnmapBuffer(ctx, elementBuf);
Brian Paule5d29eb2009-09-21 14:07:35 -060092 }
93
94 return max;
95}
96
97
98/**
Brian Paulb6e56002009-08-14 10:48:31 -060099 * Check if OK to draw arrays/elements.
Brian Paul88af3f82009-05-06 12:27:38 -0600100 */
Alan Hourihane263b96e2009-01-15 11:51:39 +0000101static GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400102check_valid_to_render(struct gl_context *ctx, const char *function)
Alan Hourihane263b96e2009-01-15 11:51:39 +0000103{
Brian Paulb6e56002009-08-14 10:48:31 -0600104 if (!_mesa_valid_to_render(ctx, function)) {
Alan Hourihane263b96e2009-01-15 11:51:39 +0000105 return GL_FALSE;
106 }
107
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400108 switch (ctx->API) {
Brian Paul97dd2dd2009-03-02 12:27:16 -0700109#if FEATURE_es2_glsl
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400110 case API_OPENGLES2:
111 /* For ES2, we can draw if any vertex array is enabled (and we
112 * should always have a vertex program/shader). */
113 if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current)
114 return GL_FALSE;
115 break;
Brian Paul97dd2dd2009-03-02 12:27:16 -0700116#endif
Alan Hourihane263b96e2009-01-15 11:51:39 +0000117
Brian Paul43bdabd2011-05-18 16:19:06 -0600118#if FEATURE_ES1
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400119 case API_OPENGLES:
Brian Paul43bdabd2011-05-18 16:19:06 -0600120 /* For OpenGL ES, only draw if we have vertex positions
121 */
122 if (!ctx->Array.ArrayObj->Vertex.Enabled)
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400123 return GL_FALSE;
124 break;
125#endif
126
Brian Paul43bdabd2011-05-18 16:19:06 -0600127#if FEATURE_GL
128 case API_OPENGL:
129 {
130 const struct gl_shader_program *vsProg =
131 ctx->Shader.CurrentVertexProgram;
132 GLboolean haveVertexShader = (vsProg && vsProg->LinkStatus);
133 GLboolean haveVertexProgram = ctx->VertexProgram._Enabled;
134 if (haveVertexShader || haveVertexProgram) {
135 /* Draw regardless of whether or not we have any vertex arrays.
136 * (Ex: could draw a point using a constant vertex pos)
137 */
138 return GL_TRUE;
139 }
140 else {
141 /* Draw if we have vertex positions (GL_VERTEX_ARRAY or generic
142 * array [0]).
143 */
144 return (ctx->Array.ArrayObj->Vertex.Enabled ||
145 ctx->Array.ArrayObj->VertexAttrib[0].Enabled);
146 }
147 }
148 break;
149#endif
150
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400151 default:
152 ASSERT_NO_FEATURE();
153 }
154
Alan Hourihane263b96e2009-01-15 11:51:39 +0000155 return GL_TRUE;
156}
Briand8c67192007-08-20 13:12:20 +0100157
Brian Paule9968eb2010-03-05 12:32:32 -0700158
159/**
160 * Do bounds checking on array element indexes. Check that the vertices
161 * pointed to by the indices don't lie outside buffer object bounds.
162 * \return GL_TRUE if OK, GL_FALSE if any indexed vertex goes is out of bounds
163 */
Eric Anholt92d7ed82009-08-27 10:09:24 -0700164static GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400165check_index_bounds(struct gl_context *ctx, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700166 const GLvoid *indices, GLint basevertex)
167{
168 struct _mesa_prim prim;
169 struct _mesa_index_buffer ib;
170 GLuint min, max;
171
172 /* Only the X Server needs to do this -- otherwise, accessing outside
173 * array/BO bounds allows application termination.
174 */
175 if (!ctx->Const.CheckArrayBounds)
176 return GL_TRUE;
177
178 memset(&prim, 0, sizeof(prim));
179 prim.count = count;
180
181 memset(&ib, 0, sizeof(ib));
182 ib.type = type;
183 ib.ptr = indices;
184 ib.obj = ctx->Array.ElementArrayBufferObj;
185
186 vbo_get_minmax_index(ctx, &prim, &ib, &min, &max);
187
Michel Dänzer391b3962010-03-05 00:15:40 +0100188 if ((int)(min + basevertex) < 0 ||
Eric Anholt92d7ed82009-08-27 10:09:24 -0700189 max + basevertex > ctx->Array.ArrayObj->_MaxElement) {
190 /* the max element is out of bounds of one or more enabled arrays */
Brian Paule9968eb2010-03-05 12:32:32 -0700191 _mesa_warning(ctx, "glDrawElements() index=%u is out of bounds (max=%u)",
192 max, ctx->Array.ArrayObj->_MaxElement);
Eric Anholt92d7ed82009-08-27 10:09:24 -0700193 return GL_FALSE;
194 }
195
196 return GL_TRUE;
197}
Brian Paul88af3f82009-05-06 12:27:38 -0600198
Brian Paule9968eb2010-03-05 12:32:32 -0700199
Brian Paul88af3f82009-05-06 12:27:38 -0600200/**
201 * Error checking for glDrawElements(). Includes parameter checking
202 * and VBO bounds checking.
203 * \return GL_TRUE if OK to render, GL_FALSE if error found
204 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000205GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400206_mesa_validate_DrawElements(struct gl_context *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000207 GLenum mode, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700208 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000209{
Brian Paulcf3193a2010-04-04 18:18:28 -0600210 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000211
212 if (count <= 0) {
213 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000214 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000215 return GL_FALSE;
216 }
217
Zack Rusindf0831f2010-07-10 18:14:47 -0400218 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000219 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000220 return GL_FALSE;
221 }
222
Gareth Hughes22144ab2001-03-12 00:48:37 +0000223 if (type != GL_UNSIGNED_INT &&
224 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000225 type != GL_UNSIGNED_SHORT)
226 {
Brian Paul08836342001-03-03 20:33:27 +0000227 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000228 return GL_FALSE;
229 }
230
Brian Paula48b0a52009-08-14 10:41:03 -0600231 if (!check_valid_to_render(ctx, "glDrawElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000232 return GL_FALSE;
233
Brian Paul03e29a52003-12-04 03:16:27 +0000234 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600235 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100236 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100237 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600238 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000239 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
240 return GL_FALSE;
241 }
Brian Paul03e29a52003-12-04 03:16:27 +0000242 }
Brian37ece4d2007-07-08 09:20:42 -0600243 else {
244 /* not using a VBO */
245 if (!indices)
246 return GL_FALSE;
247 }
Brian Paul03e29a52003-12-04 03:16:27 +0000248
Eric Anholt92d7ed82009-08-27 10:09:24 -0700249 if (!check_index_bounds(ctx, count, type, indices, basevertex))
250 return GL_FALSE;
Xiang, Haihao2394d202007-07-30 23:50:52 +0800251
Keith Whitwellcab974c2000-12-26 05:09:27 +0000252 return GL_TRUE;
253}
254
Brian Paul88af3f82009-05-06 12:27:38 -0600255
256/**
257 * Error checking for glDrawRangeElements(). Includes parameter checking
258 * and VBO bounds checking.
259 * \return GL_TRUE if OK to render, GL_FALSE if error found
260 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000261GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400262_mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000263 GLuint start, GLuint end,
264 GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700265 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000266{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000267 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000268
269 if (count <= 0) {
270 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000271 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000272 return GL_FALSE;
273 }
274
Zack Rusindf0831f2010-07-10 18:14:47 -0400275 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000276 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000277 return GL_FALSE;
278 }
279
280 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000281 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000282 return GL_FALSE;
283 }
284
Gareth Hughes22144ab2001-03-12 00:48:37 +0000285 if (type != GL_UNSIGNED_INT &&
286 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000287 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000288 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000289 return GL_FALSE;
290 }
291
Brian Paula48b0a52009-08-14 10:41:03 -0600292 if (!check_valid_to_render(ctx, "glDrawRangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000293 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000294
Brian37ece4d2007-07-08 09:20:42 -0600295 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600296 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100297 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100298 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600299 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600300 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100301 return GL_FALSE;
302 }
Brian37ece4d2007-07-08 09:20:42 -0600303 }
304 else {
Briand8c67192007-08-20 13:12:20 +0100305 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600306 if (!indices)
307 return GL_FALSE;
308 }
309
Eric Anholt92d7ed82009-08-27 10:09:24 -0700310 if (!check_index_bounds(ctx, count, type, indices, basevertex))
311 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000312
Brian Paulc5b1e812003-10-22 22:59:07 +0000313 return GL_TRUE;
314}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000315
Brian Paulc5b1e812003-10-22 22:59:07 +0000316
317/**
318 * Called from the tnl module to error check the function parameters and
319 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600320 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000321 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000322GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400323_mesa_validate_DrawArrays(struct gl_context *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000324 GLenum mode, GLint start, GLsizei count)
325{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000326 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000327
Brian5cb20342007-10-31 09:38:51 -0600328 if (count <= 0) {
329 if (count < 0)
330 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000331 return GL_FALSE;
332 }
333
Zack Rusindf0831f2010-07-10 18:14:47 -0400334 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paul08836342001-03-03 20:33:27 +0000335 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000336 return GL_FALSE;
337 }
338
Brian Paula48b0a52009-08-14 10:41:03 -0600339 if (!check_valid_to_render(ctx, "glDrawArrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000340 return GL_FALSE;
341
342 if (ctx->Const.CheckArrayBounds) {
Brian Paula185bcb2009-05-14 13:24:24 -0600343 if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000344 return GL_FALSE;
345 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000346
347 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000348}
Brian Paulcf3193a2010-04-04 18:18:28 -0600349
350
351GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400352_mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first,
Brian Paul72f25512011-01-17 09:33:47 -0700353 GLsizei count, GLsizei numInstances)
Brian Paulcf3193a2010-04-04 18:18:28 -0600354{
355 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
356
357 if (count <= 0) {
358 if (count < 0)
359 _mesa_error(ctx, GL_INVALID_VALUE,
360 "glDrawArraysInstanced(count=%d)", count);
361 return GL_FALSE;
362 }
363
Zack Rusindf0831f2010-07-10 18:14:47 -0400364 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600365 _mesa_error(ctx, GL_INVALID_ENUM,
366 "glDrawArraysInstanced(mode=0x%x)", mode);
367 return GL_FALSE;
368 }
369
Brian Paul72f25512011-01-17 09:33:47 -0700370 if (numInstances <= 0) {
371 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600372 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700373 "glDrawArraysInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600374 return GL_FALSE;
375 }
376
377 if (!check_valid_to_render(ctx, "glDrawArraysInstanced(invalid to render)"))
378 return GL_FALSE;
379
380 if (ctx->CompileFlag) {
381 _mesa_error(ctx, GL_INVALID_OPERATION,
382 "glDrawArraysInstanced(display list");
383 return GL_FALSE;
384 }
385
386 if (ctx->Const.CheckArrayBounds) {
387 if (first + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
388 return GL_FALSE;
389 }
390
391 return GL_TRUE;
392}
393
394
395GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400396_mesa_validate_DrawElementsInstanced(struct gl_context *ctx,
Brian Paulcf3193a2010-04-04 18:18:28 -0600397 GLenum mode, GLsizei count, GLenum type,
Pierre-Eric Pelloux-Prayer09201cc2011-05-31 13:33:54 +0200398 const GLvoid *indices, GLsizei numInstances,
399 GLint basevertex)
Brian Paulcf3193a2010-04-04 18:18:28 -0600400{
401 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
402
403 if (count <= 0) {
404 if (count < 0)
405 _mesa_error(ctx, GL_INVALID_VALUE,
406 "glDrawElementsInstanced(count=%d)", count);
407 return GL_FALSE;
408 }
409
Zack Rusindf0831f2010-07-10 18:14:47 -0400410 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600411 _mesa_error(ctx, GL_INVALID_ENUM,
412 "glDrawElementsInstanced(mode = 0x%x)", mode);
413 return GL_FALSE;
414 }
415
416 if (type != GL_UNSIGNED_INT &&
417 type != GL_UNSIGNED_BYTE &&
418 type != GL_UNSIGNED_SHORT) {
419 _mesa_error(ctx, GL_INVALID_ENUM,
420 "glDrawElementsInstanced(type=0x%x)", type);
421 return GL_FALSE;
422 }
423
Brian Paul72f25512011-01-17 09:33:47 -0700424 if (numInstances <= 0) {
425 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600426 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700427 "glDrawElementsInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600428 return GL_FALSE;
429 }
430
431 if (!check_valid_to_render(ctx, "glDrawElementsInstanced"))
432 return GL_FALSE;
433
434 /* Vertex buffer object tests */
435 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
436 /* use indices in the buffer object */
437 /* make sure count doesn't go outside buffer bounds */
438 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
439 _mesa_warning(ctx,
440 "glDrawElementsInstanced index out of buffer bounds");
441 return GL_FALSE;
442 }
443 }
444 else {
445 /* not using a VBO */
446 if (!indices)
447 return GL_FALSE;
448 }
449
Pierre-Eric Pelloux-Prayer09201cc2011-05-31 13:33:54 +0200450 if (!check_index_bounds(ctx, count, type, indices, basevertex))
Brian Paulcf3193a2010-04-04 18:18:28 -0600451 return GL_FALSE;
452
453 return GL_TRUE;
454}