blob: 945f68c1741f4f957f974877896a33098bc5c5d6 [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 Paul08836342001-03-03 20:33:27 +000048 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(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 Paul08836342001-03-03 20:33:27 +000061 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +000062
Brian Paul61bac602002-04-21 21:04:46 +000063 if (ctx->Array.Vertex.Enabled
64 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
65 return GL_TRUE;
66 else
Keith Whitwellcab974c2000-12-26 05:09:27 +000067 return GL_FALSE;
68
69 return GL_TRUE;
70}
71
72
73GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +000074_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
75 GLuint start, GLuint end,
76 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +000077 const GLvoid *indices)
78{
Gareth Hughes22144ab2001-03-12 00:48:37 +000079 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +000080
81 if (count <= 0) {
82 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +000083 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000084 return GL_FALSE;
85 }
86
Brian Paul464bc3b2003-04-21 15:04:30 +000087 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +000088 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000089 return GL_FALSE;
90 }
91
92 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +000093 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +000094 return GL_FALSE;
95 }
96
Gareth Hughes22144ab2001-03-12 00:48:37 +000097 if (type != GL_UNSIGNED_INT &&
98 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +000099 type != GL_UNSIGNED_SHORT) {
Brian Paul08836342001-03-03 20:33:27 +0000100 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000101 return GL_FALSE;
102 }
103
104 if (ctx->NewState)
Brian Paul08836342001-03-03 20:33:27 +0000105 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000106
Brian Paul61bac602002-04-21 21:04:46 +0000107 if (ctx->Array.Vertex.Enabled
108 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
109 return GL_TRUE;
110 else
Keith Whitwellcab974c2000-12-26 05:09:27 +0000111 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000112}
113
114
115
116GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000117_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000118 GLenum mode, GLint start, GLsizei count)
119{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000120 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000121
122 if (count<0) {
Brian Paul08836342001-03-03 20:33:27 +0000123 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000124 return GL_FALSE;
125 }
126
Brian Paul464bc3b2003-04-21 15:04:30 +0000127 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000128 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000129 return GL_FALSE;
130 }
131
132 if (ctx->NewState)
Brian Paul08836342001-03-03 20:33:27 +0000133 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000134
Brian Paul61bac602002-04-21 21:04:46 +0000135 if (ctx->Array.Vertex.Enabled
136 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
137 return GL_TRUE;
138 else
Keith Whitwellcab974c2000-12-26 05:09:27 +0000139 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000140}