Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 1 | /* $Id: api_validate.c,v 1.5 2001/03/12 00:48:37 gareth Exp $ */ |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 2 | |
| 3 | /* |
| 4 | * Mesa 3-D graphics library |
| 5 | * Version: 3.5 |
| 6 | * |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 7 | * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 8 | * |
| 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 Paul | 8446d1b | 2001-01-02 21:40:57 +0000 | [diff] [blame] | 28 | #include "api_validate.h" |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 29 | #include "context.h" |
| 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 | |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 47 | if (mode < 0 || |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 48 | mode > GL_POLYGON) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 49 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 50 | return GL_FALSE; |
| 51 | } |
| 52 | |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 53 | if (type != GL_UNSIGNED_INT && |
| 54 | type != GL_UNSIGNED_BYTE && |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 55 | type != GL_UNSIGNED_SHORT) |
| 56 | { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 57 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawElements(type)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 58 | return GL_FALSE; |
| 59 | } |
| 60 | |
| 61 | if (ctx->NewState) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 62 | _mesa_update_state( ctx ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 63 | |
| 64 | if (!ctx->Array.Vertex.Enabled) |
| 65 | return GL_FALSE; |
| 66 | |
| 67 | return GL_TRUE; |
| 68 | } |
| 69 | |
| 70 | |
| 71 | GLboolean |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 72 | _mesa_validate_DrawRangeElements(GLcontext *ctx, GLenum mode, |
| 73 | GLuint start, GLuint end, |
| 74 | GLsizei count, GLenum type, |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 75 | const GLvoid *indices) |
| 76 | { |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 77 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 78 | |
| 79 | if (count <= 0) { |
| 80 | if (count < 0) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 81 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawElements(count)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 82 | return GL_FALSE; |
| 83 | } |
| 84 | |
| 85 | if (mode < 0 || mode > GL_POLYGON) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 86 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 87 | return GL_FALSE; |
| 88 | } |
| 89 | |
| 90 | if (end < start) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 91 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)"); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 92 | return GL_FALSE; |
| 93 | } |
| 94 | |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 95 | if (type != GL_UNSIGNED_INT && |
| 96 | type != GL_UNSIGNED_BYTE && |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 97 | type != GL_UNSIGNED_SHORT) |
| 98 | { |
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 | |
| 106 | if (!ctx->Array.Vertex.Enabled) |
| 107 | return GL_FALSE; |
| 108 | |
| 109 | return GL_TRUE; |
| 110 | } |
| 111 | |
| 112 | |
| 113 | |
| 114 | GLboolean |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 115 | _mesa_validate_DrawArrays(GLcontext *ctx, |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 116 | GLenum mode, GLint start, GLsizei count) |
| 117 | { |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 118 | ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 119 | |
| 120 | if (count<0) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 121 | _mesa_error(ctx, GL_INVALID_VALUE, "glDrawArrays(count)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 122 | return GL_FALSE; |
| 123 | } |
| 124 | |
| 125 | if (mode < 0 || mode > GL_POLYGON) { |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 126 | _mesa_error(ctx, GL_INVALID_ENUM, "glDrawArrays(mode)" ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 127 | return GL_FALSE; |
| 128 | } |
| 129 | |
| 130 | if (ctx->NewState) |
Brian Paul | 0883634 | 2001-03-03 20:33:27 +0000 | [diff] [blame] | 131 | _mesa_update_state( ctx ); |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 132 | |
Gareth Hughes | 22144ab | 2001-03-12 00:48:37 +0000 | [diff] [blame^] | 133 | if (!ctx->Array.Vertex.Enabled) |
Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 134 | return GL_FALSE; |
| 135 | |
| 136 | return GL_TRUE; |
| 137 | } |