blob: d5c604c56a2e70ee34f92d4f6943ff92bc7724bd [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
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/**
54 * Find the max index in the given element/index buffer
55 */
56static GLuint
57max_buffer_index(GLcontext *ctx, GLuint count, GLenum type,
58 const void *indices,
59 struct gl_buffer_object *elementBuf)
60{
61 const GLubyte *map = NULL;
62 GLuint max = 0;
63 GLint i;
64
65 if (elementBuf->Name) {
66 /* elements are in a user-defined buffer object. need to map it */
Brian Paul88af3f82009-05-06 12:27:38 -060067 map = ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER,
68 GL_READ_ONLY, elementBuf);
Briand8c67192007-08-20 13:12:20 +010069 /* 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) {
Brian Paul88af3f82009-05-06 12:27:38 -060091 ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER_ARB, elementBuf);
Briand8c67192007-08-20 13:12:20 +010092 }
93
94 return max;
95}
96
Brian Paul88af3f82009-05-06 12:27:38 -060097
98/**
99 * Check if OK to render by examining framebuffer status and vertex arrays.
100 */
Alan Hourihane263b96e2009-01-15 11:51:39 +0000101static GLboolean
102check_valid_to_render(GLcontext *ctx, char *function)
103{
104 if (ctx->DrawBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
105 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
106 "glDraw%s(incomplete framebuffer)", function);
107 return GL_FALSE;
108 }
109
Brian Paul97dd2dd2009-03-02 12:27:16 -0700110#if FEATURE_es2_glsl
111 /* For ES2, we can draw if any vertex array is enabled (and we should
112 * always have a vertex program/shader).
113 */
114 if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current)
115 return GL_FALSE;
116#else
117 /* For regular OpenGL, only draw if we have vertex positions (regardless
118 * of whether or not we have a vertex program/shader).
119 */
120 if (!ctx->Array.ArrayObj->Vertex.Enabled &&
Alan Hourihane263b96e2009-01-15 11:51:39 +0000121 !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
122 return GL_FALSE;
Brian Paul97dd2dd2009-03-02 12:27:16 -0700123#endif
Alan Hourihane263b96e2009-01-15 11:51:39 +0000124
125 return GL_TRUE;
126}
Briand8c67192007-08-20 13:12:20 +0100127
Brian Paul88af3f82009-05-06 12:27:38 -0600128
129/**
130 * Error checking for glDrawElements(). Includes parameter checking
131 * and VBO bounds checking.
132 * \return GL_TRUE if OK to render, GL_FALSE if error found
133 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000134GLboolean
135_mesa_validate_DrawElements(GLcontext *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000136 GLenum mode, GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000137 const GLvoid *indices)
138{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000139 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000140
141 if (count <= 0) {
142 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000143 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000144 return GL_FALSE;
145 }
146
Brian Paul464bc3b2003-04-21 15:04:30 +0000147 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000148 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000149 return GL_FALSE;
150 }
151
Gareth Hughes22144ab2001-03-12 00:48:37 +0000152 if (type != GL_UNSIGNED_INT &&
153 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000154 type != GL_UNSIGNED_SHORT)
155 {
Brian Paul08836342001-03-03 20:33:27 +0000156 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000157 return GL_FALSE;
158 }
159
160 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000161 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000162
Alan Hourihane263b96e2009-01-15 11:51:39 +0000163 if (!check_valid_to_render(ctx, "Elements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000164 return GL_FALSE;
165
Brian Paul03e29a52003-12-04 03:16:27 +0000166 /* Vertex buffer object tests */
167 if (ctx->Array.ElementArrayBufferObj->Name) {
Briand8c67192007-08-20 13:12:20 +0100168 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100169 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600170 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000171 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
172 return GL_FALSE;
173 }
Brian Paul03e29a52003-12-04 03:16:27 +0000174 }
Brian37ece4d2007-07-08 09:20:42 -0600175 else {
176 /* not using a VBO */
177 if (!indices)
178 return GL_FALSE;
179 }
Brian Paul03e29a52003-12-04 03:16:27 +0000180
Brian Paula2b9bad2003-11-10 19:08:37 +0000181 if (ctx->Const.CheckArrayBounds) {
182 /* find max array index */
Briand8c67192007-08-20 13:12:20 +0100183 GLuint max = max_buffer_index(ctx, count, type, indices,
184 ctx->Array.ElementArrayBufferObj);
Briana3c3bc92007-08-20 12:55:34 +0100185 if (max >= ctx->Array._MaxElement) {
186 /* the max element is out of bounds of one or more enabled arrays */
Brian Paul87fbc9a2009-05-08 12:44:38 -0600187 _mesa_warning(ctx, "glDrawElements() index=%u is "
188 "out of bounds (max=%u)", max, ctx->Array._MaxElement);
Briana3c3bc92007-08-20 12:55:34 +0100189 return GL_FALSE;
190 }
Xiang, Haihao2394d202007-07-30 23:50:52 +0800191 }
192
Keith Whitwellcab974c2000-12-26 05:09:27 +0000193 return GL_TRUE;
194}
195
Brian Paul88af3f82009-05-06 12:27:38 -0600196
197/**
198 * Error checking for glDrawRangeElements(). Includes parameter checking
199 * and VBO bounds checking.
200 * \return GL_TRUE if OK to render, GL_FALSE if error found
201 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000202GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000203_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
204 GLuint start, GLuint end,
205 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000206 const GLvoid *indices)
207{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000208 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000209
210 if (count <= 0) {
211 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000212 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000213 return GL_FALSE;
214 }
215
Brian Paul464bc3b2003-04-21 15:04:30 +0000216 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000217 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000218 return GL_FALSE;
219 }
220
221 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000222 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000223 return GL_FALSE;
224 }
225
Gareth Hughes22144ab2001-03-12 00:48:37 +0000226 if (type != GL_UNSIGNED_INT &&
227 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000228 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000229 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000230 return GL_FALSE;
231 }
232
233 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000234 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000235
Alan Hourihane263b96e2009-01-15 11:51:39 +0000236 if (!check_valid_to_render(ctx, "RangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000237 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000238
Brian37ece4d2007-07-08 09:20:42 -0600239 /* Vertex buffer object tests */
240 if (ctx->Array.ElementArrayBufferObj->Name) {
Briand8c67192007-08-20 13:12:20 +0100241 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100242 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600243 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600244 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100245 return GL_FALSE;
246 }
Brian37ece4d2007-07-08 09:20:42 -0600247 }
248 else {
Briand8c67192007-08-20 13:12:20 +0100249 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600250 if (!indices)
251 return GL_FALSE;
252 }
253
Brian Paula2b9bad2003-11-10 19:08:37 +0000254 if (ctx->Const.CheckArrayBounds) {
Briand8c67192007-08-20 13:12:20 +0100255 GLuint max = max_buffer_index(ctx, count, type, indices,
256 ctx->Array.ElementArrayBufferObj);
Brian Paula2b9bad2003-11-10 19:08:37 +0000257 if (max >= ctx->Array._MaxElement) {
258 /* the max element is out of bounds of one or more enabled arrays */
259 return GL_FALSE;
260 }
261 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000262
Brian Paulc5b1e812003-10-22 22:59:07 +0000263 return GL_TRUE;
264}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000265
Brian Paulc5b1e812003-10-22 22:59:07 +0000266
267/**
268 * Called from the tnl module to error check the function parameters and
269 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600270 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000271 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000272GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000273_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000274 GLenum mode, GLint start, GLsizei count)
275{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000276 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000277
Brian5cb20342007-10-31 09:38:51 -0600278 if (count <= 0) {
279 if (count < 0)
280 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000281 return GL_FALSE;
282 }
283
Brian Paul464bc3b2003-04-21 15:04:30 +0000284 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000285 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000286 return GL_FALSE;
287 }
288
289 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000290 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000291
Alan Hourihane263b96e2009-01-15 11:51:39 +0000292 if (!check_valid_to_render(ctx, "Arrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000293 return GL_FALSE;
294
295 if (ctx->Const.CheckArrayBounds) {
Brian Paul2c9f50d2003-11-25 16:21:51 +0000296 if (start + count > (GLint) ctx->Array._MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000297 return GL_FALSE;
298 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000299
300 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000301}