| 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" |
| Brian Paul | 434ec3a | 2009-08-12 13:46:16 -0600 | [diff] [blame] | 27 | #include "bufferobj.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" |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 31 | #include "vbo/vbo.h" |
| Keith Whitwell | 58e9917 | 2001-01-05 02:26:48 +0000 | [diff] [blame] | 32 | |
| Brian Paul | bb1fb2a | 2009-05-06 12:37:10 -0600 | [diff] [blame] | 33 | |
| 34 | /** |
| 35 | * \return number of bytes in array [count] of type. |
| 36 | */ |
| 37 | static GLsizei |
| 38 | index_bytes(GLenum type, GLsizei count) |
| 39 | { |
| 40 | if (type == GL_UNSIGNED_INT) { |
| 41 | return count * sizeof(GLuint); |
| 42 | } |
| 43 | else if (type == GL_UNSIGNED_BYTE) { |
| 44 | return count * sizeof(GLubyte); |
| 45 | } |
| 46 | else { |
| 47 | ASSERT(type == GL_UNSIGNED_SHORT); |
| 48 | return count * sizeof(GLushort); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 53 | /** |
| Brian Paul | e5d29eb | 2009-09-21 14:07:35 -0600 | [diff] [blame] | 54 | * Find the max index in the given element/index buffer |
| 55 | */ |
| 56 | GLuint |
| 57 | _mesa_max_buffer_index(GLcontext *ctx, GLuint count, GLenum type, |
| 58 | const void *indices, |
| 59 | struct gl_buffer_object *elementBuf) |
| 60 | { |
| 61 | const GLubyte *map = NULL; |
| 62 | GLuint max = 0; |
| 63 | GLuint i; |
| 64 | |
| 65 | if (_mesa_is_bufferobj(elementBuf)) { |
| 66 | /* elements are in a user-defined buffer object. need to map it */ |
| 67 | map = ctx->Driver.MapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER, |
| 68 | GL_READ_ONLY, elementBuf); |
| 69 | /* Actual address is the sum of pointers */ |
| 70 | indices = (const GLvoid *) ADD_POINTERS(map, (const GLubyte *) indices); |
| 71 | } |
| 72 | |
| 73 | if (type == GL_UNSIGNED_INT) { |
| 74 | for (i = 0; i < count; i++) |
| 75 | if (((GLuint *) indices)[i] > max) |
| 76 | max = ((GLuint *) indices)[i]; |
| 77 | } |
| 78 | else if (type == GL_UNSIGNED_SHORT) { |
| 79 | for (i = 0; i < count; i++) |
| 80 | if (((GLushort *) indices)[i] > max) |
| 81 | max = ((GLushort *) indices)[i]; |
| 82 | } |
| 83 | else { |
| 84 | ASSERT(type == GL_UNSIGNED_BYTE); |
| 85 | for (i = 0; i < count; i++) |
| 86 | if (((GLubyte *) indices)[i] > max) |
| 87 | max = ((GLubyte *) indices)[i]; |
| 88 | } |
| 89 | |
| 90 | if (map) { |
| 91 | ctx->Driver.UnmapBuffer(ctx, GL_ELEMENT_ARRAY_BUFFER_ARB, elementBuf); |
| 92 | } |
| 93 | |
| 94 | return max; |
| 95 | } |
| 96 | |
| 97 | |
| 98 | /** |
| Brian Paul | b6e5600 | 2009-08-14 10:48:31 -0600 | [diff] [blame] | 99 | * Check if OK to draw arrays/elements. |
| Brian Paul | 88af3f8 | 2009-05-06 12:27:38 -0600 | [diff] [blame] | 100 | */ |
| Alan Hourihane | 263b96e | 2009-01-15 11:51:39 +0000 | [diff] [blame] | 101 | static GLboolean |
| Brian Paul | a48b0a5 | 2009-08-14 10:41:03 -0600 | [diff] [blame] | 102 | check_valid_to_render(GLcontext *ctx, const char *function) |
| Alan Hourihane | 263b96e | 2009-01-15 11:51:39 +0000 | [diff] [blame] | 103 | { |
| Brian Paul | b6e5600 | 2009-08-14 10:48:31 -0600 | [diff] [blame] | 104 | if (!_mesa_valid_to_render(ctx, function)) { |
| Alan Hourihane | 263b96e | 2009-01-15 11:51:39 +0000 | [diff] [blame] | 105 | return GL_FALSE; |
| 106 | } |
| 107 | |
| Brian Paul | 97dd2dd | 2009-03-02 12:27:16 -0700 | [diff] [blame] | 108 | #if FEATURE_es2_glsl |
| 109 | /* For ES2, we can draw if any vertex array is enabled (and we should |
| 110 | * always have a vertex program/shader). |
| 111 | */ |
| 112 | if (ctx->Array.ArrayObj->_Enabled == 0x0 || !ctx->VertexProgram._Current) |
| 113 | return GL_FALSE; |
| 114 | #else |
| 115 | /* For regular OpenGL, only draw if we have vertex positions (regardless |
| 116 | * of whether or not we have a vertex program/shader). |
| 117 | */ |
| 118 | if (!ctx->Array.ArrayObj->Vertex.Enabled && |
| Alan Hourihane | 263b96e | 2009-01-15 11:51:39 +0000 | [diff] [blame] | 119 | !ctx->Array.ArrayObj->VertexAttrib[0].Enabled) |
| 120 | return GL_FALSE; |
| Brian Paul | 97dd2dd | 2009-03-02 12:27:16 -0700 | [diff] [blame] | 121 | #endif |
| Alan Hourihane | 263b96e | 2009-01-15 11:51:39 +0000 | [diff] [blame] | 122 | |
| 123 | return GL_TRUE; |
| 124 | } |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 125 | |
| Brian Paul | e9968eb | 2010-03-05 12:32:32 -0700 | [diff] [blame^] | 126 | |
| 127 | /** |
| 128 | * Do bounds checking on array element indexes. Check that the vertices |
| 129 | * pointed to by the indices don't lie outside buffer object bounds. |
| 130 | * \return GL_TRUE if OK, GL_FALSE if any indexed vertex goes is out of bounds |
| 131 | */ |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 132 | static GLboolean |
| 133 | check_index_bounds(GLcontext *ctx, GLsizei count, GLenum type, |
| 134 | const GLvoid *indices, GLint basevertex) |
| 135 | { |
| 136 | struct _mesa_prim prim; |
| 137 | struct _mesa_index_buffer ib; |
| 138 | GLuint min, max; |
| 139 | |
| 140 | /* Only the X Server needs to do this -- otherwise, accessing outside |
| 141 | * array/BO bounds allows application termination. |
| 142 | */ |
| 143 | if (!ctx->Const.CheckArrayBounds) |
| 144 | return GL_TRUE; |
| 145 | |
| 146 | memset(&prim, 0, sizeof(prim)); |
| 147 | prim.count = count; |
| 148 | |
| 149 | memset(&ib, 0, sizeof(ib)); |
| 150 | ib.type = type; |
| 151 | ib.ptr = indices; |
| 152 | ib.obj = ctx->Array.ElementArrayBufferObj; |
| 153 | |
| 154 | vbo_get_minmax_index(ctx, &prim, &ib, &min, &max); |
| 155 | |
| Michel Dänzer | 391b396 | 2010-03-05 00:15:40 +0100 | [diff] [blame] | 156 | if ((int)(min + basevertex) < 0 || |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 157 | max + basevertex > ctx->Array.ArrayObj->_MaxElement) { |
| 158 | /* the max element is out of bounds of one or more enabled arrays */ |
| Brian Paul | e9968eb | 2010-03-05 12:32:32 -0700 | [diff] [blame^] | 159 | _mesa_warning(ctx, "glDrawElements() index=%u is out of bounds (max=%u)", |
| 160 | max, ctx->Array.ArrayObj->_MaxElement); |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 161 | return GL_FALSE; |
| 162 | } |
| 163 | |
| 164 | return GL_TRUE; |
| 165 | } |
| Brian Paul | 88af3f8 | 2009-05-06 12:27:38 -0600 | [diff] [blame] | 166 | |
| Brian Paul | e9968eb | 2010-03-05 12:32:32 -0700 | [diff] [blame^] | 167 | |
| Brian Paul | 88af3f8 | 2009-05-06 12:27:38 -0600 | [diff] [blame] | 168 | /** |
| 169 | * Error checking for glDrawElements(). Includes parameter checking |
| 170 | * and VBO bounds checking. |
| 171 | * \return GL_TRUE if OK to render, GL_FALSE if error found |
| 172 | */ |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 173 | GLboolean |
| 174 | _mesa_validate_DrawElements(GLcontext *ctx, |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 175 | GLenum mode, GLsizei count, GLenum type, |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 176 | const GLvoid *indices, GLint basevertex) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 177 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 178 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 179 | |
| 180 | if (count <= 0) { |
| 181 | if (count < 0) |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 182 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 183 | return GL_FALSE; |
| 184 | } |
| 185 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 186 | if (mode > GL_POLYGON) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 187 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 188 | return GL_FALSE; |
| 189 | } |
| 190 | |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 191 | if (type != GL_UNSIGNED_INT && |
| 192 | type != GL_UNSIGNED_BYTE && |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 193 | type != GL_UNSIGNED_SHORT) |
| 194 | { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 195 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 196 | return GL_FALSE; |
| 197 | } |
| 198 | |
| Brian Paul | a48b0a5 | 2009-08-14 10:41:03 -0600 | [diff] [blame] | 199 | if (!check_valid_to_render(ctx, "glDrawElements")) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 200 | return GL_FALSE; |
| 201 | |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 202 | /* Vertex buffer object tests */ |
| Brian Paul | 434ec3a | 2009-08-12 13:46:16 -0600 | [diff] [blame] | 203 | if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) { |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 204 | /* use indices in the buffer object */ |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 205 | /* make sure count doesn't go outside buffer bounds */ |
| Brian Paul | bb1fb2a | 2009-05-06 12:37:10 -0600 | [diff] [blame] | 206 | if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) { |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 207 | _mesa_warning(ctx, "glDrawElements index out of buffer bounds"); |
| 208 | return GL_FALSE; |
| 209 | } |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 210 | } |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 211 | else { |
| 212 | /* not using a VBO */ |
| 213 | if (!indices) |
| 214 | return GL_FALSE; |
| 215 | } |
| Brian Paul | 03e29a5 | 2003-12-04 03:16:27 +0000 | [diff] [blame] | 216 | |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 217 | if (!check_index_bounds(ctx, count, type, indices, basevertex)) |
| 218 | return GL_FALSE; |
| Xiang, Haihao | 2394d20 | 2007-07-30 23:50:52 +0800 | [diff] [blame] | 219 | |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 220 | return GL_TRUE; |
| 221 | } |
| 222 | |
| Brian Paul | 88af3f8 | 2009-05-06 12:27:38 -0600 | [diff] [blame] | 223 | |
| 224 | /** |
| 225 | * Error checking for glDrawRangeElements(). Includes parameter checking |
| 226 | * and VBO bounds checking. |
| 227 | * \return GL_TRUE if OK to render, GL_FALSE if error found |
| 228 | */ |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 229 | GLboolean |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 230 | _mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode, |
| 231 | GLuint start, GLuint end, |
| 232 | GLsizei count, GLenum type, |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 233 | const GLvoid *indices, GLint basevertex) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 234 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 235 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 236 | |
| 237 | if (count <= 0) { |
| 238 | if (count < 0) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 239 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 240 | return GL_FALSE; |
| 241 | } |
| 242 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 243 | if (mode > GL_POLYGON) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 244 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 245 | return GL_FALSE; |
| 246 | } |
| 247 | |
| 248 | if (end < start) { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 249 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)"); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 250 | return GL_FALSE; |
| 251 | } |
| 252 | |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 253 | if (type != GL_UNSIGNED_INT && |
| 254 | type != GL_UNSIGNED_BYTE && |
| Brian Paul | 61bac60 | 2002-04-21 21:04:46 +0000 | [diff] [blame] | 255 | type != GL_UNSIGNED_SHORT) { |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 256 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawRangeElements(type)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 257 | return GL_FALSE; |
| 258 | } |
| 259 | |
| Brian Paul | a48b0a5 | 2009-08-14 10:41:03 -0600 | [diff] [blame] | 260 | if (!check_valid_to_render(ctx, "glDrawRangeElements")) |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 261 | return GL_FALSE; |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 262 | |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 263 | /* Vertex buffer object tests */ |
| Brian Paul | 434ec3a | 2009-08-12 13:46:16 -0600 | [diff] [blame] | 264 | if (_mesa_is_bufferobj(ctx->Array.ElementArrayBufferObj)) { |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 265 | /* use indices in the buffer object */ |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 266 | /* make sure count doesn't go outside buffer bounds */ |
| Brian Paul | bb1fb2a | 2009-05-06 12:37:10 -0600 | [diff] [blame] | 267 | if (index_bytes(type, count) > ctx->Array.ElementArrayBufferObj->Size) { |
| Brian | ef5935b | 2007-09-23 13:56:46 -0600 | [diff] [blame] | 268 | _mesa_warning(ctx, "glDrawRangeElements index out of buffer bounds"); |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 269 | return GL_FALSE; |
| 270 | } |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 271 | } |
| 272 | else { |
| Brian | d8c6719 | 2007-08-20 13:12:20 +0100 | [diff] [blame] | 273 | /* not using a VBO */ |
| Brian | 37ece4d | 2007-07-08 09:20:42 -0600 | [diff] [blame] | 274 | if (!indices) |
| 275 | return GL_FALSE; |
| 276 | } |
| 277 | |
| Eric Anholt | 92d7ed8 | 2009-08-27 10:09:24 -0700 | [diff] [blame] | 278 | if (!check_index_bounds(ctx, count, type, indices, basevertex)) |
| 279 | return GL_FALSE; |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 280 | |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 281 | return GL_TRUE; |
| 282 | } |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 283 | |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 284 | |
| 285 | /** |
| 286 | * Called from the tnl module to error check the function parameters and |
| 287 | * verify that we really can draw something. |
| Brian Paul | 88af3f8 | 2009-05-06 12:27:38 -0600 | [diff] [blame] | 288 | * \return GL_TRUE if OK to render, GL_FALSE if error found |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 289 | */ |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 290 | GLboolean |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 291 | _mesa_validate_DrawArrays(GLcontext *ctx, |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 292 | GLenum mode, GLint start, GLsizei count) |
| 293 | { |
| Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame] | 294 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 295 | |
| Brian | 5cb2034 | 2007-10-31 09:38:51 -0600 | [diff] [blame] | 296 | if (count <= 0) { |
| 297 | if (count < 0) |
| 298 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 299 | return GL_FALSE; |
| 300 | } |
| 301 | |
| Brian Paul | 464bc3b | 2003-04-21 15:04:30 +0000 | [diff] [blame] | 302 | if (mode > GL_POLYGON) { |
| Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 303 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 304 | return GL_FALSE; |
| 305 | } |
| 306 | |
| Brian Paul | a48b0a5 | 2009-08-14 10:41:03 -0600 | [diff] [blame] | 307 | if (!check_valid_to_render(ctx, "glDrawArrays")) |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 308 | return GL_FALSE; |
| 309 | |
| 310 | if (ctx->Const.CheckArrayBounds) { |
| Brian Paul | a185bcb | 2009-05-14 13:24:24 -0600 | [diff] [blame] | 311 | if (start + count > (GLint) ctx->Array.ArrayObj->_MaxElement) |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 312 | return GL_FALSE; |
| 313 | } |
| Brian Paul | c5b1e81 | 2003-10-22 22:59:07 +0000 | [diff] [blame] | 314 | |
| 315 | return GL_TRUE; |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 316 | } |