blob: 4929a9310d48a43243ae9ba8ee17e856ee4118f2 [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"
Keith Whitwellcab974c2000-12-26 05:09:27 +000030#include "mtypes.h"
Eric Anholt92d7ed82009-08-27 10:09:24 -070031#include "vbo/vbo.h"
Keith Whitwell58e99172001-01-05 02:26:48 +000032
Brian Paulbb1fb2a2009-05-06 12:37:10 -060033
34/**
35 * \return number of bytes in array [count] of type.
36 */
37static GLsizei
38index_bytes(GLenum type, GLsizei count)
39{
40 if (type == GL_UNSIGNED_INT) {
41 return count * sizeof(GLuint);
42 }
43 else if (type == GL_UNSIGNED_BYTE) {
44 return count * sizeof(GLubyte);
45 }
46 else {
47 ASSERT(type == GL_UNSIGNED_SHORT);
48 return count * sizeof(GLushort);
49 }
50}
51
52
Briand8c67192007-08-20 13:12:20 +010053/**
Brian Paule5d29eb2009-09-21 14:07:35 -060054 * Find the max index in the given element/index buffer
55 */
56GLuint
Kristian Høgsbergf9995b32010-10-12 12:26:10 -040057_mesa_max_buffer_index(struct gl_context *ctx, GLuint count, GLenum type,
Brian Paule5d29eb2009-09-21 14:07:35 -060058 const void *indices,
59 struct gl_buffer_object *elementBuf)
60{
61 const GLubyte *map = NULL;
62 GLuint max = 0;
63 GLuint i;
64
65 if (_mesa_is_bufferobj(elementBuf)) {
66 /* elements are in a user-defined buffer object. need to map it */
67 map = ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER,
68 GL_READ_ONLY, elementBuf);
69 /* 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) {
91 ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER_ARB, elementBuf);
92 }
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
Kristian Høgsbergf67b0202010-05-24 10:01:38 -0400118#if FEATURE_ES1 || FEATURE_GL
119 case API_OPENGLES:
120 case API_OPENGL:
121 /* For regular OpenGL, only draw if we have vertex positions
122 * (regardless of whether or not we have a vertex program/shader). */
123 if (!ctx->Array.ArrayObj->Vertex.Enabled &&
124 !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
125 return GL_FALSE;
126 break;
127#endif
128
129 default:
130 ASSERT_NO_FEATURE();
131 }
132
Alan Hourihane263b96e2009-01-15 11:51:39 +0000133 return GL_TRUE;
134}
Briand8c67192007-08-20 13:12:20 +0100135
Brian Paule9968eb2010-03-05 12:32:32 -0700136
137/**
138 * Do bounds checking on array element indexes. Check that the vertices
139 * pointed to by the indices don't lie outside buffer object bounds.
140 * \return GL_TRUE if OK, GL_FALSE if any indexed vertex goes is out of bounds
141 */
Eric Anholt92d7ed82009-08-27 10:09:24 -0700142static GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400143check_index_bounds(struct gl_context *ctx, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700144 const GLvoid *indices, GLint basevertex)
145{
146 struct _mesa_prim prim;
147 struct _mesa_index_buffer ib;
148 GLuint min, max;
149
150 /* Only the X Server needs to do this -- otherwise, accessing outside
151 * array/BO bounds allows application termination.
152 */
153 if (!ctx->Const.CheckArrayBounds)
154 return GL_TRUE;
155
156 memset(&prim, 0, sizeof(prim));
157 prim.count = count;
158
159 memset(&ib, 0, sizeof(ib));
160 ib.type = type;
161 ib.ptr = indices;
162 ib.obj = ctx->Array.ElementArrayBufferObj;
163
164 vbo_get_minmax_index(ctx, &prim, &ib, &min, &max);
165
Michel Dänzer391b3962010-03-05 00:15:40 +0100166 if ((int)(min + basevertex) < 0 ||
Eric Anholt92d7ed82009-08-27 10:09:24 -0700167 max + basevertex > ctx->Array.ArrayObj->_MaxElement) {
168 /* the max element is out of bounds of one or more enabled arrays */
Brian Paule9968eb2010-03-05 12:32:32 -0700169 _mesa_warning(ctx, "glDrawElements() index=%u is out of bounds (max=%u)",
170 max, ctx->Array.ArrayObj->_MaxElement);
Eric Anholt92d7ed82009-08-27 10:09:24 -0700171 return GL_FALSE;
172 }
173
174 return GL_TRUE;
175}
Brian Paul88af3f82009-05-06 12:27:38 -0600176
Brian Paule9968eb2010-03-05 12:32:32 -0700177
Brian Paul88af3f82009-05-06 12:27:38 -0600178/**
179 * Error checking for glDrawElements(). Includes parameter checking
180 * and VBO bounds checking.
181 * \return GL_TRUE if OK to render, GL_FALSE if error found
182 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000183GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400184_mesa_validate_DrawElements(struct gl_context *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000185 GLenum mode, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700186 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000187{
Brian Paulcf3193a2010-04-04 18:18:28 -0600188 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000189
190 if (count <= 0) {
191 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000192 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000193 return GL_FALSE;
194 }
195
Zack Rusindf0831f2010-07-10 18:14:47 -0400196 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000197 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000198 return GL_FALSE;
199 }
200
Gareth Hughes22144ab2001-03-12 00:48:37 +0000201 if (type != GL_UNSIGNED_INT &&
202 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000203 type != GL_UNSIGNED_SHORT)
204 {
Brian Paul08836342001-03-03 20:33:27 +0000205 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000206 return GL_FALSE;
207 }
208
Brian Paula48b0a52009-08-14 10:41:03 -0600209 if (!check_valid_to_render(ctx, "glDrawElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000210 return GL_FALSE;
211
Brian Paul03e29a52003-12-04 03:16:27 +0000212 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600213 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100214 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100215 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600216 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000217 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
218 return GL_FALSE;
219 }
Brian Paul03e29a52003-12-04 03:16:27 +0000220 }
Brian37ece4d2007-07-08 09:20:42 -0600221 else {
222 /* not using a VBO */
223 if (!indices)
224 return GL_FALSE;
225 }
Brian Paul03e29a52003-12-04 03:16:27 +0000226
Eric Anholt92d7ed82009-08-27 10:09:24 -0700227 if (!check_index_bounds(ctx, count, type, indices, basevertex))
228 return GL_FALSE;
Xiang, Haihao2394d202007-07-30 23:50:52 +0800229
Keith Whitwellcab974c2000-12-26 05:09:27 +0000230 return GL_TRUE;
231}
232
Brian Paul88af3f82009-05-06 12:27:38 -0600233
234/**
235 * Error checking for glDrawRangeElements(). Includes parameter checking
236 * and VBO bounds checking.
237 * \return GL_TRUE if OK to render, GL_FALSE if error found
238 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000239GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400240_mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000241 GLuint start, GLuint end,
242 GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700243 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000244{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000245 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000246
247 if (count <= 0) {
248 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000249 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000250 return GL_FALSE;
251 }
252
Zack Rusindf0831f2010-07-10 18:14:47 -0400253 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000254 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000255 return GL_FALSE;
256 }
257
258 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000259 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000260 return GL_FALSE;
261 }
262
Gareth Hughes22144ab2001-03-12 00:48:37 +0000263 if (type != GL_UNSIGNED_INT &&
264 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000265 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000266 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000267 return GL_FALSE;
268 }
269
Brian Paula48b0a52009-08-14 10:41:03 -0600270 if (!check_valid_to_render(ctx, "glDrawRangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000271 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000272
Brian37ece4d2007-07-08 09:20:42 -0600273 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600274 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100275 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100276 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600277 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600278 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100279 return GL_FALSE;
280 }
Brian37ece4d2007-07-08 09:20:42 -0600281 }
282 else {
Briand8c67192007-08-20 13:12:20 +0100283 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600284 if (!indices)
285 return GL_FALSE;
286 }
287
Eric Anholt92d7ed82009-08-27 10:09:24 -0700288 if (!check_index_bounds(ctx, count, type, indices, basevertex))
289 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000290
Brian Paulc5b1e812003-10-22 22:59:07 +0000291 return GL_TRUE;
292}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000293
Brian Paulc5b1e812003-10-22 22:59:07 +0000294
295/**
296 * Called from the tnl module to error check the function parameters and
297 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600298 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000299 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000300GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400301_mesa_validate_DrawArrays(struct gl_context *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000302 GLenum mode, GLint start, GLsizei count)
303{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000304 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000305
Brian5cb20342007-10-31 09:38:51 -0600306 if (count <= 0) {
307 if (count < 0)
308 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000309 return GL_FALSE;
310 }
311
Zack Rusindf0831f2010-07-10 18:14:47 -0400312 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paul08836342001-03-03 20:33:27 +0000313 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000314 return GL_FALSE;
315 }
316
Brian Paula48b0a52009-08-14 10:41:03 -0600317 if (!check_valid_to_render(ctx, "glDrawArrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000318 return GL_FALSE;
319
320 if (ctx->Const.CheckArrayBounds) {
Brian Paula185bcb2009-05-14 13:24:24 -0600321 if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000322 return GL_FALSE;
323 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000324
325 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000326}
Brian Paulcf3193a2010-04-04 18:18:28 -0600327
328
329GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400330_mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first,
Brian Paulcf3193a2010-04-04 18:18:28 -0600331 GLsizei count, GLsizei primcount)
332{
333 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
334
335 if (count <= 0) {
336 if (count < 0)
337 _mesa_error(ctx, GL_INVALID_VALUE,
338 "glDrawArraysInstanced(count=%d)", count);
339 return GL_FALSE;
340 }
341
Zack Rusindf0831f2010-07-10 18:14:47 -0400342 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600343 _mesa_error(ctx, GL_INVALID_ENUM,
344 "glDrawArraysInstanced(mode=0x%x)", mode);
345 return GL_FALSE;
346 }
347
348 if (primcount <= 0) {
349 if (primcount < 0)
350 _mesa_error(ctx, GL_INVALID_VALUE,
351 "glDrawArraysInstanced(primcount=%d)", primcount);
352 return GL_FALSE;
353 }
354
355 if (!check_valid_to_render(ctx, "glDrawArraysInstanced(invalid to render)"))
356 return GL_FALSE;
357
358 if (ctx->CompileFlag) {
359 _mesa_error(ctx, GL_INVALID_OPERATION,
360 "glDrawArraysInstanced(display list");
361 return GL_FALSE;
362 }
363
364 if (ctx->Const.CheckArrayBounds) {
365 if (first + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
366 return GL_FALSE;
367 }
368
369 return GL_TRUE;
370}
371
372
373GLboolean
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400374_mesa_validate_DrawElementsInstanced(struct gl_context *ctx,
Brian Paulcf3193a2010-04-04 18:18:28 -0600375 GLenum mode, GLsizei count, GLenum type,
376 const GLvoid *indices, GLsizei primcount)
377{
378 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
379
380 if (count <= 0) {
381 if (count < 0)
382 _mesa_error(ctx, GL_INVALID_VALUE,
383 "glDrawElementsInstanced(count=%d)", count);
384 return GL_FALSE;
385 }
386
Zack Rusindf0831f2010-07-10 18:14:47 -0400387 if (mode > GL_TRIANGLE_STRIP_ADJACENCY_ARB) {
Brian Paulcf3193a2010-04-04 18:18:28 -0600388 _mesa_error(ctx, GL_INVALID_ENUM,
389 "glDrawElementsInstanced(mode = 0x%x)", mode);
390 return GL_FALSE;
391 }
392
393 if (type != GL_UNSIGNED_INT &&
394 type != GL_UNSIGNED_BYTE &&
395 type != GL_UNSIGNED_SHORT) {
396 _mesa_error(ctx, GL_INVALID_ENUM,
397 "glDrawElementsInstanced(type=0x%x)", type);
398 return GL_FALSE;
399 }
400
401 if (primcount <= 0) {
402 if (primcount < 0)
403 _mesa_error(ctx, GL_INVALID_VALUE,
404 "glDrawElementsInstanced(primcount=%d)", primcount);
405 return GL_FALSE;
406 }
407
408 if (!check_valid_to_render(ctx, "glDrawElementsInstanced"))
409 return GL_FALSE;
410
411 /* Vertex buffer object tests */
412 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
413 /* use indices in the buffer object */
414 /* make sure count doesn't go outside buffer bounds */
415 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
416 _mesa_warning(ctx,
417 "glDrawElementsInstanced index out of buffer bounds");
418 return GL_FALSE;
419 }
420 }
421 else {
422 /* not using a VBO */
423 if (!indices)
424 return GL_FALSE;
425 }
426
427 if (!check_index_bounds(ctx, count, type, indices, 0))
428 return GL_FALSE;
429
430 return GL_TRUE;
431}