blob: e9359dbe5f6608708d338d5f2878f3c645e730cc [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
57_mesa_max_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 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
Brian Paula48b0a52009-08-14 10:41:03 -0600102check_valid_to_render(GLcontext *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
Brian Paul97dd2dd2009-03-02 12:27:16 -0700108#if FEATURE_es2_glsl
109 /* For ES2, we can draw if any vertex array is enabled (and we should
110 * always have a vertex program/shader).
111 */
112 if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current)
113 return GL_FALSE;
114#else
115 /* For regular OpenGL, only draw if we have vertex positions (regardless
116 * of whether or not we have a vertex program/shader).
117 */
118 if (!ctx->Array.ArrayObj->Vertex.Enabled &&
Alan Hourihane263b96e2009-01-15 11:51:39 +0000119 !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
120 return GL_FALSE;
Brian Paul97dd2dd2009-03-02 12:27:16 -0700121#endif
Alan Hourihane263b96e2009-01-15 11:51:39 +0000122
123 return GL_TRUE;
124}
Briand8c67192007-08-20 13:12:20 +0100125
Eric Anholt92d7ed82009-08-27 10:09:24 -0700126static GLboolean
127check_index_bounds(GLcontext *ctx, GLsizei count, GLenum type,
128 const GLvoid *indices, GLint basevertex)
129{
130 struct _mesa_prim prim;
131 struct _mesa_index_buffer ib;
132 GLuint min, max;
133
134 /* Only the X Server needs to do this -- otherwise, accessing outside
135 * array/BO bounds allows application termination.
136 */
137 if (!ctx->Const.CheckArrayBounds)
138 return GL_TRUE;
139
140 memset(&prim, 0, sizeof(prim));
141 prim.count = count;
142
143 memset(&ib, 0, sizeof(ib));
144 ib.type = type;
145 ib.ptr = indices;
146 ib.obj = ctx->Array.ElementArrayBufferObj;
147
148 vbo_get_minmax_index(ctx, &prim, &ib, &min, &max);
149
Michel Dänzer391b3962010-03-05 00:15:40 +0100150 if ((int)(min + basevertex) < 0 ||
Eric Anholt92d7ed82009-08-27 10:09:24 -0700151 max + basevertex > ctx->Array.ArrayObj->_MaxElement) {
152 /* the max element is out of bounds of one or more enabled arrays */
153 _mesa_warning(ctx, "glDrawElements() index=%u is "
154 "out of bounds (max=%u)", max, ctx->Array.ArrayObj->_MaxElement);
155 return GL_FALSE;
156 }
157
158 return GL_TRUE;
159}
Brian Paul88af3f82009-05-06 12:27:38 -0600160
161/**
162 * Error checking for glDrawElements(). Includes parameter checking
163 * and VBO bounds checking.
164 * \return GL_TRUE if OK to render, GL_FALSE if error found
165 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000166GLboolean
167_mesa_validate_DrawElements(GLcontext *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000168 GLenum mode, GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700169 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000170{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000171 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000172
173 if (count <= 0) {
174 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000175 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000176 return GL_FALSE;
177 }
178
Brian Paul464bc3b2003-04-21 15:04:30 +0000179 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000180 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000181 return GL_FALSE;
182 }
183
Gareth Hughes22144ab2001-03-12 00:48:37 +0000184 if (type != GL_UNSIGNED_INT &&
185 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000186 type != GL_UNSIGNED_SHORT)
187 {
Brian Paul08836342001-03-03 20:33:27 +0000188 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000189 return GL_FALSE;
190 }
191
Brian Paula48b0a52009-08-14 10:41:03 -0600192 if (!check_valid_to_render(ctx, "glDrawElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000193 return GL_FALSE;
194
Brian Paul03e29a52003-12-04 03:16:27 +0000195 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600196 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100197 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100198 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600199 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000200 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
201 return GL_FALSE;
202 }
Brian Paul03e29a52003-12-04 03:16:27 +0000203 }
Brian37ece4d2007-07-08 09:20:42 -0600204 else {
205 /* not using a VBO */
206 if (!indices)
207 return GL_FALSE;
208 }
Brian Paul03e29a52003-12-04 03:16:27 +0000209
Eric Anholt92d7ed82009-08-27 10:09:24 -0700210 if (!check_index_bounds(ctx, count, type, indices, basevertex))
211 return GL_FALSE;
Xiang, Haihao2394d202007-07-30 23:50:52 +0800212
Keith Whitwellcab974c2000-12-26 05:09:27 +0000213 return GL_TRUE;
214}
215
Brian Paul88af3f82009-05-06 12:27:38 -0600216
217/**
218 * Error checking for glDrawRangeElements(). Includes parameter checking
219 * and VBO bounds checking.
220 * \return GL_TRUE if OK to render, GL_FALSE if error found
221 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000222GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000223_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
224 GLuint start, GLuint end,
225 GLsizei count, GLenum type,
Eric Anholt92d7ed82009-08-27 10:09:24 -0700226 const GLvoid *indices, GLint basevertex)
Keith Whitwellcab974c2000-12-26 05:09:27 +0000227{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000228 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000229
230 if (count <= 0) {
231 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000232 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000233 return GL_FALSE;
234 }
235
Brian Paul464bc3b2003-04-21 15:04:30 +0000236 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000237 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000238 return GL_FALSE;
239 }
240
241 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000242 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
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 &&
Brian Paul61bac602002-04-21 21:04:46 +0000248 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000249 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000250 return GL_FALSE;
251 }
252
Brian Paula48b0a52009-08-14 10:41:03 -0600253 if (!check_valid_to_render(ctx, "glDrawRangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000254 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000255
Brian37ece4d2007-07-08 09:20:42 -0600256 /* Vertex buffer object tests */
Brian Paul434ec3a2009-08-12 13:46:16 -0600257 if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) {
Briand8c67192007-08-20 13:12:20 +0100258 /* use indices in the buffer object */
Briand8c67192007-08-20 13:12:20 +0100259 /* make sure count doesn't go outside buffer bounds */
Brian Paulbb1fb2a2009-05-06 12:37:10 -0600260 if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600261 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100262 return GL_FALSE;
263 }
Brian37ece4d2007-07-08 09:20:42 -0600264 }
265 else {
Briand8c67192007-08-20 13:12:20 +0100266 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600267 if (!indices)
268 return GL_FALSE;
269 }
270
Eric Anholt92d7ed82009-08-27 10:09:24 -0700271 if (!check_index_bounds(ctx, count, type, indices, basevertex))
272 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000273
Brian Paulc5b1e812003-10-22 22:59:07 +0000274 return GL_TRUE;
275}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000276
Brian Paulc5b1e812003-10-22 22:59:07 +0000277
278/**
279 * Called from the tnl module to error check the function parameters and
280 * verify that we really can draw something.
Brian Paul88af3f82009-05-06 12:27:38 -0600281 * \return GL_TRUE if OK to render, GL_FALSE if error found
Brian Paulc5b1e812003-10-22 22:59:07 +0000282 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000283GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000284_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000285 GLenum mode, GLint start, GLsizei count)
286{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000287 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000288
Brian5cb20342007-10-31 09:38:51 -0600289 if (count <= 0) {
290 if (count < 0)
291 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000292 return GL_FALSE;
293 }
294
Brian Paul464bc3b2003-04-21 15:04:30 +0000295 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000296 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000297 return GL_FALSE;
298 }
299
Brian Paula48b0a52009-08-14 10:41:03 -0600300 if (!check_valid_to_render(ctx, "glDrawArrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000301 return GL_FALSE;
302
303 if (ctx->Const.CheckArrayBounds) {
Brian Paula185bcb2009-05-14 13:24:24 -0600304 if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000305 return GL_FALSE;
306 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000307
308 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000309}