blob: 33f4dd152a72bf5eeac3887ec3cb45e460e5ef45 [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"
Brian Paul8446d1b2001-01-02 21:40:57 +000031#include "state.h"
Keith Whitwellcab974c2000-12-26 05:09:27 +000032
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/**
55 * Find the max index in the given element/index buffer
56 */
57static GLuint
58max_buffer_index(GLcontext *ctx, GLuint count, GLenum type,
59 const void *indices,
60 struct gl_buffer_object *elementBuf)
61{
62 const GLubyte *map = NULL;
63 GLuint max = 0;
José Fonseca37f21172009-06-15 19:17:07 +010064 GLuint i;
Briand8c67192007-08-20 13:12:20 +010065
Brian Paul434ec3a2009-08-12 13:46:16 -060066 if (_mesa_is_bufferobj(elementBuf)) {
Briand8c67192007-08-20 13:12:20 +010067 /* elements are in a user-defined buffer object. need to map it */
Brian Paul88af3f82009-05-06 12:27:38 -060068 map = ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER,
69 GL_READ_ONLY, elementBuf);
Briand8c67192007-08-20 13:12:20 +010070 /* 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) {
Brian Paul88af3f82009-05-06 12:27:38 -060092 ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER_ARB, elementBuf);
Briand8c67192007-08-20 13:12:20 +010093 }
94
95 return max;
96}
97
Brian Paul88af3f82009-05-06 12:27:38 -060098
99/**
100 * Check if OK to render by examining framebuffer status and vertex arrays.
101 */
Alan Hourihane263b96e2009-01-15 11:51:39 +0000102static GLboolean
103check_valid_to_render(GLcontext *ctx, char *function)
104{
105 if (ctx->DrawBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
106 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
107 "glDraw%s(incomplete framebuffer)", function);
108 return GL_FALSE;
109 }
110
Brian Paul97dd2dd2009-03-02 12:27:16 -0700111#if FEATURE_es2_glsl
112 /* For ES2, we can draw if any vertex array is enabled (and we should
113 * always have a vertex program/shader).
114 */
115 if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current)
116 return GL_FALSE;
117#else
118 /* For regular OpenGL, only draw if we have vertex positions (regardless
119 * of whether or not we have a vertex program/shader).
120 */
121 if (!ctx->Array.ArrayObj->Vertex.Enabled &&
Alan Hourihane263b96e2009-01-15 11:51:39 +0000122 !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
123 return GL_FALSE;
Brian Paul97dd2dd2009-03-02 12:27:16 -0700124#endif
Alan Hourihane263b96e2009-01-15 11:51:39 +0000125
126 return GL_TRUE;
127}
Briand8c67192007-08-20 13:12:20 +0100128
Brian Paul88af3f82009-05-06 12:27:38 -0600129
130/**
131 * Error checking for glDrawElements(). Includes parameter checking
132 * and VBO bounds checking.
133 * \return GL_TRUE if OK to render, GL_FALSE if error found
134 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000135GLboolean
136_mesa_validate_DrawElements(GLcontext *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000137 GLenum mode, GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000138 const GLvoid *indices)
139{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000140 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000141
142 if (count <= 0) {
143 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000144 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000145 return GL_FALSE;
146 }
147
Brian Paul464bc3b2003-04-21 15:04:30 +0000148 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000149 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000150 return GL_FALSE;
151 }
152
Gareth Hughes22144ab2001-03-12 00:48:37 +0000153 if (type != GL_UNSIGNED_INT &&
154 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000155 type != GL_UNSIGNED_SHORT)
156 {
Brian Paul08836342001-03-03 20:33:27 +0000157 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000158 return GL_FALSE;
159 }
160
161 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000162 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000163
Alan Hourihane263b96e2009-01-15 11:51:39 +0000164 if (!check_valid_to_render(ctx, "Elements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000165 return GL_FALSE;
166
Brian Paul03e29a52003-12-04 03:16:27 +0000167 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600168 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100169 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100170 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600171 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000172 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
173 return GL_FALSE;
174 }
Brian Paul03e29a52003-12-04 03:16:27 +0000175 }
Brian37ece4d2007-07-08 09:20:42 -0600176 else {
177 /* not using a VBO */
178 if (!indices)
179 return GL_FALSE;
180 }
Brian Paul03e29a52003-12-04 03:16:27 +0000181
Brian Paula2b9bad2003-11-10 19:08:37 +0000182 if (ctx->Const.CheckArrayBounds) {
183 /* find max array index */
Briand8c67192007-08-20 13:12:20 +0100184 GLuint max = max_buffer_index(ctx, count, type, indices,
185 ctx->Array.ElementArrayBufferObj);
Brian Paula185bcb2009-05-14 13:24:24 -0600186 if (max >= ctx->Array.ArrayObj->_MaxElement) {
Briana3c3bc92007-08-20 12:55:34 +0100187 /* the max element is out of bounds of one or more enabled arrays */
Brian Paul87fbc9a2009-05-08 12:44:38 -0600188 _mesa_warning(ctx, "glDrawElements() index=%u is "
Brian Paula185bcb2009-05-14 13:24:24 -0600189 "out of bounds (max=%u)", max, ctx->Array.ArrayObj->_MaxElement);
Briana3c3bc92007-08-20 12:55:34 +0100190 return GL_FALSE;
191 }
Xiang, Haihao2394d202007-07-30 23:50:52 +0800192 }
193
Keith Whitwellcab974c2000-12-26 05:09:27 +0000194 return GL_TRUE;
195}
196
Brian Paul88af3f82009-05-06 12:27:38 -0600197
198/**
199 * Error checking for glDrawRangeElements(). Includes parameter checking
200 * and VBO bounds checking.
201 * \return GL_TRUE if OK to render, GL_FALSE if error found
202 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000203GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000204_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
205 GLuint start, GLuint end,
206 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000207 const GLvoid *indices)
208{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000209 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000210
211 if (count <= 0) {
212 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000213 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000214 return GL_FALSE;
215 }
216
Brian Paul464bc3b2003-04-21 15:04:30 +0000217 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000218 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000219 return GL_FALSE;
220 }
221
222 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000223 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000224 return GL_FALSE;
225 }
226
Gareth Hughes22144ab2001-03-12 00:48:37 +0000227 if (type != GL_UNSIGNED_INT &&
228 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000229 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000230 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000231 return GL_FALSE;
232 }
233
234 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000235 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000236
Alan Hourihane263b96e2009-01-15 11:51:39 +0000237 if (!check_valid_to_render(ctx, "RangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000238 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000239
Brian37ece4d2007-07-08 09:20:42 -0600240 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600241 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100242 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100243 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600244 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600245 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100246 return GL_FALSE;
247 }
Brian37ece4d2007-07-08 09:20:42 -0600248 }
249 else {
Briand8c67192007-08-20 13:12:20 +0100250 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600251 if (!indices)
252 return GL_FALSE;
253 }
254
Brian Paula2b9bad2003-11-10 19:08:37 +0000255 if (ctx->Const.CheckArrayBounds) {
Briand8c67192007-08-20 13:12:20 +0100256 GLuint max = max_buffer_index(ctx, count, type, indices,
257 ctx->Array.ElementArrayBufferObj);
Brian Paula185bcb2009-05-14 13:24:24 -0600258 if (max >= ctx->Array.ArrayObj->_MaxElement) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000259 /* the max element is out of bounds of one or more enabled arrays */
260 return GL_FALSE;
261 }
262 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000263
Brian Paulc5b1e812003-10-22 22:59:07 +0000264 return GL_TRUE;
265}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000266
Brian Paulc5b1e812003-10-22 22:59:07 +0000267
268/**
269 * Called from the tnl module to error check the function parameters and
270 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600271 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000272 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000273GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000274_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000275 GLenum mode, GLint start, GLsizei count)
276{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000277 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000278
Brian5cb20342007-10-31 09:38:51 -0600279 if (count <= 0) {
280 if (count < 0)
281 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000282 return GL_FALSE;
283 }
284
Brian Paul464bc3b2003-04-21 15:04:30 +0000285 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000286 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000287 return GL_FALSE;
288 }
289
290 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000291 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000292
Alan Hourihane263b96e2009-01-15 11:51:39 +0000293 if (!check_valid_to_render(ctx, "Arrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000294 return GL_FALSE;
295
296 if (ctx->Const.CheckArrayBounds) {
Brian Paula185bcb2009-05-14 13:24:24 -0600297 if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000298 return GL_FALSE;
299 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000300
301 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000302}