blob: 18dead61c3aa192bb85bb24335f27b97880640a0 [file] [log] [blame]
Keith Whitwellcab974c2000-12-26 05:09:27 +00001/*
2 * Mesa 3-D graphics library
Brian37ece4d2007-07-08 09:20:42 -06003 * Version: 7.0.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
Keith Whitwellcab974c2000-12-26 05:09:27 +000033GLboolean
34_mesa_validate_DrawElements(GLcontext *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +000035 GLenum mode, GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +000036 const GLvoid *indices)
37{
Xiang, Haihao2394d202007-07-30 23:50:52 +080038 GLboolean mapped = GL_FALSE;
Gareth Hughes22144ab2001-03-12 00:48:37 +000039 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +000040
41 if (count <= 0) {
42 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +000043 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000044 return GL_FALSE;
45 }
46
Brian Paul464bc3b2003-04-21 15:04:30 +000047 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +000048 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000049 return GL_FALSE;
50 }
51
Gareth Hughes22144ab2001-03-12 00:48:37 +000052 if (type != GL_UNSIGNED_INT &&
53 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +000054 type != GL_UNSIGNED_SHORT)
55 {
Brian Paul08836342001-03-03 20:33:27 +000056 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000057 return GL_FALSE;
58 }
59
60 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +000061 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +000062
Brian Paula2b9bad2003-11-10 19:08:37 +000063 /* Always need vertex positions */
Ian Romanickee34e6e2006-06-12 16:26:29 +000064 if (!ctx->Array.ArrayObj->Vertex.Enabled
65 && !(ctx->VertexProgram._Enabled && ctx->Array.ArrayObj->VertexAttrib[0].Enabled))
Keith Whitwellcab974c2000-12-26 05:09:27 +000066 return GL_FALSE;
67
Brian Paul03e29a52003-12-04 03:16:27 +000068 /* Vertex buffer object tests */
69 if (ctx->Array.ElementArrayBufferObj->Name) {
70 GLuint indexBytes;
Xiang, Haihao2394d202007-07-30 23:50:52 +080071 const GLvoid *map = ctx->Driver.MapBuffer(ctx,
72 GL_ELEMENT_ARRAY_BUFFER_ARB,
73 GL_READ_ONLY,
74 ctx->Array.ElementArrayBufferObj);
Brian Paul03e29a52003-12-04 03:16:27 +000075
76 /* use indices in the buffer object */
Xiang, Haihao2394d202007-07-30 23:50:52 +080077 if (!map) {
Brian Paul03e29a52003-12-04 03:16:27 +000078 _mesa_warning(ctx, "DrawElements with empty vertex elements buffer!");
79 return GL_FALSE;
80 }
81
Xiang, Haihao2394d202007-07-30 23:50:52 +080082 mapped = GL_TRUE;
83
Brian Paul03e29a52003-12-04 03:16:27 +000084 /* make sure count doesn't go outside buffer bounds */
85 if (type == GL_UNSIGNED_INT) {
86 indexBytes = count * sizeof(GLuint);
87 }
88 else if (type == GL_UNSIGNED_BYTE) {
89 indexBytes = count * sizeof(GLubyte);
90 }
91 else {
92 ASSERT(type == GL_UNSIGNED_SHORT);
93 indexBytes = count * sizeof(GLushort);
94 }
95
Xiang, Haihao2394d202007-07-30 23:50:52 +080096 if (ADD_POINTERS(map, indices) + indexBytes >
97 (GLubyte *)map + ctx->Array.ElementArrayBufferObj->Size) {
Brian Paul03e29a52003-12-04 03:16:27 +000098 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
Xiang, Haihao2394d202007-07-30 23:50:52 +080099 ctx->Driver.UnmapBuffer(ctx,
100 GL_ELEMENT_ARRAY_BUFFER_ARB,
101 ctx->Array.ElementArrayBufferObj);
Brian Paul03e29a52003-12-04 03:16:27 +0000102 return GL_FALSE;
103 }
104
105 /* Actual address is the sum of pointers. Indices may be used below. */
106 if (ctx->Const.CheckArrayBounds) {
Xiang, Haihao2394d202007-07-30 23:50:52 +0800107 indices = ADD_POINTERS(map, indices);
Brian Paul03e29a52003-12-04 03:16:27 +0000108 }
109 }
Brian37ece4d2007-07-08 09:20:42 -0600110 else {
111 /* not using a VBO */
112 if (!indices)
113 return GL_FALSE;
114 }
Brian Paul03e29a52003-12-04 03:16:27 +0000115
Brian Paula2b9bad2003-11-10 19:08:37 +0000116 if (ctx->Const.CheckArrayBounds) {
117 /* find max array index */
118 GLuint max = 0;
119 GLint i;
120 if (type == GL_UNSIGNED_INT) {
121 for (i = 0; i < count; i++)
122 if (((GLuint *) indices)[i] > max)
123 max = ((GLuint *) indices)[i];
124 }
125 else if (type == GL_UNSIGNED_SHORT) {
126 for (i = 0; i < count; i++)
127 if (((GLushort *) indices)[i] > max)
128 max = ((GLushort *) indices)[i];
129 }
130 else {
131 ASSERT(type == GL_UNSIGNED_BYTE);
132 for (i = 0; i < count; i++)
133 if (((GLubyte *) indices)[i] > max)
134 max = ((GLubyte *) indices)[i];
135 }
Xiang, Haihao2394d202007-07-30 23:50:52 +0800136
Brian Paula2b9bad2003-11-10 19:08:37 +0000137 if (max >= ctx->Array._MaxElement) {
138 /* the max element is out of bounds of one or more enabled arrays */
Xiang, Haihao2394d202007-07-30 23:50:52 +0800139 if (mapped) {
140 ctx->Driver.UnmapBuffer(ctx,
141 GL_ELEMENT_ARRAY_BUFFER_ARB,
142 ctx->Array.ElementArrayBufferObj);
143 }
144
Brian Paula2b9bad2003-11-10 19:08:37 +0000145 return GL_FALSE;
146 }
147 }
148
Xiang, Haihao2394d202007-07-30 23:50:52 +0800149 if (mapped) {
150 ctx->Driver.UnmapBuffer(ctx,
151 GL_ELEMENT_ARRAY_BUFFER_ARB,
152 ctx->Array.ElementArrayBufferObj);
153 }
154
Keith Whitwellcab974c2000-12-26 05:09:27 +0000155 return GL_TRUE;
156}
157
158
159GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000160_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
161 GLuint start, GLuint end,
162 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000163 const GLvoid *indices)
164{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000165 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000166
167 if (count <= 0) {
168 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000169 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000170 return GL_FALSE;
171 }
172
Brian Paul464bc3b2003-04-21 15:04:30 +0000173 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000174 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000175 return GL_FALSE;
176 }
177
178 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000179 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000180 return GL_FALSE;
181 }
182
Gareth Hughes22144ab2001-03-12 00:48:37 +0000183 if (type != GL_UNSIGNED_INT &&
184 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000185 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000186 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000187 return GL_FALSE;
188 }
189
190 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000191 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000192
Brian Paula2b9bad2003-11-10 19:08:37 +0000193 /* Always need vertex positions */
Ian Romanickee34e6e2006-06-12 16:26:29 +0000194 if (!ctx->Array.ArrayObj->Vertex.Enabled
195 && !(ctx->VertexProgram._Enabled && ctx->Array.ArrayObj->VertexAttrib[0].Enabled))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000196 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000197
Brian37ece4d2007-07-08 09:20:42 -0600198 /* Vertex buffer object tests */
199 if (ctx->Array.ElementArrayBufferObj->Name) {
200 /* XXX re-use code from above? */
201 }
202 else {
203 /* not using VBO */
204 if (!indices)
205 return GL_FALSE;
206 }
207
Brian Paula2b9bad2003-11-10 19:08:37 +0000208 if (ctx->Const.CheckArrayBounds) {
209 /* Find max array index.
210 * We don't trust the user's start and end values.
211 */
212 GLuint max = 0;
213 GLint i;
214 if (type == GL_UNSIGNED_INT) {
215 for (i = 0; i < count; i++)
216 if (((GLuint *) indices)[i] > max)
217 max = ((GLuint *) indices)[i];
218 }
219 else if (type == GL_UNSIGNED_SHORT) {
220 for (i = 0; i < count; i++)
221 if (((GLushort *) indices)[i] > max)
222 max = ((GLushort *) indices)[i];
223 }
224 else {
225 ASSERT(type == GL_UNSIGNED_BYTE);
226 for (i = 0; i < count; i++)
227 if (((GLubyte *) indices)[i] > max)
228 max = ((GLubyte *) indices)[i];
229 }
230 if (max >= ctx->Array._MaxElement) {
231 /* the max element is out of bounds of one or more enabled arrays */
232 return GL_FALSE;
233 }
234 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000235
Brian Paulc5b1e812003-10-22 22:59:07 +0000236 return GL_TRUE;
237}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000238
Brian Paulc5b1e812003-10-22 22:59:07 +0000239
240/**
241 * Called from the tnl module to error check the function parameters and
242 * verify that we really can draw something.
243 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000244GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000245_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000246 GLenum mode, GLint start, GLsizei count)
247{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000248 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000249
Brian Paulc5b1e812003-10-22 22:59:07 +0000250 if (count < 0) {
Brian Paul08836342001-03-03 20:33:27 +0000251 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000252 return GL_FALSE;
253 }
254
Brian Paul464bc3b2003-04-21 15:04:30 +0000255 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000256 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000257 return GL_FALSE;
258 }
259
260 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000261 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000262
Brian Paula2b9bad2003-11-10 19:08:37 +0000263 /* Always need vertex positions */
Ian Romanickee34e6e2006-06-12 16:26:29 +0000264 if (!ctx->Array.ArrayObj->Vertex.Enabled && !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
Brian Paula2b9bad2003-11-10 19:08:37 +0000265 return GL_FALSE;
266
267 if (ctx->Const.CheckArrayBounds) {
Brian Paul2c9f50d2003-11-25 16:21:51 +0000268 if (start + count > (GLint) ctx->Array._MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000269 return GL_FALSE;
270 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000271
272 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000273}