blob: 7c4652f747f8c8963c1c8e41008f4ac0bc742a65 [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 */
68 map = ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER,
69 GL_READ_ONLY, elementBuf);
70 /* 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) {
92 ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER_ARB, elementBuf);
93 }
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
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400119#if FEATURE_ES1 || FEATURE_GL
120 case API_OPENGLES:
121 case API_OPENGL:
122 /* For regular OpenGL, only draw if we have vertex positions
123 * (regardless of whether or not we have a vertex program/shader). */
124 if (!ctx->Array.ArrayObj->Vertex.Enabled &&
125 !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
126 return GL_FALSE;
127 break;
128#endif
129
130 default:
131 ASSERT_NO_FEATURE();
132 }
133
Alan Hourihane263b96e2009-01-15 11:51:39 +0000134 return GL_TRUE;
135}
Briand8c67192007-08-20 13:12:20 +0100136
Brian Paule9968eb2010-03-05 12:32:32 -0700137
138/**
139 * Do bounds checking on array element indexes. Check that the vertices
140 * pointed to by the indices don't lie outside buffer object bounds.
141 * \return GL_TRUE if OK, GL_FALSE if any indexed vertex goes is out of bounds
142 */
Eric Anholt92d7ed82009-08-27 10:09:24 -0700143static GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400144check_index_bounds(struct gl_context *ctx, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700145 const GLvoid *indices, GLint basevertex)
146{
147 struct _mesa_prim prim;
148 struct _mesa_index_buffer ib;
149 GLuint min, max;
150
151 /* Only the X Server needs to do this -- otherwise, accessing outside
152 * array/BO bounds allows application termination.
153 */
154 if (!ctx->Const.CheckArrayBounds)
155 return GL_TRUE;
156
157 memset(&prim, 0, sizeof(prim));
158 prim.count = count;
159
160 memset(&ib, 0, sizeof(ib));
161 ib.type = type;
162 ib.ptr = indices;
163 ib.obj = ctx->Array.ElementArrayBufferObj;
164
165 vbo_get_minmax_index(ctx, &prim, &ib, &min, &max);
166
Michel Dänzer391b3962010-03-05 00:15:40 +0100167 if ((int)(min + basevertex) < 0 ||
Eric Anholt92d7ed82009-08-27 10:09:24 -0700168 max + basevertex > ctx->Array.ArrayObj->_MaxElement) {
169 /* the max element is out of bounds of one or more enabled arrays */
Brian Paule9968eb2010-03-05 12:32:32 -0700170 _mesa_warning(ctx, "glDrawElements() index=%u is out of bounds (max=%u)",
171 max, ctx->Array.ArrayObj->_MaxElement);
Eric Anholt92d7ed82009-08-27 10:09:24 -0700172 return GL_FALSE;
173 }
174
175 return GL_TRUE;
176}
Brian Paul88af3f82009-05-06 12:27:38 -0600177
Brian Paule9968eb2010-03-05 12:32:32 -0700178
Brian Paul88af3f82009-05-06 12:27:38 -0600179/**
180 * Error checking for glDrawElements(). Includes parameter checking
181 * and VBO bounds checking.
182 * \return GL_TRUE if OK to render, GL_FALSE if error found
183 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000184GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400185_mesa_validate_DrawElements(struct gl_context *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000186 GLenum mode, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700187 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000188{
Brian Paulcf3193a2010-04-04 18:18:28 -0600189 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000190
191 if (count <= 0) {
192 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000193 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000194 return GL_FALSE;
195 }
196
Zack Rusindf0831f2010-07-10 18:14:47 -0400197 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000198 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000199 return GL_FALSE;
200 }
201
Gareth Hughes22144ab2001-03-12 00:48:37 +0000202 if (type != GL_UNSIGNED_INT &&
203 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000204 type != GL_UNSIGNED_SHORT)
205 {
Brian Paul08836342001-03-03 20:33:27 +0000206 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000207 return GL_FALSE;
208 }
209
Brian Paula48b0a52009-08-14 10:41:03 -0600210 if (!check_valid_to_render(ctx, "glDrawElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000211 return GL_FALSE;
212
Brian Paul03e29a52003-12-04 03:16:27 +0000213 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600214 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100215 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100216 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600217 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000218 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
219 return GL_FALSE;
220 }
Brian Paul03e29a52003-12-04 03:16:27 +0000221 }
Brian37ece4d2007-07-08 09:20:42 -0600222 else {
223 /* not using a VBO */
224 if (!indices)
225 return GL_FALSE;
226 }
Brian Paul03e29a52003-12-04 03:16:27 +0000227
Eric Anholt92d7ed82009-08-27 10:09:24 -0700228 if (!check_index_bounds(ctx, count, type, indices, basevertex))
229 return GL_FALSE;
Xiang, Haihao2394d202007-07-30 23:50:52 +0800230
Keith Whitwellcab974c2000-12-26 05:09:27 +0000231 return GL_TRUE;
232}
233
Brian Paul88af3f82009-05-06 12:27:38 -0600234
235/**
236 * Error checking for glDrawRangeElements(). Includes parameter checking
237 * and VBO bounds checking.
238 * \return GL_TRUE if OK to render, GL_FALSE if error found
239 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000240GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400241_mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000242 GLuint start, GLuint end,
243 GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700244 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000245{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000246 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000247
248 if (count <= 0) {
249 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000250 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000251 return GL_FALSE;
252 }
253
Zack Rusindf0831f2010-07-10 18:14:47 -0400254 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000255 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000256 return GL_FALSE;
257 }
258
259 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000260 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000261 return GL_FALSE;
262 }
263
Gareth Hughes22144ab2001-03-12 00:48:37 +0000264 if (type != GL_UNSIGNED_INT &&
265 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000266 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000267 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000268 return GL_FALSE;
269 }
270
Brian Paula48b0a52009-08-14 10:41:03 -0600271 if (!check_valid_to_render(ctx, "glDrawRangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000272 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000273
Brian37ece4d2007-07-08 09:20:42 -0600274 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600275 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100276 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100277 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600278 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600279 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100280 return GL_FALSE;
281 }
Brian37ece4d2007-07-08 09:20:42 -0600282 }
283 else {
Briand8c67192007-08-20 13:12:20 +0100284 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600285 if (!indices)
286 return GL_FALSE;
287 }
288
Eric Anholt92d7ed82009-08-27 10:09:24 -0700289 if (!check_index_bounds(ctx, count, type, indices, basevertex))
290 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000291
Brian Paulc5b1e812003-10-22 22:59:07 +0000292 return GL_TRUE;
293}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000294
Brian Paulc5b1e812003-10-22 22:59:07 +0000295
296/**
297 * Called from the tnl module to error check the function parameters and
298 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600299 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000300 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000301GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400302_mesa_validate_DrawArrays(struct gl_context *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000303 GLenum mode, GLint start, GLsizei count)
304{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000305 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000306
Brian5cb20342007-10-31 09:38:51 -0600307 if (count <= 0) {
308 if (count < 0)
309 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000310 return GL_FALSE;
311 }
312
Zack Rusindf0831f2010-07-10 18:14:47 -0400313 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paul08836342001-03-03 20:33:27 +0000314 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000315 return GL_FALSE;
316 }
317
Brian Paula48b0a52009-08-14 10:41:03 -0600318 if (!check_valid_to_render(ctx, "glDrawArrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000319 return GL_FALSE;
320
321 if (ctx->Const.CheckArrayBounds) {
Brian Paula185bcb2009-05-14 13:24:24 -0600322 if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000323 return GL_FALSE;
324 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000325
326 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000327}
Brian Paulcf3193a2010-04-04 18:18:28 -0600328
329
330GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400331_mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first,
Brian Paul72f25512011-01-17 09:33:47 -0700332 GLsizei count, GLsizei numInstances)
Brian Paulcf3193a2010-04-04 18:18:28 -0600333{
334 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
335
336 if (count <= 0) {
337 if (count < 0)
338 _mesa_error(ctx, GL_INVALID_VALUE,
339 "glDrawArraysInstanced(count=%d)", count);
340 return GL_FALSE;
341 }
342
Zack Rusindf0831f2010-07-10 18:14:47 -0400343 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600344 _mesa_error(ctx, GL_INVALID_ENUM,
345 "glDrawArraysInstanced(mode=0x%x)", mode);
346 return GL_FALSE;
347 }
348
Brian Paul72f25512011-01-17 09:33:47 -0700349 if (numInstances <= 0) {
350 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600351 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700352 "glDrawArraysInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600353 return GL_FALSE;
354 }
355
356 if (!check_valid_to_render(ctx, "glDrawArraysInstanced(invalid to render)"))
357 return GL_FALSE;
358
359 if (ctx->CompileFlag) {
360 _mesa_error(ctx, GL_INVALID_OPERATION,
361 "glDrawArraysInstanced(display list");
362 return GL_FALSE;
363 }
364
365 if (ctx->Const.CheckArrayBounds) {
366 if (first + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
367 return GL_FALSE;
368 }
369
370 return GL_TRUE;
371}
372
373
374GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400375_mesa_validate_DrawElementsInstanced(struct gl_context *ctx,
Brian Paulcf3193a2010-04-04 18:18:28 -0600376 GLenum mode, GLsizei count, GLenum type,
Brian Paul72f25512011-01-17 09:33:47 -0700377 const GLvoid *indices, GLsizei numInstances)
Brian Paulcf3193a2010-04-04 18:18:28 -0600378{
379 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
380
381 if (count <= 0) {
382 if (count < 0)
383 _mesa_error(ctx, GL_INVALID_VALUE,
384 "glDrawElementsInstanced(count=%d)", count);
385 return GL_FALSE;
386 }
387
Zack Rusindf0831f2010-07-10 18:14:47 -0400388 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600389 _mesa_error(ctx, GL_INVALID_ENUM,
390 "glDrawElementsInstanced(mode = 0x%x)", mode);
391 return GL_FALSE;
392 }
393
394 if (type != GL_UNSIGNED_INT &&
395 type != GL_UNSIGNED_BYTE &&
396 type != GL_UNSIGNED_SHORT) {
397 _mesa_error(ctx, GL_INVALID_ENUM,
398 "glDrawElementsInstanced(type=0x%x)", type);
399 return GL_FALSE;
400 }
401
Brian Paul72f25512011-01-17 09:33:47 -0700402 if (numInstances <= 0) {
403 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600404 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700405 "glDrawElementsInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600406 return GL_FALSE;
407 }
408
409 if (!check_valid_to_render(ctx, "glDrawElementsInstanced"))
410 return GL_FALSE;
411
412 /* Vertex buffer object tests */
413 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
414 /* use indices in the buffer object */
415 /* make sure count doesn't go outside buffer bounds */
416 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
417 _mesa_warning(ctx,
418 "glDrawElementsInstanced index out of buffer bounds");
419 return GL_FALSE;
420 }
421 }
422 else {
423 /* not using a VBO */
424 if (!indices)
425 return GL_FALSE;
426 }
427
428 if (!check_index_bounds(ctx, count, type, indices, 0))
429 return GL_FALSE;
430
431 return GL_TRUE;
432}