blob: dfe754dee59530dd71f0ea690c1aac0d550a08b7 [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"
Keith Whitwellcab974c2000-12-26 05:09:27 +000027#include "context.h"
Brian Paul3c634522002-10-24 23:57:19 +000028#include "imports.h"
Keith Whitwellcab974c2000-12-26 05:09:27 +000029#include "mtypes.h"
Brian Paul8446d1b2001-01-02 21:40:57 +000030#include "state.h"
Keith Whitwellcab974c2000-12-26 05:09:27 +000031
Keith Whitwell58e99172001-01-05 02:26:48 +000032
Briand8c67192007-08-20 13:12:20 +010033/**
34 * Find the max index in the given element/index buffer
35 */
36static GLuint
37max_buffer_index(GLcontext *ctx, GLuint count, GLenum type,
38 const void *indices,
39 struct gl_buffer_object *elementBuf)
40{
41 const GLubyte *map = NULL;
42 GLuint max = 0;
43 GLint i;
44
45 if (elementBuf->Name) {
46 /* elements are in a user-defined buffer object. need to map it */
Brian Paul88af3f82009-05-06 12:27:38 -060047 map = ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER,
48 GL_READ_ONLY, elementBuf);
Briand8c67192007-08-20 13:12:20 +010049 /* Actual address is the sum of pointers */
50 indices = (const GLvoid *) ADD_POINTERS(map, (const GLubyte *) indices);
51 }
52
53 if (type == GL_UNSIGNED_INT) {
54 for (i = 0; i < count; i++)
55 if (((GLuint *) indices)[i] > max)
56 max = ((GLuint *) indices)[i];
57 }
58 else if (type == GL_UNSIGNED_SHORT) {
59 for (i = 0; i < count; i++)
60 if (((GLushort *) indices)[i] > max)
61 max = ((GLushort *) indices)[i];
62 }
63 else {
64 ASSERT(type == GL_UNSIGNED_BYTE);
65 for (i = 0; i < count; i++)
66 if (((GLubyte *) indices)[i] > max)
67 max = ((GLubyte *) indices)[i];
68 }
69
70 if (map) {
Brian Paul88af3f82009-05-06 12:27:38 -060071 ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER_ARB, elementBuf);
Briand8c67192007-08-20 13:12:20 +010072 }
73
74 return max;
75}
76
Brian Paul88af3f82009-05-06 12:27:38 -060077
78/**
79 * Check if OK to render by examining framebuffer status and vertex arrays.
80 */
Alan Hourihane263b96e2009-01-15 11:51:39 +000081static GLboolean
82check_valid_to_render(GLcontext *ctx, char *function)
83{
84 if (ctx->DrawBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
85 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
86 "glDraw%s(incomplete framebuffer)", function);
87 return GL_FALSE;
88 }
89
Brian Paul97dd2dd2009-03-02 12:27:16 -070090#if FEATURE_es2_glsl
91 /* For ES2, we can draw if any vertex array is enabled (and we should
92 * always have a vertex program/shader).
93 */
94 if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current)
95 return GL_FALSE;
96#else
97 /* For regular OpenGL, only draw if we have vertex positions (regardless
98 * of whether or not we have a vertex program/shader).
99 */
100 if (!ctx->Array.ArrayObj->Vertex.Enabled &&
Alan Hourihane263b96e2009-01-15 11:51:39 +0000101 !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
102 return GL_FALSE;
Brian Paul97dd2dd2009-03-02 12:27:16 -0700103#endif
Alan Hourihane263b96e2009-01-15 11:51:39 +0000104
105 return GL_TRUE;
106}
Briand8c67192007-08-20 13:12:20 +0100107
Brian Paul88af3f82009-05-06 12:27:38 -0600108
109/**
110 * Error checking for glDrawElements(). Includes parameter checking
111 * and VBO bounds checking.
112 * \return GL_TRUE if OK to render, GL_FALSE if error found
113 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000114GLboolean
115_mesa_validate_DrawElements(GLcontext *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000116 GLenum mode, GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000117 const GLvoid *indices)
118{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000119 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000120
121 if (count <= 0) {
122 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000123 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000124 return GL_FALSE;
125 }
126
Brian Paul464bc3b2003-04-21 15:04:30 +0000127 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000128 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000129 return GL_FALSE;
130 }
131
Gareth Hughes22144ab2001-03-12 00:48:37 +0000132 if (type != GL_UNSIGNED_INT &&
133 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000134 type != GL_UNSIGNED_SHORT)
135 {
Brian Paul08836342001-03-03 20:33:27 +0000136 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000137 return GL_FALSE;
138 }
139
140 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000141 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000142
Alan Hourihane263b96e2009-01-15 11:51:39 +0000143 if (!check_valid_to_render(ctx, "Elements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000144 return GL_FALSE;
145
Brian Paul03e29a52003-12-04 03:16:27 +0000146 /* Vertex buffer object tests */
147 if (ctx->Array.ElementArrayBufferObj->Name) {
Briand8c67192007-08-20 13:12:20 +0100148 /* use indices in the buffer object */
Brian Paul03e29a52003-12-04 03:16:27 +0000149 GLuint indexBytes;
150
Brian730df762007-08-20 12:50:34 -0600151 if (!ctx->Array.ElementArrayBufferObj->Size) {
152 _mesa_warning(ctx,
153 "glDrawElements called with empty array elements buffer");
Brian Paul03e29a52003-12-04 03:16:27 +0000154 return GL_FALSE;
155 }
156
Brian Paul03e29a52003-12-04 03:16:27 +0000157 if (type == GL_UNSIGNED_INT) {
158 indexBytes = count * sizeof(GLuint);
159 }
160 else if (type == GL_UNSIGNED_BYTE) {
161 indexBytes = count * sizeof(GLubyte);
162 }
163 else {
164 ASSERT(type == GL_UNSIGNED_SHORT);
165 indexBytes = count * sizeof(GLushort);
166 }
167
Briand8c67192007-08-20 13:12:20 +0100168 /* make sure count doesn't go outside buffer bounds */
José Fonseca53174af2008-05-31 18:14:09 +0900169 if (indexBytes > (GLuint) ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000170 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
171 return GL_FALSE;
172 }
Brian Paul03e29a52003-12-04 03:16:27 +0000173 }
Brian37ece4d2007-07-08 09:20:42 -0600174 else {
175 /* not using a VBO */
176 if (!indices)
177 return GL_FALSE;
178 }
Brian Paul03e29a52003-12-04 03:16:27 +0000179
Brian Paula2b9bad2003-11-10 19:08:37 +0000180 if (ctx->Const.CheckArrayBounds) {
181 /* find max array index */
Briand8c67192007-08-20 13:12:20 +0100182 GLuint max = max_buffer_index(ctx, count, type, indices,
183 ctx->Array.ElementArrayBufferObj);
Briana3c3bc92007-08-20 12:55:34 +0100184 if (max >= ctx->Array._MaxElement) {
185 /* the max element is out of bounds of one or more enabled arrays */
186 return GL_FALSE;
187 }
Xiang, Haihao2394d202007-07-30 23:50:52 +0800188 }
189
Keith Whitwellcab974c2000-12-26 05:09:27 +0000190 return GL_TRUE;
191}
192
Brian Paul88af3f82009-05-06 12:27:38 -0600193
194/**
195 * Error checking for glDrawRangeElements(). Includes parameter checking
196 * and VBO bounds checking.
197 * \return GL_TRUE if OK to render, GL_FALSE if error found
198 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000199GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000200_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
201 GLuint start, GLuint end,
202 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000203 const GLvoid *indices)
204{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000205 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000206
207 if (count <= 0) {
208 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000209 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000210 return GL_FALSE;
211 }
212
Brian Paul464bc3b2003-04-21 15:04:30 +0000213 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000214 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000215 return GL_FALSE;
216 }
217
218 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000219 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000220 return GL_FALSE;
221 }
222
Gareth Hughes22144ab2001-03-12 00:48:37 +0000223 if (type != GL_UNSIGNED_INT &&
224 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000225 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000226 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000227 return GL_FALSE;
228 }
229
230 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000231 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000232
Alan Hourihane263b96e2009-01-15 11:51:39 +0000233 if (!check_valid_to_render(ctx, "RangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000234 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000235
Brian37ece4d2007-07-08 09:20:42 -0600236 /* Vertex buffer object tests */
237 if (ctx->Array.ElementArrayBufferObj->Name) {
Briand8c67192007-08-20 13:12:20 +0100238 /* use indices in the buffer object */
239 GLuint indexBytes;
240
241 if (type == GL_UNSIGNED_INT) {
242 indexBytes = count * sizeof(GLuint);
243 }
244 else if (type == GL_UNSIGNED_BYTE) {
245 indexBytes = count * sizeof(GLubyte);
246 }
247 else {
248 ASSERT(type == GL_UNSIGNED_SHORT);
249 indexBytes = count * sizeof(GLushort);
250 }
251
252 /* make sure count doesn't go outside buffer bounds */
253 if (indexBytes > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600254 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100255 return GL_FALSE;
256 }
Brian37ece4d2007-07-08 09:20:42 -0600257 }
258 else {
Briand8c67192007-08-20 13:12:20 +0100259 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600260 if (!indices)
261 return GL_FALSE;
262 }
263
Brian Paula2b9bad2003-11-10 19:08:37 +0000264 if (ctx->Const.CheckArrayBounds) {
Briand8c67192007-08-20 13:12:20 +0100265 GLuint max = max_buffer_index(ctx, count, type, indices,
266 ctx->Array.ElementArrayBufferObj);
Brian Paula2b9bad2003-11-10 19:08:37 +0000267 if (max >= ctx->Array._MaxElement) {
268 /* the max element is out of bounds of one or more enabled arrays */
269 return GL_FALSE;
270 }
271 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000272
Brian Paulc5b1e812003-10-22 22:59:07 +0000273 return GL_TRUE;
274}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000275
Brian Paulc5b1e812003-10-22 22:59:07 +0000276
277/**
278 * Called from the tnl module to error check the function parameters and
279 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600280 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000281 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000282GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000283_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000284 GLenum mode, GLint start, GLsizei count)
285{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000286 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000287
Brian5cb20342007-10-31 09:38:51 -0600288 if (count <= 0) {
289 if (count < 0)
290 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000291 return GL_FALSE;
292 }
293
Brian Paul464bc3b2003-04-21 15:04:30 +0000294 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000295 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000296 return GL_FALSE;
297 }
298
299 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000300 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000301
Alan Hourihane263b96e2009-01-15 11:51:39 +0000302 if (!check_valid_to_render(ctx, "Arrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000303 return GL_FALSE;
304
305 if (ctx->Const.CheckArrayBounds) {
Brian Paul2c9f50d2003-11-25 16:21:51 +0000306 if (start + count > (GLint) ctx->Array._MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000307 return GL_FALSE;
308 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000309
310 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000311}