blob: 17da5d01b7e77be32c56e3f59e956f21ea1aca22 [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 */
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100123 if (!ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POS].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 */
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100145 return (ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POS].Enabled ||
146 ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC0].Enabled);
Brian Paul43bdabd2011-05-18 16:19:06 -0600147 }
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;
Yuanhan Liua0a5bd42011-11-23 15:59:06 +0800185 ib.obj = ctx->Array.ArrayObj->ElementArrayBufferObj;
Eric Anholt92d7ed82009-08-27 10:09:24 -0700186
Yuanhan Liu42d49722011-12-31 14:22:46 +0800187 vbo_get_minmax_indices(ctx, &prim, &ib, &min, &max, 1);
Eric Anholt92d7ed82009-08-27 10:09:24 -0700188
Michel Dänzer391b3962010-03-05 00:15:40 +0100189 if ((int)(min + basevertex) < 0 ||
Roland Scheidegger1f4a8532012-02-06 01:04:28 +0100190 max + basevertex >= ctx->Array.ArrayObj->_MaxElement) {
Eric Anholt92d7ed82009-08-27 10:09:24 -0700191 /* 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/**
Brian Paul0e6646d2011-09-21 08:22:07 -0600202 * Is 'mode' a valid value for glBegin(), glDrawArrays(), glDrawElements(),
203 * etc? The set of legal values depends on whether geometry shaders/programs
204 * are supported.
205 */
206GLboolean
Eric Anholt7ca4f072012-03-14 14:39:15 -0700207_mesa_valid_prim_mode(struct gl_context *ctx, GLenum mode, const char *name)
Brian Paul0e6646d2011-09-21 08:22:07 -0600208{
209 if (ctx->Extensions.ARB_geometry_shader4 &&
210 mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Eric Anholt7ca4f072012-03-14 14:39:15 -0700211 _mesa_error(ctx, GL_INVALID_ENUM, "%s(mode=%x)", name, mode);
Brian Paul0e6646d2011-09-21 08:22:07 -0600212 return GL_FALSE;
213 }
214 else if (mode > GL_POLYGON) {
Eric Anholt7ca4f072012-03-14 14:39:15 -0700215 _mesa_error(ctx, GL_INVALID_ENUM, "%s(mode=%x)", name, mode);
Brian Paul0e6646d2011-09-21 08:22:07 -0600216 return GL_FALSE;
217 }
218 else {
219 return GL_TRUE;
220 }
221}
222
223
224/**
Brian Paul88af3f82009-05-06 12:27:38 -0600225 * Error checking for glDrawElements(). Includes parameter checking
226 * and VBO bounds checking.
227 * \return GL_TRUE if OK to render, GL_FALSE if error found
228 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000229GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400230_mesa_validate_DrawElements(struct gl_context *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000231 GLenum mode, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700232 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000233{
Brian Paulcf3193a2010-04-04 18:18:28 -0600234 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000235
236 if (count <= 0) {
237 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000238 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000239 return GL_FALSE;
240 }
241
Eric Anholt7ca4f072012-03-14 14:39:15 -0700242 if (!_mesa_valid_prim_mode(ctx, mode, "glDrawElements")) {
Keith Whitwellcab974c2000-12-26 05:09:27 +0000243 return GL_FALSE;
244 }
245
Gareth Hughes22144ab2001-03-12 00:48:37 +0000246 if (type != GL_UNSIGNED_INT &&
247 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000248 type != GL_UNSIGNED_SHORT)
249 {
Brian Paul08836342001-03-03 20:33:27 +0000250 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000251 return GL_FALSE;
252 }
253
Brian Paula48b0a52009-08-14 10:41:03 -0600254 if (!check_valid_to_render(ctx, "glDrawElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000255 return GL_FALSE;
256
Brian Paul03e29a52003-12-04 03:16:27 +0000257 /* Vertex buffer object tests */
Yuanhan Liua0a5bd42011-11-23 15:59:06 +0800258 if (_mesa_is_bufferobj(ctx->Array.ArrayObj->ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100259 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100260 /* make sure count doesn't go outside buffer bounds */
Yuanhan Liua0a5bd42011-11-23 15:59:06 +0800261 if (index_bytes(type, count) > ctx->Array.ArrayObj->ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000262 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
263 return GL_FALSE;
264 }
Brian Paul03e29a52003-12-04 03:16:27 +0000265 }
Brian37ece4d2007-07-08 09:20:42 -0600266 else {
267 /* not using a VBO */
268 if (!indices)
269 return GL_FALSE;
270 }
Brian Paul03e29a52003-12-04 03:16:27 +0000271
Eric Anholt92d7ed82009-08-27 10:09:24 -0700272 if (!check_index_bounds(ctx, count, type, indices, basevertex))
273 return GL_FALSE;
Xiang, Haihao2394d202007-07-30 23:50:52 +0800274
Keith Whitwellcab974c2000-12-26 05:09:27 +0000275 return GL_TRUE;
276}
277
Brian Paul88af3f82009-05-06 12:27:38 -0600278
279/**
280 * Error checking for glDrawRangeElements(). Includes parameter checking
281 * and VBO bounds checking.
282 * \return GL_TRUE if OK to render, GL_FALSE if error found
283 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000284GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400285_mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000286 GLuint start, GLuint end,
287 GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700288 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000289{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000290 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000291
292 if (count <= 0) {
293 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000294 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000295 return GL_FALSE;
296 }
297
Eric Anholt7ca4f072012-03-14 14:39:15 -0700298 if (!_mesa_valid_prim_mode(ctx, mode, "glDrawRangeElements")) {
Keith Whitwellcab974c2000-12-26 05:09:27 +0000299 return GL_FALSE;
300 }
301
302 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000303 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000304 return GL_FALSE;
305 }
306
Gareth Hughes22144ab2001-03-12 00:48:37 +0000307 if (type != GL_UNSIGNED_INT &&
308 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000309 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000310 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000311 return GL_FALSE;
312 }
313
Brian Paula48b0a52009-08-14 10:41:03 -0600314 if (!check_valid_to_render(ctx, "glDrawRangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000315 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000316
Brian37ece4d2007-07-08 09:20:42 -0600317 /* Vertex buffer object tests */
Yuanhan Liua0a5bd42011-11-23 15:59:06 +0800318 if (_mesa_is_bufferobj(ctx->Array.ArrayObj->ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100319 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100320 /* make sure count doesn't go outside buffer bounds */
Yuanhan Liua0a5bd42011-11-23 15:59:06 +0800321 if (index_bytes(type, count) > ctx->Array.ArrayObj->ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600322 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100323 return GL_FALSE;
324 }
Brian37ece4d2007-07-08 09:20:42 -0600325 }
326 else {
Briand8c67192007-08-20 13:12:20 +0100327 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600328 if (!indices)
329 return GL_FALSE;
330 }
331
Eric Anholt92d7ed82009-08-27 10:09:24 -0700332 if (!check_index_bounds(ctx, count, type, indices, basevertex))
333 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000334
Brian Paulc5b1e812003-10-22 22:59:07 +0000335 return GL_TRUE;
336}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000337
Brian Paulc5b1e812003-10-22 22:59:07 +0000338
339/**
340 * Called from the tnl module to error check the function parameters and
341 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600342 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000343 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000344GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400345_mesa_validate_DrawArrays(struct gl_context *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000346 GLenum mode, GLint start, GLsizei count)
347{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000348 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000349
Brian5cb20342007-10-31 09:38:51 -0600350 if (count <= 0) {
351 if (count < 0)
352 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000353 return GL_FALSE;
354 }
355
Eric Anholt7ca4f072012-03-14 14:39:15 -0700356 if (!_mesa_valid_prim_mode(ctx, mode, "glDrawArrays")) {
Keith Whitwellcab974c2000-12-26 05:09:27 +0000357 return GL_FALSE;
358 }
359
Brian Paula48b0a52009-08-14 10:41:03 -0600360 if (!check_valid_to_render(ctx, "glDrawArrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000361 return GL_FALSE;
362
363 if (ctx->Const.CheckArrayBounds) {
Brian Paula185bcb2009-05-14 13:24:24 -0600364 if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000365 return GL_FALSE;
366 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000367
368 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000369}
Brian Paulcf3193a2010-04-04 18:18:28 -0600370
371
372GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400373_mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first,
Brian Paul72f25512011-01-17 09:33:47 -0700374 GLsizei count, GLsizei numInstances)
Brian Paulcf3193a2010-04-04 18:18:28 -0600375{
376 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
377
378 if (count <= 0) {
379 if (count < 0)
380 _mesa_error(ctx, GL_INVALID_VALUE,
381 "glDrawArraysInstanced(count=%d)", count);
382 return GL_FALSE;
383 }
384
Eric Anholt767ba602012-02-28 13:33:53 -0800385 if (first < 0) {
386 _mesa_error(ctx, GL_INVALID_VALUE,
387 "glDrawArraysInstanced(start=%d)", first);
388 return GL_FALSE;
389 }
390
Eric Anholt7ca4f072012-03-14 14:39:15 -0700391 if (!_mesa_valid_prim_mode(ctx, mode, "glDrawArraysInstanced")) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600392 return GL_FALSE;
393 }
394
Brian Paul72f25512011-01-17 09:33:47 -0700395 if (numInstances <= 0) {
396 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600397 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700398 "glDrawArraysInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600399 return GL_FALSE;
400 }
401
402 if (!check_valid_to_render(ctx, "glDrawArraysInstanced(invalid to render)"))
403 return GL_FALSE;
404
Brian Paulcf3193a2010-04-04 18:18:28 -0600405 if (ctx->Const.CheckArrayBounds) {
406 if (first + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
407 return GL_FALSE;
408 }
409
410 return GL_TRUE;
411}
412
413
414GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400415_mesa_validate_DrawElementsInstanced(struct gl_context *ctx,
Brian Paulcf3193a2010-04-04 18:18:28 -0600416 GLenum mode, GLsizei count, GLenum type,
Pierre-Eric Pelloux-Prayer09201cc2011-05-31 13:33:54 +0200417 const GLvoid *indices, GLsizei numInstances,
418 GLint basevertex)
Brian Paulcf3193a2010-04-04 18:18:28 -0600419{
420 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
421
422 if (count <= 0) {
423 if (count < 0)
424 _mesa_error(ctx, GL_INVALID_VALUE,
425 "glDrawElementsInstanced(count=%d)", count);
426 return GL_FALSE;
427 }
428
Eric Anholt7ca4f072012-03-14 14:39:15 -0700429 if (!_mesa_valid_prim_mode(ctx, mode, "glDrawElementsInstanced")) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600430 return GL_FALSE;
431 }
432
433 if (type != GL_UNSIGNED_INT &&
434 type != GL_UNSIGNED_BYTE &&
435 type != GL_UNSIGNED_SHORT) {
436 _mesa_error(ctx, GL_INVALID_ENUM,
437 "glDrawElementsInstanced(type=0x%x)", type);
438 return GL_FALSE;
439 }
440
Brian Paul72f25512011-01-17 09:33:47 -0700441 if (numInstances <= 0) {
442 if (numInstances < 0)
Brian Paulcf3193a2010-04-04 18:18:28 -0600443 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul72f25512011-01-17 09:33:47 -0700444 "glDrawElementsInstanced(numInstances=%d)", numInstances);
Brian Paulcf3193a2010-04-04 18:18:28 -0600445 return GL_FALSE;
446 }
447
448 if (!check_valid_to_render(ctx, "glDrawElementsInstanced"))
449 return GL_FALSE;
450
451 /* Vertex buffer object tests */
Yuanhan Liua0a5bd42011-11-23 15:59:06 +0800452 if (_mesa_is_bufferobj(ctx->Array.ArrayObj->ElementArrayBufferObj)) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600453 /* use indices in the buffer object */
454 /* make sure count doesn't go outside buffer bounds */
Yuanhan Liua0a5bd42011-11-23 15:59:06 +0800455 if (index_bytes(type, count) > ctx->Array.ArrayObj->ElementArrayBufferObj->Size) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600456 _mesa_warning(ctx,
457 "glDrawElementsInstanced index out of buffer bounds");
458 return GL_FALSE;
459 }
460 }
461 else {
462 /* not using a VBO */
463 if (!indices)
464 return GL_FALSE;
465 }
466
Pierre-Eric Pelloux-Prayer09201cc2011-05-31 13:33:54 +0200467 if (!check_index_bounds(ctx, count, type, indices, basevertex))
Brian Paulcf3193a2010-04-04 18:18:28 -0600468 return GL_FALSE;
469
470 return GL_TRUE;
471}
Marek Olšák14bb9572011-12-09 17:00:23 +0100472
473
474#if FEATURE_EXT_transform_feedback
475
476GLboolean
477_mesa_validate_DrawTransformFeedback(struct gl_context *ctx,
478 GLenum mode,
479 struct gl_transform_feedback_object *obj)
480{
481 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
482
Eric Anholt7ca4f072012-03-14 14:39:15 -0700483 if (!_mesa_valid_prim_mode(ctx, mode, "glDrawTransformFeedback")) {
Marek Olšák14bb9572011-12-09 17:00:23 +0100484 return GL_FALSE;
485 }
486
487 if (!obj) {
488 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTransformFeedback(name)");
489 return GL_FALSE;
490 }
491
492 if (!obj->EndedAnytime) {
493 _mesa_error(ctx, GL_INVALID_OPERATION, "glDrawTransformFeedback");
494 return GL_FALSE;
495 }
496
497 if (!check_valid_to_render(ctx, "glDrawTransformFeedback")) {
498 return GL_FALSE;
499 }
500
501 return GL_TRUE;
502}
503
504#endif