blob: 699b414f5021581e687e0fa8c5ca7ca2c7ebedd7 [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 Romanick28249bd2011-08-21 18:34:27 -070068 map = ctx->Driver.MapBufferRange(ctx, 0, elementBuf->Size,
69 GL_MAP_READ_BIT, elementBuf);
Brian Paule5d29eb2009-09-21 14:07:35 -060070 /* Actual address is the sum of pointers */
71 indices = (const GLvoid *) ADD_POINTERS(map, (const GLubyte *) indices);
72 }
73
74 if (type == GL_UNSIGNED_INT) {
75 for (i = 0; i < count; i++)
76 if (((GLuint *) indices)[i] > max)
77 max = ((GLuint *) indices)[i];
78 }
79 else if (type == GL_UNSIGNED_SHORT) {
80 for (i = 0; i < count; i++)
81 if (((GLushort *) indices)[i] > max)
82 max = ((GLushort *) indices)[i];
83 }
84 else {
85 ASSERT(type == GL_UNSIGNED_BYTE);
86 for (i = 0; i < count; i++)
87 if (((GLubyte *) indices)[i] > max)
88 max = ((GLubyte *) indices)[i];
89 }
90
91 if (map) {
Ian Romanick56f0c002011-08-21 16:59:30 -070092 ctx->Driver.UnmapBuffer(ctx, elementBuf);
Brian Paule5d29eb2009-09-21 14:07:35 -060093 }
94
95 return max;
96}
97
98
99/**
Brian Paulb6e56002009-08-14 10:48:31 -0600100 * Check if OK to draw arrays/elements.
Brian Paul88af3f82009-05-06 12:27:38 -0600101 */
Alan Hourihane263b96e2009-01-15 11:51:39 +0000102static GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400103check_valid_to_render(struct gl_context *ctx, const char *function)
Alan Hourihane263b96e2009-01-15 11:51:39 +0000104{
Brian Paulb6e56002009-08-14 10:48:31 -0600105 if (!_mesa_valid_to_render(ctx, function)) {
Alan Hourihane263b96e2009-01-15 11:51:39 +0000106 return GL_FALSE;
107 }
108
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400109 switch (ctx->API) {
Brian Paul97dd2dd2009-03-02 12:27:16 -0700110#if FEATURE_es2_glsl
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400111 case API_OPENGLES2:
112 /* For ES2, we can draw if any vertex array is enabled (and we
113 * should always have a vertex program/shader). */
114 if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current)
115 return GL_FALSE;
116 break;
Brian Paul97dd2dd2009-03-02 12:27:16 -0700117#endif
Alan Hourihane263b96e2009-01-15 11:51:39 +0000118
Brian Paul43bdabd2011-05-18 16:19:06 -0600119#if FEATURE_ES1
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400120 case API_OPENGLES:
Brian Paul43bdabd2011-05-18 16:19:06 -0600121 /* For OpenGL ES, only draw if we have vertex positions
122 */
123 if (!ctx->Array.ArrayObj->Vertex.Enabled)
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400124 return GL_FALSE;
125 break;
126#endif
127
Brian Paul43bdabd2011-05-18 16:19:06 -0600128#if FEATURE_GL
129 case API_OPENGL:
130 {
131 const struct gl_shader_program *vsProg =
132 ctx->Shader.CurrentVertexProgram;
133 GLboolean haveVertexShader = (vsProg && vsProg->LinkStatus);
134 GLboolean haveVertexProgram = ctx->VertexProgram._Enabled;
135 if (haveVertexShader || haveVertexProgram) {
136 /* Draw regardless of whether or not we have any vertex arrays.
137 * (Ex: could draw a point using a constant vertex pos)
138 */
139 return GL_TRUE;
140 }
141 else {
142 /* Draw if we have vertex positions (GL_VERTEX_ARRAY or generic
143 * array [0]).
144 */
145 return (ctx->Array.ArrayObj->Vertex.Enabled ||
146 ctx->Array.ArrayObj->VertexAttrib[0].Enabled);
147 }
148 }
149 break;
150#endif
151
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400152 default:
153 ASSERT_NO_FEATURE();
154 }
155
Alan Hourihane263b96e2009-01-15 11:51:39 +0000156 return GL_TRUE;
157}
Briand8c67192007-08-20 13:12:20 +0100158
Brian Paule9968eb2010-03-05 12:32:32 -0700159
160/**
161 * Do bounds checking on array element indexes. Check that the vertices
162 * pointed to by the indices don't lie outside buffer object bounds.
163 * \return GL_TRUE if OK, GL_FALSE if any indexed vertex goes is out of bounds
164 */
Eric Anholt92d7ed82009-08-27 10:09:24 -0700165static GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400166check_index_bounds(struct gl_context *ctx, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700167 const GLvoid *indices, GLint basevertex)
168{
169 struct _mesa_prim prim;
170 struct _mesa_index_buffer ib;
171 GLuint min, max;
172
173 /* Only the X Server needs to do this -- otherwise, accessing outside
174 * array/BO bounds allows application termination.
175 */
176 if (!ctx->Const.CheckArrayBounds)
177 return GL_TRUE;
178
179 memset(&prim, 0, sizeof(prim));
180 prim.count = count;
181
182 memset(&ib, 0, sizeof(ib));
183 ib.type = type;
184 ib.ptr = indices;
185 ib.obj = ctx->Array.ElementArrayBufferObj;
186
187 vbo_get_minmax_index(ctx, &prim, &ib, &min, &max);
188
Michel Dänzer391b3962010-03-05 00:15:40 +0100189 if ((int)(min + basevertex) < 0 ||
Eric Anholt92d7ed82009-08-27 10:09:24 -0700190 max + basevertex > ctx->Array.ArrayObj->_MaxElement) {
191 /* the max element is out of bounds of one or more enabled arrays */
Brian Paule9968eb2010-03-05 12:32:32 -0700192 _mesa_warning(ctx, "glDrawElements() index=%u is out of bounds (max=%u)",
193 max, ctx->Array.ArrayObj->_MaxElement);
Eric Anholt92d7ed82009-08-27 10:09:24 -0700194 return GL_FALSE;
195 }
196
197 return GL_TRUE;
198}
Brian Paul88af3f82009-05-06 12:27:38 -0600199
Brian Paule9968eb2010-03-05 12:32:32 -0700200
Brian Paul88af3f82009-05-06 12:27:38 -0600201/**
202 * Error checking for glDrawElements(). Includes parameter checking
203 * and VBO bounds checking.
204 * \return GL_TRUE if OK to render, GL_FALSE if error found
205 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000206GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400207_mesa_validate_DrawElements(struct gl_context *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000208 GLenum mode, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700209 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000210{
Brian Paulcf3193a2010-04-04 18:18:28 -0600211 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000212
213 if (count <= 0) {
214 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000215 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000216 return GL_FALSE;
217 }
218
Zack Rusindf0831f2010-07-10 18:14:47 -0400219 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000220 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000221 return GL_FALSE;
222 }
223
Gareth Hughes22144ab2001-03-12 00:48:37 +0000224 if (type != GL_UNSIGNED_INT &&
225 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000226 type != GL_UNSIGNED_SHORT)
227 {
Brian Paul08836342001-03-03 20:33:27 +0000228 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000229 return GL_FALSE;
230 }
231
Brian Paula48b0a52009-08-14 10:41:03 -0600232 if (!check_valid_to_render(ctx, "glDrawElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000233 return GL_FALSE;
234
Brian Paul03e29a52003-12-04 03:16:27 +0000235 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600236 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100237 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100238 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600239 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000240 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
241 return GL_FALSE;
242 }
Brian Paul03e29a52003-12-04 03:16:27 +0000243 }
Brian37ece4d2007-07-08 09:20:42 -0600244 else {
245 /* not using a VBO */
246 if (!indices)
247 return GL_FALSE;
248 }
Brian Paul03e29a52003-12-04 03:16:27 +0000249
Eric Anholt92d7ed82009-08-27 10:09:24 -0700250 if (!check_index_bounds(ctx, count, type, indices, basevertex))
251 return GL_FALSE;
Xiang, Haihao2394d202007-07-30 23:50:52 +0800252
Keith Whitwellcab974c2000-12-26 05:09:27 +0000253 return GL_TRUE;
254}
255
Brian Paul88af3f82009-05-06 12:27:38 -0600256
257/**
258 * Error checking for glDrawRangeElements(). Includes parameter checking
259 * and VBO bounds checking.
260 * \return GL_TRUE if OK to render, GL_FALSE if error found
261 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000262GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400263_mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000264 GLuint start, GLuint end,
265 GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700266 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000267{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000268 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000269
270 if (count <= 0) {
271 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000272 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000273 return GL_FALSE;
274 }
275
Zack Rusindf0831f2010-07-10 18:14:47 -0400276 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000277 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000278 return GL_FALSE;
279 }
280
281 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000282 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000283 return GL_FALSE;
284 }
285
Gareth Hughes22144ab2001-03-12 00:48:37 +0000286 if (type != GL_UNSIGNED_INT &&
287 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000288 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000289 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000290 return GL_FALSE;
291 }
292
Brian Paula48b0a52009-08-14 10:41:03 -0600293 if (!check_valid_to_render(ctx, "glDrawRangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000294 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000295
Brian37ece4d2007-07-08 09:20:42 -0600296 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600297 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100298 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100299 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600300 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600301 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100302 return GL_FALSE;
303 }
Brian37ece4d2007-07-08 09:20:42 -0600304 }
305 else {
Briand8c67192007-08-20 13:12:20 +0100306 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600307 if (!indices)
308 return GL_FALSE;
309 }
310
Eric Anholt92d7ed82009-08-27 10:09:24 -0700311 if (!check_index_bounds(ctx, count, type, indices, basevertex))
312 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000313
Brian Paulc5b1e812003-10-22 22:59:07 +0000314 return GL_TRUE;
315}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000316
Brian Paulc5b1e812003-10-22 22:59:07 +0000317
318/**
319 * Called from the tnl module to error check the function parameters and
320 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600321 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000322 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000323GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400324_mesa_validate_DrawArrays(struct gl_context *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000325 GLenum mode, GLint start, GLsizei count)
326{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000327 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000328
Brian5cb20342007-10-31 09:38:51 -0600329 if (count <= 0) {
330 if (count < 0)
331 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000332 return GL_FALSE;
333 }
334
Zack Rusindf0831f2010-07-10 18:14:47 -0400335 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paul08836342001-03-03 20:33:27 +0000336 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000337 return GL_FALSE;
338 }
339
Brian Paula48b0a52009-08-14 10:41:03 -0600340 if (!check_valid_to_render(ctx, "glDrawArrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000341 return GL_FALSE;
342
343 if (ctx->Const.CheckArrayBounds) {
Brian Paula185bcb2009-05-14 13:24:24 -0600344 if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000345 return GL_FALSE;
346 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000347
348 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000349}
Brian Paulcf3193a2010-04-04 18:18:28 -0600350
351
352GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400353_mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first,
Brian Paul72f25512011-01-17 09:33:47 -0700354 GLsizei count, GLsizei numInstances)
Brian Paulcf3193a2010-04-04 18:18:28 -0600355{
356 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
357
358 if (count <= 0) {
359 if (count < 0)
360 _mesa_error(ctx, GL_INVALID_VALUE,
361 "glDrawArraysInstanced(count=%d)", count);
362 return GL_FALSE;
363 }
364
Zack Rusindf0831f2010-07-10 18:14:47 -0400365 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600366 _mesa_error(ctx, GL_INVALID_ENUM,
367 "glDrawArraysInstanced(mode=0x%x)", mode);
368 return GL_FALSE;
369 }
370
Brian Paul72f25512011-01-17 09:33:47 -0700371 if (numInstances <= 0) {
372 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600373 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700374 "glDrawArraysInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600375 return GL_FALSE;
376 }
377
378 if (!check_valid_to_render(ctx, "glDrawArraysInstanced(invalid to render)"))
379 return GL_FALSE;
380
381 if (ctx->CompileFlag) {
382 _mesa_error(ctx, GL_INVALID_OPERATION,
383 "glDrawArraysInstanced(display list");
384 return GL_FALSE;
385 }
386
387 if (ctx->Const.CheckArrayBounds) {
388 if (first + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
389 return GL_FALSE;
390 }
391
392 return GL_TRUE;
393}
394
395
396GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400397_mesa_validate_DrawElementsInstanced(struct gl_context *ctx,
Brian Paulcf3193a2010-04-04 18:18:28 -0600398 GLenum mode, GLsizei count, GLenum type,
Pierre-Eric Pelloux-Prayer09201cc2011-05-31 13:33:54 +0200399 const GLvoid *indices, GLsizei numInstances,
400 GLint basevertex)
Brian Paulcf3193a2010-04-04 18:18:28 -0600401{
402 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
403
404 if (count <= 0) {
405 if (count < 0)
406 _mesa_error(ctx, GL_INVALID_VALUE,
407 "glDrawElementsInstanced(count=%d)", count);
408 return GL_FALSE;
409 }
410
Zack Rusindf0831f2010-07-10 18:14:47 -0400411 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600412 _mesa_error(ctx, GL_INVALID_ENUM,
413 "glDrawElementsInstanced(mode = 0x%x)", mode);
414 return GL_FALSE;
415 }
416
417 if (type != GL_UNSIGNED_INT &&
418 type != GL_UNSIGNED_BYTE &&
419 type != GL_UNSIGNED_SHORT) {
420 _mesa_error(ctx, GL_INVALID_ENUM,
421 "glDrawElementsInstanced(type=0x%x)", type);
422 return GL_FALSE;
423 }
424
Brian Paul72f25512011-01-17 09:33:47 -0700425 if (numInstances <= 0) {
426 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600427 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700428 "glDrawElementsInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600429 return GL_FALSE;
430 }
431
432 if (!check_valid_to_render(ctx, "glDrawElementsInstanced"))
433 return GL_FALSE;
434
435 /* Vertex buffer object tests */
436 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
437 /* use indices in the buffer object */
438 /* make sure count doesn't go outside buffer bounds */
439 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
440 _mesa_warning(ctx,
441 "glDrawElementsInstanced index out of buffer bounds");
442 return GL_FALSE;
443 }
444 }
445 else {
446 /* not using a VBO */
447 if (!indices)
448 return GL_FALSE;
449 }
450
Pierre-Eric Pelloux-Prayer09201cc2011-05-31 13:33:54 +0200451 if (!check_index_bounds(ctx, count, type, indices, basevertex))
Brian Paulcf3193a2010-04-04 18:18:28 -0600452 return GL_FALSE;
453
454 return GL_TRUE;
455}