blob: 3d20ba7d1443c83ad7ff3e4791cf4365870ca0ef [file] [log] [blame]
Keith Whitwellcab974c2000-12-26 05:09:27 +00001/*
2 * Mesa 3-D graphics library
Brian Paul6d460af2004-04-23 14:16:46 +00003 * Version: 6.1
Keith Whitwellcab974c2000-12-26 05:09:27 +00004 *
Brian Paul464bc3b2003-04-21 15:04:30 +00005 * Copyright (C) 1999-2003 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{
Gareth Hughes22144ab2001-03-12 00:48:37 +000038 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +000039
40 if (count <= 0) {
41 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +000042 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000043 return GL_FALSE;
44 }
45
Brian Paul464bc3b2003-04-21 15:04:30 +000046 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +000047 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000048 return GL_FALSE;
49 }
50
Gareth Hughes22144ab2001-03-12 00:48:37 +000051 if (type != GL_UNSIGNED_INT &&
52 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +000053 type != GL_UNSIGNED_SHORT)
54 {
Brian Paul08836342001-03-03 20:33:27 +000055 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000056 return GL_FALSE;
57 }
58
59 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +000060 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +000061
Brian Paula2b9bad2003-11-10 19:08:37 +000062 /* Always need vertex positions */
Ian Romanickee34e6e2006-06-12 16:26:29 +000063 if (!ctx->Array.ArrayObj->Vertex.Enabled
64 && !(ctx->VertexProgram._Enabled && ctx->Array.ArrayObj->VertexAttrib[0].Enabled))
Keith Whitwellcab974c2000-12-26 05:09:27 +000065 return GL_FALSE;
66
Brian Paul03e29a52003-12-04 03:16:27 +000067 /* Vertex buffer object tests */
68 if (ctx->Array.ElementArrayBufferObj->Name) {
69 GLuint indexBytes;
70
71 /* use indices in the buffer object */
72 if (!ctx->Array.ElementArrayBufferObj->Data) {
73 _mesa_warning(ctx, "DrawElements with empty vertex elements buffer!");
74 return GL_FALSE;
75 }
76
77 /* make sure count doesn't go outside buffer bounds */
78 if (type == GL_UNSIGNED_INT) {
79 indexBytes = count * sizeof(GLuint);
80 }
81 else if (type == GL_UNSIGNED_BYTE) {
82 indexBytes = count * sizeof(GLubyte);
83 }
84 else {
85 ASSERT(type == GL_UNSIGNED_SHORT);
86 indexBytes = count * sizeof(GLushort);
87 }
88
89 if ((GLubyte *) indices + indexBytes >
90 ctx->Array.ElementArrayBufferObj->Data +
91 ctx->Array.ElementArrayBufferObj->Size) {
92 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
93 return GL_FALSE;
94 }
95
96 /* Actual address is the sum of pointers. Indices may be used below. */
97 if (ctx->Const.CheckArrayBounds) {
98 indices = (const GLvoid *)
99 ADD_POINTERS(ctx->Array.ElementArrayBufferObj->Data,
100 (const GLubyte *) indices);
101 }
102 }
103
Brian Paula2b9bad2003-11-10 19:08:37 +0000104 if (ctx->Const.CheckArrayBounds) {
105 /* find max array index */
106 GLuint max = 0;
107 GLint i;
108 if (type == GL_UNSIGNED_INT) {
109 for (i = 0; i < count; i++)
110 if (((GLuint *) indices)[i] > max)
111 max = ((GLuint *) indices)[i];
112 }
113 else if (type == GL_UNSIGNED_SHORT) {
114 for (i = 0; i < count; i++)
115 if (((GLushort *) indices)[i] > max)
116 max = ((GLushort *) indices)[i];
117 }
118 else {
119 ASSERT(type == GL_UNSIGNED_BYTE);
120 for (i = 0; i < count; i++)
121 if (((GLubyte *) indices)[i] > max)
122 max = ((GLubyte *) indices)[i];
123 }
124 if (max >= ctx->Array._MaxElement) {
125 /* the max element is out of bounds of one or more enabled arrays */
126 return GL_FALSE;
127 }
128 }
129
Keith Whitwellcab974c2000-12-26 05:09:27 +0000130 return GL_TRUE;
131}
132
133
134GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000135_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
136 GLuint start, GLuint end,
137 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000138 const GLvoid *indices)
139{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000140 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000141
142 if (count <= 0) {
143 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000144 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000145 return GL_FALSE;
146 }
147
Brian Paul464bc3b2003-04-21 15:04:30 +0000148 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000149 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000150 return GL_FALSE;
151 }
152
153 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000154 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000155 return GL_FALSE;
156 }
157
Gareth Hughes22144ab2001-03-12 00:48:37 +0000158 if (type != GL_UNSIGNED_INT &&
159 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000160 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000161 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000162 return GL_FALSE;
163 }
164
165 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000166 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000167
Brian Paula2b9bad2003-11-10 19:08:37 +0000168 /* Always need vertex positions */
Ian Romanickee34e6e2006-06-12 16:26:29 +0000169 if (!ctx->Array.ArrayObj->Vertex.Enabled
170 && !(ctx->VertexProgram._Enabled && ctx->Array.ArrayObj->VertexAttrib[0].Enabled))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000171 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000172
Brian Paula2b9bad2003-11-10 19:08:37 +0000173 if (ctx->Const.CheckArrayBounds) {
174 /* Find max array index.
175 * We don't trust the user's start and end values.
176 */
177 GLuint max = 0;
178 GLint i;
179 if (type == GL_UNSIGNED_INT) {
180 for (i = 0; i < count; i++)
181 if (((GLuint *) indices)[i] > max)
182 max = ((GLuint *) indices)[i];
183 }
184 else if (type == GL_UNSIGNED_SHORT) {
185 for (i = 0; i < count; i++)
186 if (((GLushort *) indices)[i] > max)
187 max = ((GLushort *) indices)[i];
188 }
189 else {
190 ASSERT(type == GL_UNSIGNED_BYTE);
191 for (i = 0; i < count; i++)
192 if (((GLubyte *) indices)[i] > max)
193 max = ((GLubyte *) indices)[i];
194 }
195 if (max >= ctx->Array._MaxElement) {
196 /* the max element is out of bounds of one or more enabled arrays */
197 return GL_FALSE;
198 }
199 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000200
Brian Paulc5b1e812003-10-22 22:59:07 +0000201 return GL_TRUE;
202}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000203
Brian Paulc5b1e812003-10-22 22:59:07 +0000204
205/**
206 * Called from the tnl module to error check the function parameters and
207 * verify that we really can draw something.
208 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000209GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000210_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000211 GLenum mode, GLint start, GLsizei count)
212{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000213 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000214
Brian Paulc5b1e812003-10-22 22:59:07 +0000215 if (count < 0) {
Brian Paul08836342001-03-03 20:33:27 +0000216 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000217 return GL_FALSE;
218 }
219
Brian Paul464bc3b2003-04-21 15:04:30 +0000220 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000221 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000222 return GL_FALSE;
223 }
224
225 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000226 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000227
Brian Paula2b9bad2003-11-10 19:08:37 +0000228 /* Always need vertex positions */
Ian Romanickee34e6e2006-06-12 16:26:29 +0000229 if (!ctx->Array.ArrayObj->Vertex.Enabled && !ctx->Array.ArrayObj->VertexAttrib[0].Enabled)
Brian Paula2b9bad2003-11-10 19:08:37 +0000230 return GL_FALSE;
231
232 if (ctx->Const.CheckArrayBounds) {
Brian Paul2c9f50d2003-11-25 16:21:51 +0000233 if (start + count > (GLint) ctx->Array._MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000234 return GL_FALSE;
235 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000236
237 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000238}