blob: 5c8955d7c8df8968d5c2d6c82b8d881dafb9eab8 [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 */
47 map = ctx->Driver.MapBuffer(ctx,
48 GL_ELEMENT_ARRAY_BUFFER_ARB,
49 GL_READ_ONLY,
50 elementBuf);
51 /* Actual address is the sum of pointers */
52 indices = (const GLvoid *) ADD_POINTERS(map, (const GLubyte *) indices);
53 }
54
55 if (type == GL_UNSIGNED_INT) {
56 for (i = 0; i < count; i++)
57 if (((GLuint *) indices)[i] > max)
58 max = ((GLuint *) indices)[i];
59 }
60 else if (type == GL_UNSIGNED_SHORT) {
61 for (i = 0; i < count; i++)
62 if (((GLushort *) indices)[i] > max)
63 max = ((GLushort *) indices)[i];
64 }
65 else {
66 ASSERT(type == GL_UNSIGNED_BYTE);
67 for (i = 0; i < count; i++)
68 if (((GLubyte *) indices)[i] > max)
69 max = ((GLubyte *) indices)[i];
70 }
71
72 if (map) {
73 ctx->Driver.UnmapBuffer(ctx,
74 GL_ELEMENT_ARRAY_BUFFER_ARB,
75 ctx->Array.ElementArrayBufferObj);
76 }
77
78 return max;
79}
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
90 /* Always need vertex positions, unless a vertex program is in use */
91 if (!ctx->VertexProgram._Current &&
92 !ctx->Array.ArrayObj->Vertex.Enabled &&
93 !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
94 return GL_FALSE;
95
96 return GL_TRUE;
97}
Briand8c67192007-08-20 13:12:20 +010098
Keith Whitwellcab974c2000-12-26 05:09:27 +000099GLboolean
100_mesa_validate_DrawElements(GLcontext *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +0000101 GLenum mode, GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000102 const GLvoid *indices)
103{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000104 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000105
106 if (count <= 0) {
107 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +0000108 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000109 return GL_FALSE;
110 }
111
Brian Paul464bc3b2003-04-21 15:04:30 +0000112 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000113 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000114 return GL_FALSE;
115 }
116
Gareth Hughes22144ab2001-03-12 00:48:37 +0000117 if (type != GL_UNSIGNED_INT &&
118 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +0000119 type != GL_UNSIGNED_SHORT)
120 {
Brian Paul08836342001-03-03 20:33:27 +0000121 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000122 return GL_FALSE;
123 }
124
125 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000126 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000127
Alan Hourihane263b96e2009-01-15 11:51:39 +0000128 if (!check_valid_to_render(ctx, "Elements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000129 return GL_FALSE;
130
Brian Paul03e29a52003-12-04 03:16:27 +0000131 /* Vertex buffer object tests */
132 if (ctx->Array.ElementArrayBufferObj->Name) {
Briand8c67192007-08-20 13:12:20 +0100133 /* use indices in the buffer object */
Brian Paul03e29a52003-12-04 03:16:27 +0000134 GLuint indexBytes;
135
Brian730df762007-08-20 12:50:34 -0600136 if (!ctx->Array.ElementArrayBufferObj->Size) {
137 _mesa_warning(ctx,
138 "glDrawElements called with empty array elements buffer");
Brian Paul03e29a52003-12-04 03:16:27 +0000139 return GL_FALSE;
140 }
141
Brian Paul03e29a52003-12-04 03:16:27 +0000142 if (type == GL_UNSIGNED_INT) {
143 indexBytes = count * sizeof(GLuint);
144 }
145 else if (type == GL_UNSIGNED_BYTE) {
146 indexBytes = count * sizeof(GLubyte);
147 }
148 else {
149 ASSERT(type == GL_UNSIGNED_SHORT);
150 indexBytes = count * sizeof(GLushort);
151 }
152
Briand8c67192007-08-20 13:12:20 +0100153 /* make sure count doesn't go outside buffer bounds */
José Fonseca53174af2008-05-31 18:14:09 +0900154 if (indexBytes > (GLuint) ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +0000155 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
156 return GL_FALSE;
157 }
Brian Paul03e29a52003-12-04 03:16:27 +0000158 }
Brian37ece4d2007-07-08 09:20:42 -0600159 else {
160 /* not using a VBO */
161 if (!indices)
162 return GL_FALSE;
163 }
Brian Paul03e29a52003-12-04 03:16:27 +0000164
Brian Paula2b9bad2003-11-10 19:08:37 +0000165 if (ctx->Const.CheckArrayBounds) {
166 /* find max array index */
Briand8c67192007-08-20 13:12:20 +0100167 GLuint max = max_buffer_index(ctx, count, type, indices,
168 ctx->Array.ElementArrayBufferObj);
Briana3c3bc92007-08-20 12:55:34 +0100169 if (max >= ctx->Array._MaxElement) {
170 /* the max element is out of bounds of one or more enabled arrays */
171 return GL_FALSE;
172 }
Xiang, Haihao2394d202007-07-30 23:50:52 +0800173 }
174
Keith Whitwellcab974c2000-12-26 05:09:27 +0000175 return GL_TRUE;
176}
177
Keith Whitwellcab974c2000-12-26 05:09:27 +0000178GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000179_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
180 GLuint start, GLuint end,
181 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000182 const GLvoid *indices)
183{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000184 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000185
186 if (count <= 0) {
187 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000188 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000189 return GL_FALSE;
190 }
191
Brian Paul464bc3b2003-04-21 15:04:30 +0000192 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000193 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000194 return GL_FALSE;
195 }
196
197 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000198 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000199 return GL_FALSE;
200 }
201
Gareth Hughes22144ab2001-03-12 00:48:37 +0000202 if (type != GL_UNSIGNED_INT &&
203 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000204 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000205 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000206 return GL_FALSE;
207 }
208
209 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000210 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000211
Alan Hourihane263b96e2009-01-15 11:51:39 +0000212 if (!check_valid_to_render(ctx, "RangeElements"))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000213 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000214
Brian37ece4d2007-07-08 09:20:42 -0600215 /* Vertex buffer object tests */
216 if (ctx->Array.ElementArrayBufferObj->Name) {
Briand8c67192007-08-20 13:12:20 +0100217 /* use indices in the buffer object */
218 GLuint indexBytes;
219
220 if (type == GL_UNSIGNED_INT) {
221 indexBytes = count * sizeof(GLuint);
222 }
223 else if (type == GL_UNSIGNED_BYTE) {
224 indexBytes = count * sizeof(GLubyte);
225 }
226 else {
227 ASSERT(type == GL_UNSIGNED_SHORT);
228 indexBytes = count * sizeof(GLushort);
229 }
230
231 /* make sure count doesn't go outside buffer bounds */
232 if (indexBytes > ctx->Array.ElementArrayBufferObj->Size) {
Brianef5935b2007-09-23 13:56:46 -0600233 _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds");
Briand8c67192007-08-20 13:12:20 +0100234 return GL_FALSE;
235 }
Brian37ece4d2007-07-08 09:20:42 -0600236 }
237 else {
Briand8c67192007-08-20 13:12:20 +0100238 /* not using a VBO */
Brian37ece4d2007-07-08 09:20:42 -0600239 if (!indices)
240 return GL_FALSE;
241 }
242
Brian Paula2b9bad2003-11-10 19:08:37 +0000243 if (ctx->Const.CheckArrayBounds) {
Briand8c67192007-08-20 13:12:20 +0100244 GLuint max = max_buffer_index(ctx, count, type, indices,
245 ctx->Array.ElementArrayBufferObj);
Brian Paula2b9bad2003-11-10 19:08:37 +0000246 if (max >= ctx->Array._MaxElement) {
247 /* the max element is out of bounds of one or more enabled arrays */
248 return GL_FALSE;
249 }
250 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000251
Brian Paulc5b1e812003-10-22 22:59:07 +0000252 return GL_TRUE;
253}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000254
Brian Paulc5b1e812003-10-22 22:59:07 +0000255
256/**
257 * Called from the tnl module to error check the function parameters and
258 * verify that we really can draw something.
259 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000260GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000261_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000262 GLenum mode, GLint start, GLsizei count)
263{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000264 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000265
Brian5cb20342007-10-31 09:38:51 -0600266 if (count <= 0) {
267 if (count < 0)
268 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000269 return GL_FALSE;
270 }
271
Brian Paul464bc3b2003-04-21 15:04:30 +0000272 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000273 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000274 return GL_FALSE;
275 }
276
277 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000278 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000279
Alan Hourihane263b96e2009-01-15 11:51:39 +0000280 if (!check_valid_to_render(ctx, "Arrays"))
Brian Paula2b9bad2003-11-10 19:08:37 +0000281 return GL_FALSE;
282
283 if (ctx->Const.CheckArrayBounds) {
Brian Paul2c9f50d2003-11-25 16:21:51 +0000284 if (start + count > (GLint) ctx->Array._MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000285 return GL_FALSE;
286 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000287
288 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000289}