blob: c3aba1ad8b762c1525e4bda14dd40a355a9eb978 [file] [log] [blame]
Brian Paul61bac602002-04-21 21:04:46 +00001/* $Id: api_validate.c,v 1.6 2002/04/21 21:04:46 brianp Exp $ */
Keith Whitwellcab974c2000-12-26 05:09:27 +00002
3/*
4 * Mesa 3-D graphics library
Brian Paul61bac602002-04-21 21:04:46 +00005 * Version: 4.1
Keith Whitwellcab974c2000-12-26 05:09:27 +00006 *
Brian Paul61bac602002-04-21 21:04:46 +00007 * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
Keith Whitwellcab974c2000-12-26 05:09:27 +00008 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27#include "glheader.h"
Brian Paul8446d1b2001-01-02 21:40:57 +000028#include "api_validate.h"
Keith Whitwellcab974c2000-12-26 05:09:27 +000029#include "context.h"
30#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
Gareth Hughes22144ab2001-03-12 00:48:37 +000047 if (mode < 0 ||
Keith Whitwellcab974c2000-12-26 05:09:27 +000048 mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +000049 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000050 return GL_FALSE;
51 }
52
Gareth Hughes22144ab2001-03-12 00:48:37 +000053 if (type != GL_UNSIGNED_INT &&
54 type != GL_UNSIGNED_BYTE &&
Keith Whitwellcab974c2000-12-26 05:09:27 +000055 type != GL_UNSIGNED_SHORT)
56 {
Brian Paul08836342001-03-03 20:33:27 +000057 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000058 return GL_FALSE;
59 }
60
61 if (ctx->NewState)
Brian Paul08836342001-03-03 20:33:27 +000062 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +000063
Brian Paul61bac602002-04-21 21:04:46 +000064 if (ctx->Array.Vertex.Enabled
65 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
66 return GL_TRUE;
67 else
Keith Whitwellcab974c2000-12-26 05:09:27 +000068 return GL_FALSE;
69
70 return GL_TRUE;
71}
72
73
74GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +000075_mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode,
76 GLuint start, GLuint end,
77 GLsizei count, GLenum type,
Keith Whitwellcab974c2000-12-26 05:09:27 +000078 const GLvoid *indices)
79{
Gareth Hughes22144ab2001-03-12 00:48:37 +000080 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +000081
82 if (count <= 0) {
83 if (count < 0)
Brian Paul08836342001-03-03 20:33:27 +000084 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000085 return GL_FALSE;
86 }
87
88 if (mode < 0 || mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +000089 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +000090 return GL_FALSE;
91 }
92
93 if (end < start) {
Brian Paul08836342001-03-03 20:33:27 +000094 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
Keith Whitwellcab974c2000-12-26 05:09:27 +000095 return GL_FALSE;
96 }
97
Gareth Hughes22144ab2001-03-12 00:48:37 +000098 if (type != GL_UNSIGNED_INT &&
99 type != GL_UNSIGNED_BYTE &&
Brian Paul61bac602002-04-21 21:04:46 +0000100 type != GL_UNSIGNED_SHORT) {
Brian Paul08836342001-03-03 20:33:27 +0000101 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000102 return GL_FALSE;
103 }
104
105 if (ctx->NewState)
Brian Paul08836342001-03-03 20:33:27 +0000106 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000107
Brian Paul61bac602002-04-21 21:04:46 +0000108 if (ctx->Array.Vertex.Enabled
109 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
110 return GL_TRUE;
111 else
Keith Whitwellcab974c2000-12-26 05:09:27 +0000112 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000113}
114
115
116
117GLboolean
Gareth Hughes22144ab2001-03-12 00:48:37 +0000118_mesa_validate_DrawArrays(GLcontext *ctx,
Keith Whitwellcab974c2000-12-26 05:09:27 +0000119 GLenum mode, GLint start, GLsizei count)
120{
Gareth Hughes22144ab2001-03-12 00:48:37 +0000121 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000122
123 if (count<0) {
Brian Paul08836342001-03-03 20:33:27 +0000124 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000125 return GL_FALSE;
126 }
127
128 if (mode < 0 || mode > GL_POLYGON) {
Brian Paul08836342001-03-03 20:33:27 +0000129 _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000130 return GL_FALSE;
131 }
132
133 if (ctx->NewState)
Brian Paul08836342001-03-03 20:33:27 +0000134 _mesa_update_state( ctx );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000135
Brian Paul61bac602002-04-21 21:04:46 +0000136 if (ctx->Array.Vertex.Enabled
137 || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled))
138 return GL_TRUE;
139 else
Keith Whitwellcab974c2000-12-26 05:09:27 +0000140 return GL_FALSE;
Keith Whitwellcab974c2000-12-26 05:09:27 +0000141}