blob: 8feda650cc5fce11becd54f59149e147abf8b9b9 [file] [log] [blame]
Keith Whitwellcab974c2000-12-26 05:09:27 +00001/*
2 * Mesa 3-D graphics library
Brian Paul464bc3b2003-04-21 15:04:30 +00003 * Version: 5.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 Paul08836342001-03-03 20:33:27 +000047 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(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 Paul08836342001-03-03 20:33:27 +000060 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +000061
Brian Paul61bac602002-04-21 21:04:46 +000062 if (ctx->Array.Vertex.Enabled
63 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
64 return GL_TRUE;
65 else
Keith Whitwellcab974c2000-12-26 05:09:27 +000066 return GL_FALSE;
67
68 return GL_TRUE;
69}
70
71
72GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +000073_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
74 GLuint start, GLuint end,
75 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +000076 const GLvoid *indices)
77{
Gareth Hughes22144ab2001-03-12 00:48:37 +000078 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +000079
80 if (count <= 0) {
81 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +000082 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000083 return GL_FALSE;
84 }
85
Brian Paul464bc3b2003-04-21 15:04:30 +000086 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +000087 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000088 return GL_FALSE;
89 }
90
91 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +000092 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +000093 return GL_FALSE;
94 }
95
Gareth Hughes22144ab2001-03-12 00:48:37 +000096 if (type != GL_UNSIGNED_INT &&
97 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +000098 type != GL_UNSIGNED_SHORT) {
Brian Paul08836342001-03-03 20:33:27 +000099 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000100 return GL_FALSE;
101 }
102
103 if (ctx->NewState)
Brian Paul08836342001-03-03 20:33:27 +0000104 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000105
Brian Paul61bac602002-04-21 21:04:46 +0000106 if (ctx->Array.Vertex.Enabled
107 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
108 return GL_TRUE;
109 else
Keith Whitwellcab974c2000-12-26 05:09:27 +0000110 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000111}
112
113
114
115GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000116_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000117 GLenum mode, GLint start, GLsizei count)
118{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000119 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000120
121 if (count<0) {
Brian Paul08836342001-03-03 20:33:27 +0000122 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000123 return GL_FALSE;
124 }
125
Brian Paul464bc3b2003-04-21 15:04:30 +0000126 if (mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000127 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000128 return GL_FALSE;
129 }
130
131 if (ctx->NewState)
Brian Paul08836342001-03-03 20:33:27 +0000132 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000133
Brian Paul61bac602002-04-21 21:04:46 +0000134 if (ctx->Array.Vertex.Enabled
135 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
136 return GL_TRUE;
137 else
Keith Whitwellcab974c2000-12-26 05:09:27 +0000138 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000139}