Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 3 | * Version: 5.1 |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 4 | * |
Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 6 | * |
| 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 Paul | 8446d1b | 2001-01-02 21:40:57 +0000 | [diff] [blame] | 26 | #include "api_validate.h" |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 27 | #include "context.h" |
Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 28 | #include "imports.h" |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 29 | #include "mtypes.h" |
Brian Paul | 8446d1b | 2001-01-02 21:40:57 +0000 | [diff] [blame] | 30 | #include "state.h" |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 31 | |
Keith Whitwell | 58e9917 | 2001-01-05 02:26:48 +0000 | [diff] [blame] | 32 | |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 33 | GLboolean |
| 34 | _mesa_validate_DrawElements(GLcontext *ctx, |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 35 | GLenum mode, GLsizei count, GLenum type, |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 36 | const GLvoid *indices) |
| 37 | { |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 38 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 39 | |
| 40 | if (count <= 0) { |
| 41 | if (count < 0) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 42 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 43 | return GL_FALSE; |
| 44 | } |
| 45 | |
Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 46 | if (mode > GL_POLYGON) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 47 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 48 | return GL_FALSE; |
| 49 | } |
| 50 | |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 51 | if (type != GL_UNSIGNED_INT && |
| 52 | type != GL_UNSIGNED_BYTE && |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 53 | type != GL_UNSIGNED_SHORT) |
| 54 | { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 55 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 56 | return GL_FALSE; |
| 57 | } |
| 58 | |
| 59 | if (ctx->NewState) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 60 | _mesa_update_state( ctx ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 61 | |
Brian Paul | 61bac60 | 2002-04-21 21:04:46 +0000 | [diff] [blame] | 62 | if (ctx->Array.Vertex.Enabled |
| 63 | || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled)) |
| 64 | return GL_TRUE; |
| 65 | else |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 66 | return GL_FALSE; |
| 67 | |
| 68 | return GL_TRUE; |
| 69 | } |
| 70 | |
| 71 | |
| 72 | GLboolean |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 73 | _mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode, |
| 74 | GLuint start, GLuint end, |
| 75 | GLsizei count, GLenum type, |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 76 | const GLvoid *indices) |
| 77 | { |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 78 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 79 | |
| 80 | if (count <= 0) { |
| 81 | if (count < 0) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 82 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 83 | return GL_FALSE; |
| 84 | } |
| 85 | |
Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 86 | if (mode > GL_POLYGON) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 87 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 88 | return GL_FALSE; |
| 89 | } |
| 90 | |
| 91 | if (end < start) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 92 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)"); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 93 | return GL_FALSE; |
| 94 | } |
| 95 | |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 96 | if (type != GL_UNSIGNED_INT && |
| 97 | type != GL_UNSIGNED_BYTE && |
Brian Paul | 61bac60 | 2002-04-21 21:04:46 +0000 | [diff] [blame] | 98 | type != GL_UNSIGNED_SHORT) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 99 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 100 | return GL_FALSE; |
| 101 | } |
| 102 | |
| 103 | if (ctx->NewState) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 104 | _mesa_update_state( ctx ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 105 | |
Brian Paul | 61bac60 | 2002-04-21 21:04:46 +0000 | [diff] [blame] | 106 | if (ctx->Array.Vertex.Enabled |
| 107 | || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled)) |
| 108 | return GL_TRUE; |
| 109 | else |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 110 | return GL_FALSE; |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | |
| 114 | |
| 115 | GLboolean |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 116 | _mesa_validate_DrawArrays(GLcontext *ctx, |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 117 | GLenum mode, GLint start, GLsizei count) |
| 118 | { |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 119 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 120 | |
| 121 | if (count<0) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 122 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 123 | return GL_FALSE; |
| 124 | } |
| 125 | |
Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 126 | if (mode > GL_POLYGON) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 127 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 128 | return GL_FALSE; |
| 129 | } |
| 130 | |
| 131 | if (ctx->NewState) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 132 | _mesa_update_state( ctx ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 133 | |
Brian Paul | 61bac60 | 2002-04-21 21:04:46 +0000 | [diff] [blame] | 134 | if (ctx->Array.Vertex.Enabled |
| 135 | || (ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled)) |
| 136 | return GL_TRUE; |
| 137 | else |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 138 | return GL_FALSE; |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 139 | } |