blob: 4e09c2855a549ea44fd8610474e3056da8325b9f [file] [log] [blame]
Ian Romanick9ac51f52003-06-05 00:50:18 +00001
Keith Whitwellcab974c2000-12-26 05:09:27 +00002/*
3 * Mesa 3-D graphics library
Brian Paul464bc3b2003-04-21 15:04:30 +00004 * Version: 5.1
Keith Whitwellcab974c2000-12-26 05:09:27 +00005 *
Brian Paul464bc3b2003-04-21 15:04:30 +00006 * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
Keith Whitwellcab974c2000-12-26 05:09:27 +00007 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26#include "glheader.h"
Brian Paul8446d1b2001-01-02 21:40:57 +000027#include "api_validate.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"
Brian Paul8446d1b2001-01-02 21:40:57 +000031#include "state.h"
Keith Whitwellcab974c2000-12-26 05:09:27 +000032
Keith Whitwell58e99172001-01-05 02:26:48 +000033
Keith Whitwellcab974c2000-12-26 05:09:27 +000034GLboolean
35_mesa_validate_DrawElements(GLcontext *ctx,
Gareth Hughes22144ab2001-03-12 00:48:37 +000036 GLenum mode, GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +000037 const GLvoid *indices)
38{
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 */
64 if (!ctx->Array.Vertex.Enabled
65 && !(ctx->VertexProgram.Enabled && ctx->Array.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;
71
72 /* use indices in the buffer object */
73 if (!ctx->Array.ElementArrayBufferObj->Data) {
74 _mesa_warning(ctx, "DrawElements with empty vertex elements buffer!");
75 return GL_FALSE;
76 }
77
78 /* make sure count doesn't go outside buffer bounds */
79 if (type == GL_UNSIGNED_INT) {
80 indexBytes = count * sizeof(GLuint);
81 }
82 else if (type == GL_UNSIGNED_BYTE) {
83 indexBytes = count * sizeof(GLubyte);
84 }
85 else {
86 ASSERT(type == GL_UNSIGNED_SHORT);
87 indexBytes = count * sizeof(GLushort);
88 }
89
90 if ((GLubyte *) indices + indexBytes >
91 ctx->Array.ElementArrayBufferObj->Data +
92 ctx->Array.ElementArrayBufferObj->Size) {
93 _mesa_warning(ctx, "glDrawElements index out of buffer bounds");
94 return GL_FALSE;
95 }
96
97 /* Actual address is the sum of pointers. Indices may be used below. */
98 if (ctx->Const.CheckArrayBounds) {
99 indices = (const GLvoid *)
100 ADD_POINTERS(ctx->Array.ElementArrayBufferObj->Data,
101 (const GLubyte *) indices);
102 }
103 }
104
Brian Paula2b9bad2003-11-10 19:08:37 +0000105 if (ctx->Const.CheckArrayBounds) {
106 /* find max array index */
107 GLuint max = 0;
108 GLint i;
109 if (type == GL_UNSIGNED_INT) {
110 for (i = 0; i < count; i++)
111 if (((GLuint *) indices)[i] > max)
112 max = ((GLuint *) indices)[i];
113 }
114 else if (type == GL_UNSIGNED_SHORT) {
115 for (i = 0; i < count; i++)
116 if (((GLushort *) indices)[i] > max)
117 max = ((GLushort *) indices)[i];
118 }
119 else {
120 ASSERT(type == GL_UNSIGNED_BYTE);
121 for (i = 0; i < count; i++)
122 if (((GLubyte *) indices)[i] > max)
123 max = ((GLubyte *) indices)[i];
124 }
125 if (max >= ctx->Array._MaxElement) {
126 /* the max element is out of bounds of one or more enabled arrays */
127 return GL_FALSE;
128 }
129 }
130
Keith Whitwellcab974c2000-12-26 05:09:27 +0000131 return GL_TRUE;
132}
133
134
135GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000136_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
137 GLuint start, GLuint end,
138 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000139 const GLvoid *indices)
140{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000141 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000142
143 if (count <= 0) {
144 if (count < 0)
Brian Paula2b9bad2003-11-10 19:08:37 +0000145 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000146 return GL_FALSE;
147 }
148
Brian Paul464bc3b2003-04-21 15:04:30 +0000149 if (mode > GL_POLYGON) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000150 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000151 return GL_FALSE;
152 }
153
154 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +0000155 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +0000156 return GL_FALSE;
157 }
158
Gareth Hughes22144ab2001-03-12 00:48:37 +0000159 if (type != GL_UNSIGNED_INT &&
160 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000161 type != GL_UNSIGNED_SHORT) {
Brian Paula2b9bad2003-11-10 19:08:37 +0000162 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000163 return GL_FALSE;
164 }
165
166 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000167 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000168
Brian Paula2b9bad2003-11-10 19:08:37 +0000169 /* Always need vertex positions */
170 if (!ctx->Array.Vertex.Enabled
171 && !(ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
Keith Whitwellcab974c2000-12-26 05:09:27 +0000172 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000173
Brian Paula2b9bad2003-11-10 19:08:37 +0000174 if (ctx->Const.CheckArrayBounds) {
175 /* Find max array index.
176 * We don't trust the user's start and end values.
177 */
178 GLuint max = 0;
179 GLint i;
180 if (type == GL_UNSIGNED_INT) {
181 for (i = 0; i < count; i++)
182 if (((GLuint *) indices)[i] > max)
183 max = ((GLuint *) indices)[i];
184 }
185 else if (type == GL_UNSIGNED_SHORT) {
186 for (i = 0; i < count; i++)
187 if (((GLushort *) indices)[i] > max)
188 max = ((GLushort *) indices)[i];
189 }
190 else {
191 ASSERT(type == GL_UNSIGNED_BYTE);
192 for (i = 0; i < count; i++)
193 if (((GLubyte *) indices)[i] > max)
194 max = ((GLubyte *) indices)[i];
195 }
196 if (max >= ctx->Array._MaxElement) {
197 /* the max element is out of bounds of one or more enabled arrays */
198 return GL_FALSE;
199 }
200 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000201
Brian Paulc5b1e812003-10-22 22:59:07 +0000202 return GL_TRUE;
203}
Keith Whitwellcab974c2000-12-26 05:09:27 +0000204
Brian Paulc5b1e812003-10-22 22:59:07 +0000205
206/**
207 * Called from the tnl module to error check the function parameters and
208 * verify that we really can draw something.
209 */
Keith Whitwellcab974c2000-12-26 05:09:27 +0000210GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000211_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000212 GLenum mode, GLint start, GLsizei count)
213{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000214 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000215
Brian Paulc5b1e812003-10-22 22:59:07 +0000216 if (count < 0) {
Brian Paul08836342001-03-03 20:33:27 +0000217 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000218 return GL_FALSE;
219 }
220
Brian Paul464bc3b2003-04-21 15:04:30 +0000221 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000222 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000223 return GL_FALSE;
224 }
225
226 if (ctx->NewState)
Brian Paula2b9bad2003-11-10 19:08:37 +0000227 _mesa_update_state(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000228
Brian Paula2b9bad2003-11-10 19:08:37 +0000229 /* Always need vertex positions */
Brian Paulffa7eff2004-02-24 02:42:46 +0000230 if (!ctx->Array.Vertex.Enabled && !ctx->Array.VertexAttrib[0].Enabled)
Brian Paula2b9bad2003-11-10 19:08:37 +0000231 return GL_FALSE;
232
233 if (ctx->Const.CheckArrayBounds) {
Brian Paul2c9f50d2003-11-25 16:21:51 +0000234 if (start + count > (GLint) ctx->Array._MaxElement)
Brian Paulc5b1e812003-10-22 22:59:07 +0000235 return GL_FALSE;
236 }
Brian Paulc5b1e812003-10-22 22:59:07 +0000237
238 return GL_TRUE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000239}