| Ian Romanick | 9ac51f5 | 2003-06-05 00:50:18 +0000 | [diff] [blame] | 1 | |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mesa 3-D graphics library |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 4 | * Version: 5.1 |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 5 | * |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 7 | * |
| 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 Paul | 8446d1b | 2001-01-02 21:40:57 +0000 | [diff] [blame] | 27 | #include "api_validate.h" |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 28 | #include "context.h" |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 29 | #include "imports.h" |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 30 | #include "mtypes.h" |
| Brian Paul | 8446d1b | 2001-01-02 21:40:57 +0000 | [diff] [blame] | 31 | #include "state.h" |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 32 | |
| Keith Whitwell | 58e9917 | 2001-01-05 02:26:48 +0000 | [diff] [blame] | 33 | |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 34 | GLboolean |
| 35 | _mesa_validate_DrawElements(GLcontext *ctx, |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 36 | GLenum mode, GLsizei count, GLenum type, |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 37 | const GLvoid *indices) |
| 38 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 39 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 40 | |
| 41 | if (count <= 0) { |
| 42 | if (count < 0) |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 43 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 44 | return GL_FALSE; |
| 45 | } |
| 46 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 47 | if (mode > GL_POLYGON) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 48 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 49 | return GL_FALSE; |
| 50 | } |
| 51 | |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 52 | if (type != GL_UNSIGNED_INT && |
| 53 | type != GL_UNSIGNED_BYTE && |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 54 | type != GL_UNSIGNED_SHORT) |
| 55 | { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 56 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 57 | return GL_FALSE; |
| 58 | } |
| 59 | |
| 60 | if (ctx->NewState) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 61 | _mesa_update_state(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 62 | |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 63 | /* Always need vertex positions */ |
| 64 | if (!ctx->Array.Vertex.Enabled |
| 65 | && !(ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled)) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 66 | return GL_FALSE; |
| 67 | |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 68 | if (ctx->Const.CheckArrayBounds) { |
| 69 | /* find max array index */ |
| 70 | GLuint max = 0; |
| 71 | GLint i; |
| 72 | if (type == GL_UNSIGNED_INT) { |
| 73 | for (i = 0; i < count; i++) |
| 74 | if (((GLuint *) indices)[i] > max) |
| 75 | max = ((GLuint *) indices)[i]; |
| 76 | } |
| 77 | else if (type == GL_UNSIGNED_SHORT) { |
| 78 | for (i = 0; i < count; i++) |
| 79 | if (((GLushort *) indices)[i] > max) |
| 80 | max = ((GLushort *) indices)[i]; |
| 81 | } |
| 82 | else { |
| 83 | ASSERT(type == GL_UNSIGNED_BYTE); |
| 84 | for (i = 0; i < count; i++) |
| 85 | if (((GLubyte *) indices)[i] > max) |
| 86 | max = ((GLubyte *) indices)[i]; |
| 87 | } |
| 88 | if (max >= ctx->Array._MaxElement) { |
| 89 | /* the max element is out of bounds of one or more enabled arrays */ |
| 90 | return GL_FALSE; |
| 91 | } |
| 92 | } |
| 93 | |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 94 | return GL_TRUE; |
| 95 | } |
| 96 | |
| 97 | |
| 98 | GLboolean |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 99 | _mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode, |
| 100 | GLuint start, GLuint end, |
| 101 | GLsizei count, GLenum type, |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 102 | const GLvoid *indices) |
| 103 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 104 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 105 | |
| 106 | if (count <= 0) { |
| 107 | if (count < 0) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 108 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 109 | return GL_FALSE; |
| 110 | } |
| 111 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 112 | if (mode > GL_POLYGON) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 113 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 114 | return GL_FALSE; |
| 115 | } |
| 116 | |
| 117 | if (end < start) { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 118 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)"); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 119 | return GL_FALSE; |
| 120 | } |
| 121 | |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 122 | if (type != GL_UNSIGNED_INT && |
| 123 | type != GL_UNSIGNED_BYTE && |
| Brian Paul | 61bac60 | 2002-04-21 21:04:46 +0000 | [diff] [blame] | 124 | type != GL_UNSIGNED_SHORT) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 125 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 126 | return GL_FALSE; |
| 127 | } |
| 128 | |
| 129 | if (ctx->NewState) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 130 | _mesa_update_state(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 131 | |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 132 | /* Always need vertex positions */ |
| 133 | if (!ctx->Array.Vertex.Enabled |
| 134 | && !(ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled)) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 135 | return GL_FALSE; |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 136 | |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 137 | if (ctx->Const.CheckArrayBounds) { |
| 138 | /* Find max array index. |
| 139 | * We don't trust the user's start and end values. |
| 140 | */ |
| 141 | GLuint max = 0; |
| 142 | GLint i; |
| 143 | if (type == GL_UNSIGNED_INT) { |
| 144 | for (i = 0; i < count; i++) |
| 145 | if (((GLuint *) indices)[i] > max) |
| 146 | max = ((GLuint *) indices)[i]; |
| 147 | } |
| 148 | else if (type == GL_UNSIGNED_SHORT) { |
| 149 | for (i = 0; i < count; i++) |
| 150 | if (((GLushort *) indices)[i] > max) |
| 151 | max = ((GLushort *) indices)[i]; |
| 152 | } |
| 153 | else { |
| 154 | ASSERT(type == GL_UNSIGNED_BYTE); |
| 155 | for (i = 0; i < count; i++) |
| 156 | if (((GLubyte *) indices)[i] > max) |
| 157 | max = ((GLubyte *) indices)[i]; |
| 158 | } |
| 159 | if (max >= ctx->Array._MaxElement) { |
| 160 | /* the max element is out of bounds of one or more enabled arrays */ |
| 161 | return GL_FALSE; |
| 162 | } |
| 163 | } |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 164 | |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 165 | return GL_TRUE; |
| 166 | } |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 167 | |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 168 | |
| 169 | /** |
| 170 | * Called from the tnl module to error check the function parameters and |
| 171 | * verify that we really can draw something. |
| 172 | */ |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 173 | GLboolean |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 174 | _mesa_validate_DrawArrays(GLcontext *ctx, |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 175 | GLenum mode, GLint start, GLsizei count) |
| 176 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 177 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 178 | |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 179 | if (count < 0) { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 180 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 181 | return GL_FALSE; |
| 182 | } |
| 183 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 184 | if (mode > GL_POLYGON) { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 185 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 186 | return GL_FALSE; |
| 187 | } |
| 188 | |
| 189 | if (ctx->NewState) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 190 | _mesa_update_state(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 191 | |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 192 | /* Always need vertex positions */ |
| 193 | if (!ctx->Array.Vertex.Enabled |
| 194 | && !(ctx->VertexProgram.Enabled && ctx->Array.VertexAttrib[0].Enabled)) |
| 195 | return GL_FALSE; |
| 196 | |
| 197 | if (ctx->Const.CheckArrayBounds) { |
| Brian Paul | 2c9f50d | 2003-11-25 16:21:51 +0000 | [diff] [blame] | 198 | if (start + count > (GLint) ctx->Array._MaxElement) |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 199 | return GL_FALSE; |
| 200 | } |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 201 | |
| 202 | return GL_TRUE; |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 203 | } |