| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
| Brian | a3c3bc9 | 2007-08-20 12:55:34 +0100 | [diff] [blame] | 3 | * Version: 7.1 |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 4 | * |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 5 | * Copyright (C) 1999-2007 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 | |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 33 | /** |
| 34 | * Find the max index in the given element/index buffer |
| 35 | */ |
| 36 | static GLuint |
| 37 | max_buffer_index(GLcontext *ctx, GLuint count, GLenum type, |
| 38 | const void *indices, |
| 39 | struct gl_buffer_object *elementBuf) |
| 40 | { |
| 41 | const GLubyte *map = NULL; |
| 42 | GLuint max = 0; |
| 43 | GLint i; |
| 44 | |
| 45 | if (elementBuf->Name) { |
| 46 | /* elements are in a user-defined buffer object. need to map it */ |
| 47 | map = ctx->Driver.MapBuffer(ctx, |
| 48 | GL_ELEMENT_ARRAY_BUFFER_ARB, |
| 49 | GL_READ_ONLY, |
| 50 | elementBuf); |
| 51 | /* Actual address is the sum of pointers */ |
| 52 | indices = (const GLvoid *) ADD_POINTERS(map, (const GLubyte *) indices); |
| 53 | } |
| 54 | |
| 55 | if (type == GL_UNSIGNED_INT) { |
| 56 | for (i = 0; i < count; i++) |
| 57 | if (((GLuint *) indices)[i] > max) |
| 58 | max = ((GLuint *) indices)[i]; |
| 59 | } |
| 60 | else if (type == GL_UNSIGNED_SHORT) { |
| 61 | for (i = 0; i < count; i++) |
| 62 | if (((GLushort *) indices)[i] > max) |
| 63 | max = ((GLushort *) indices)[i]; |
| 64 | } |
| 65 | else { |
| 66 | ASSERT(type == GL_UNSIGNED_BYTE); |
| 67 | for (i = 0; i < count; i++) |
| 68 | if (((GLubyte *) indices)[i] > max) |
| 69 | max = ((GLubyte *) indices)[i]; |
| 70 | } |
| 71 | |
| 72 | if (map) { |
| 73 | ctx->Driver.UnmapBuffer(ctx, |
| 74 | GL_ELEMENT_ARRAY_BUFFER_ARB, |
| 75 | ctx->Array.ElementArrayBufferObj); |
| 76 | } |
| 77 | |
| 78 | return max; |
| 79 | } |
| 80 | |
| 81 | |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 82 | GLboolean |
| 83 | _mesa_validate_DrawElements(GLcontext *ctx, |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 84 | GLenum mode, GLsizei count, GLenum type, |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 85 | const GLvoid *indices) |
| 86 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 87 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 88 | |
| 89 | if (count <= 0) { |
| 90 | if (count < 0) |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 91 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 92 | return GL_FALSE; |
| 93 | } |
| 94 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 95 | if (mode > GL_POLYGON) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 96 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 97 | return GL_FALSE; |
| 98 | } |
| 99 | |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 100 | if (type != GL_UNSIGNED_INT && |
| 101 | type != GL_UNSIGNED_BYTE && |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 102 | type != GL_UNSIGNED_SHORT) |
| 103 | { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 104 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 105 | return GL_FALSE; |
| 106 | } |
| 107 | |
| 108 | if (ctx->NewState) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 109 | _mesa_update_state(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 110 | |
| Brian Paul | b3e1f9b | 2008-07-02 19:17:11 -0600 | [diff] [blame] | 111 | /* Always need vertex positions, unless a vertex program is in use */ |
| 112 | if (!ctx->VertexProgram._Current && |
| 113 | !ctx->Array.ArrayObj->Vertex.Enabled && |
| 114 | !ctx->Array.ArrayObj->VertexAttrib[0].Enabled) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 115 | return GL_FALSE; |
| 116 | |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 117 | /* Vertex buffer object tests */ |
| 118 | if (ctx->Array.ElementArrayBufferObj->Name) { |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 119 | /* use indices in the buffer object */ |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 120 | GLuint indexBytes; |
| 121 | |
| Brian | 730df76 | 2007-08-20 12:50:34 -0600 | [diff] [blame] | 122 | if (!ctx->Array.ElementArrayBufferObj->Size) { |
| 123 | _mesa_warning(ctx, |
| 124 | "glDrawElements called with empty array elements buffer"); |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 125 | return GL_FALSE; |
| 126 | } |
| 127 | |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 128 | if (type == GL_UNSIGNED_INT) { |
| 129 | indexBytes = count * sizeof(GLuint); |
| 130 | } |
| 131 | else if (type == GL_UNSIGNED_BYTE) { |
| 132 | indexBytes = count * sizeof(GLubyte); |
| 133 | } |
| 134 | else { |
| 135 | ASSERT(type == GL_UNSIGNED_SHORT); |
| 136 | indexBytes = count * sizeof(GLushort); |
| 137 | } |
| 138 | |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 139 | /* make sure count doesn't go outside buffer bounds */ |
| José Fonseca | 53174af | 2008-05-31 18:14:09 +0900 | [diff] [blame] | 140 | if (indexBytes > (GLuint) ctx->Array.ElementArrayBufferObj->Size) { |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 141 | _mesa_warning(ctx, "glDrawElements index out of buffer bounds"); |
| 142 | return GL_FALSE; |
| 143 | } |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 144 | } |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 145 | else { |
| 146 | /* not using a VBO */ |
| 147 | if (!indices) |
| 148 | return GL_FALSE; |
| 149 | } |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 150 | |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 151 | if (ctx->Const.CheckArrayBounds) { |
| 152 | /* find max array index */ |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 153 | GLuint max = max_buffer_index(ctx, count, type, indices, |
| 154 | ctx->Array.ElementArrayBufferObj); |
| Brian | a3c3bc9 | 2007-08-20 12:55:34 +0100 | [diff] [blame] | 155 | if (max >= ctx->Array._MaxElement) { |
| 156 | /* the max element is out of bounds of one or more enabled arrays */ |
| 157 | return GL_FALSE; |
| 158 | } |
| Xiang, Haihao | 2394d20 | 2007-07-30 23:50:52 +0800 | [diff] [blame] | 159 | } |
| 160 | |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 161 | return GL_TRUE; |
| 162 | } |
| 163 | |
| 164 | |
| 165 | GLboolean |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 166 | _mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode, |
| 167 | GLuint start, GLuint end, |
| 168 | GLsizei count, GLenum type, |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 169 | const GLvoid *indices) |
| 170 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 171 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 172 | |
| 173 | if (count <= 0) { |
| 174 | if (count < 0) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 175 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 176 | return GL_FALSE; |
| 177 | } |
| 178 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 179 | if (mode > GL_POLYGON) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 180 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 181 | return GL_FALSE; |
| 182 | } |
| 183 | |
| 184 | if (end < start) { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 185 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)"); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 186 | return GL_FALSE; |
| 187 | } |
| 188 | |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 189 | if (type != GL_UNSIGNED_INT && |
| 190 | type != GL_UNSIGNED_BYTE && |
| Brian Paul | 61bac60 | 2002-04-21 21:04:46 +0000 | [diff] [blame] | 191 | type != GL_UNSIGNED_SHORT) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 192 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 193 | return GL_FALSE; |
| 194 | } |
| 195 | |
| 196 | if (ctx->NewState) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 197 | _mesa_update_state(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 198 | |
| Brian Paul | b3e1f9b | 2008-07-02 19:17:11 -0600 | [diff] [blame] | 199 | /* Always need vertex positions, unless a vertex program is in use */ |
| 200 | if (!ctx->VertexProgram._Current && |
| 201 | !ctx->Array.ArrayObj->Vertex.Enabled && |
| 202 | !ctx->Array.ArrayObj->VertexAttrib[0].Enabled) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 203 | return GL_FALSE; |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 204 | |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 205 | /* Vertex buffer object tests */ |
| 206 | if (ctx->Array.ElementArrayBufferObj->Name) { |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 207 | /* use indices in the buffer object */ |
| 208 | GLuint indexBytes; |
| 209 | |
| 210 | if (type == GL_UNSIGNED_INT) { |
| 211 | indexBytes = count * sizeof(GLuint); |
| 212 | } |
| 213 | else if (type == GL_UNSIGNED_BYTE) { |
| 214 | indexBytes = count * sizeof(GLubyte); |
| 215 | } |
| 216 | else { |
| 217 | ASSERT(type == GL_UNSIGNED_SHORT); |
| 218 | indexBytes = count * sizeof(GLushort); |
| 219 | } |
| 220 | |
| 221 | /* make sure count doesn't go outside buffer bounds */ |
| 222 | if (indexBytes > ctx->Array.ElementArrayBufferObj->Size) { |
| Brian | ef5935b | 2007-09-23 13:56:46 -0600 | [diff] [blame] | 223 | _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds"); |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 224 | return GL_FALSE; |
| 225 | } |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 226 | } |
| 227 | else { |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 228 | /* not using a VBO */ |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 229 | if (!indices) |
| 230 | return GL_FALSE; |
| 231 | } |
| 232 | |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 233 | if (ctx->Const.CheckArrayBounds) { |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 234 | GLuint max = max_buffer_index(ctx, count, type, indices, |
| 235 | ctx->Array.ElementArrayBufferObj); |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 236 | if (max >= ctx->Array._MaxElement) { |
| 237 | /* the max element is out of bounds of one or more enabled arrays */ |
| 238 | return GL_FALSE; |
| 239 | } |
| 240 | } |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 241 | |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 242 | return GL_TRUE; |
| 243 | } |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 244 | |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 245 | |
| 246 | /** |
| 247 | * Called from the tnl module to error check the function parameters and |
| 248 | * verify that we really can draw something. |
| 249 | */ |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 250 | GLboolean |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 251 | _mesa_validate_DrawArrays(GLcontext *ctx, |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 252 | GLenum mode, GLint start, GLsizei count) |
| 253 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 254 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 255 | |
| Brian | 5cb2034 | 2007-10-31 09:38:51 -0600 | [diff] [blame] | 256 | if (count <= 0) { |
| 257 | if (count < 0) |
| 258 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 259 | return GL_FALSE; |
| 260 | } |
| 261 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 262 | if (mode > GL_POLYGON) { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 263 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 264 | return GL_FALSE; |
| 265 | } |
| 266 | |
| 267 | if (ctx->NewState) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 268 | _mesa_update_state(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 269 | |
| Brian Paul | b3e1f9b | 2008-07-02 19:17:11 -0600 | [diff] [blame] | 270 | /* Always need vertex positions, unless a vertex program is in use */ |
| 271 | if (!ctx->VertexProgram._Current && |
| 272 | !ctx->Array.ArrayObj->Vertex.Enabled && |
| 273 | !ctx->Array.ArrayObj->VertexAttrib[0].Enabled) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 274 | return GL_FALSE; |
| 275 | |
| 276 | if (ctx->Const.CheckArrayBounds) { |
| Brian Paul | 2c9f50d | 2003-11-25 16:21:51 +0000 | [diff] [blame] | 277 | if (start + count > (GLint) ctx->Array._MaxElement) |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 278 | return GL_FALSE; |
| 279 | } |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 280 | |
| 281 | return GL_TRUE; |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 282 | } |