blob: 46956efb5a8910ff00d25563eda745857fd1ccc5 [file] [log] [blame]
jtgafb833d1999-08-19 00:55:39 +00001/*
2 * Mesa 3-D graphics library
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00003 *
Brian Paul37c74af2008-09-04 14:58:02 -06004 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
Brian Paul39d75242009-05-14 16:25:32 -06005 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00006 *
jtgafb833d1999-08-19 00:55:39 +00007 * 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:
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000013 *
jtgafb833d1999-08-19 00:55:39 +000014 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000016 *
jtgafb833d1999-08-19 00:55:39 +000017 * 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
Kenneth Graunke3d8d5b22013-04-21 13:46:48 -070020 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
jtgafb833d1999-08-19 00:55:39 +000024 */
25
Keith Whitwell6dc85572003-07-17 13:43:59 +000026
Brian Paulfbd8f211999-11-11 01:22:25 +000027#include "glheader.h"
Brian Paul148a2842003-09-17 03:40:11 +000028#include "imports.h"
Brian Paul26895aa2004-03-03 15:35:08 +000029#include "bufferobj.h"
jtgafb833d1999-08-19 00:55:39 +000030#include "context.h"
jtgafb833d1999-08-19 00:55:39 +000031#include "enable.h"
32#include "enums.h"
Brian Paul12cf98f2009-06-19 17:58:47 -060033#include "hash.h"
Brian Paul433e5e62010-10-28 21:17:42 -060034#include "image.h"
Brian Pauld3f598a2010-05-25 21:42:13 -060035#include "macros.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +000036#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +000037#include "varray.h"
Ian Romanickee34e6e2006-06-12 16:26:29 +000038#include "arrayobj.h"
Chia-I Wu2cf44392010-02-24 12:01:14 +080039#include "main/dispatch.h"
jtgafb833d1999-08-19 00:55:39 +000040
Brian Paulc5b1e812003-10-22 22:59:07 +000041
Brian Paul433e5e62010-10-28 21:17:42 -060042/** Used to do error checking for GL_EXT_vertex_array_bgra */
43#define BGRA_OR_4 5
44
45
46/** Used to indicate which GL datatypes are accepted by each of the
47 * glVertex/Color/Attrib/EtcPointer() functions.
48 */
49#define BOOL_BIT 0x1
50#define BYTE_BIT 0x2
51#define UNSIGNED_BYTE_BIT 0x4
52#define SHORT_BIT 0x8
53#define UNSIGNED_SHORT_BIT 0x10
54#define INT_BIT 0x20
55#define UNSIGNED_INT_BIT 0x40
56#define HALF_BIT 0x80
57#define FLOAT_BIT 0x100
58#define DOUBLE_BIT 0x200
Marek Olšák0f1e59d2011-04-29 14:23:15 +020059#define FIXED_ES_BIT 0x400
60#define FIXED_GL_BIT 0x800
Dave Airlie6cd2d552011-08-13 15:30:38 +010061#define UNSIGNED_INT_2_10_10_10_REV_BIT 0x1000
62#define INT_2_10_10_10_REV_BIT 0x2000
Chris Forbes1f092a92013-11-07 22:02:24 +130063#define UNSIGNED_INT_10F_11F_11F_REV_BIT 0x4000
Brian Paul433e5e62010-10-28 21:17:42 -060064
65
66/** Convert GL datatype enum into a <type>_BIT value seen above */
67static GLbitfield
68type_to_bit(const struct gl_context *ctx, GLenum type)
69{
70 switch (type) {
71 case GL_BOOL:
72 return BOOL_BIT;
73 case GL_BYTE:
74 return BYTE_BIT;
75 case GL_UNSIGNED_BYTE:
76 return UNSIGNED_BYTE_BIT;
77 case GL_SHORT:
78 return SHORT_BIT;
79 case GL_UNSIGNED_SHORT:
80 return UNSIGNED_SHORT_BIT;
81 case GL_INT:
82 return INT_BIT;
83 case GL_UNSIGNED_INT:
84 return UNSIGNED_INT_BIT;
85 case GL_HALF_FLOAT:
86 if (ctx->Extensions.ARB_half_float_vertex)
87 return HALF_BIT;
88 else
89 return 0x0;
90 case GL_FLOAT:
91 return FLOAT_BIT;
92 case GL_DOUBLE:
93 return DOUBLE_BIT;
94 case GL_FIXED:
Jordan Justen09714c02012-07-19 11:27:16 -070095 return _mesa_is_desktop_gl(ctx) ? FIXED_GL_BIT : FIXED_ES_BIT;
Dave Airlie6cd2d552011-08-13 15:30:38 +010096 case GL_UNSIGNED_INT_2_10_10_10_REV:
97 return UNSIGNED_INT_2_10_10_10_REV_BIT;
98 case GL_INT_2_10_10_10_REV:
99 return INT_2_10_10_10_REV_BIT;
Chris Forbes1f092a92013-11-07 22:02:24 +1300100 case GL_UNSIGNED_INT_10F_11F_11F_REV:
101 return UNSIGNED_INT_10F_11F_11F_REV_BIT;
Brian Paul433e5e62010-10-28 21:17:42 -0600102 default:
103 return 0;
104 }
105}
106
107
Brian Paulc5b1e812003-10-22 22:59:07 +0000108/**
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200109 * Sets the VertexBinding field in the vertex attribute given by attribIndex.
110 */
111static void
112vertex_attrib_binding(struct gl_context *ctx, GLuint attribIndex,
113 GLuint bindingIndex)
114{
Kenneth Graunkeaac14152014-02-01 19:36:59 -0800115 struct gl_vertex_array_object *vao = ctx->Array.VAO;
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800116 struct gl_vertex_attrib_array *array = &vao->VertexAttrib[attribIndex];
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200117
118 if (array->VertexBinding != bindingIndex) {
119 const GLbitfield64 array_bit = VERT_BIT(attribIndex);
120
121 FLUSH_VERTICES(ctx, _NEW_ARRAY);
122
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800123 vao->VertexBinding[array->VertexBinding]._BoundArrays &= ~array_bit;
124 vao->VertexBinding[bindingIndex]._BoundArrays |= array_bit;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200125
126 array->VertexBinding = bindingIndex;
127
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800128 vao->NewArrays |= array_bit;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200129 }
130}
131
132
133/**
134 * Binds a buffer object to the vertex buffer binding point given by index,
135 * and sets the Offset and Stride fields.
136 */
137static void
138bind_vertex_buffer(struct gl_context *ctx, GLuint index,
139 struct gl_buffer_object *vbo,
140 GLintptr offset, GLsizei stride)
141{
Kenneth Graunkeaac14152014-02-01 19:36:59 -0800142 struct gl_vertex_array_object *vao = ctx->Array.VAO;
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800143 struct gl_vertex_buffer_binding *binding = &vao->VertexBinding[index];
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200144
145 if (binding->BufferObj != vbo ||
146 binding->Offset != offset ||
147 binding->Stride != stride) {
148
149 FLUSH_VERTICES(ctx, _NEW_ARRAY);
150
151 _mesa_reference_buffer_object(ctx, &binding->BufferObj, vbo);
152
153 binding->Offset = offset;
154 binding->Stride = stride;
155
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800156 vao->NewArrays |= binding->_BoundArrays;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200157 }
158}
159
160
161/**
162 * Sets the InstanceDivisor field in the vertex buffer binding point
163 * given by bindingIndex.
164 */
165static void
166vertex_binding_divisor(struct gl_context *ctx, GLuint bindingIndex,
167 GLuint divisor)
168{
Kenneth Graunkeaac14152014-02-01 19:36:59 -0800169 struct gl_vertex_array_object *vao = ctx->Array.VAO;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200170 struct gl_vertex_buffer_binding *binding =
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800171 &vao->VertexBinding[bindingIndex];
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200172
173 if (binding->InstanceDivisor != divisor) {
174 FLUSH_VERTICES(ctx, _NEW_ARRAY);
175 binding->InstanceDivisor = divisor;
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800176 vao->NewArrays |= binding->_BoundArrays;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200177 }
178}
179
180
181/**
Fredrik Höglundd5543212013-04-03 21:47:44 +0200182 * Does error checking and updates the format in an attrib array.
Brian Paulf9d88c82006-06-13 17:24:36 +0000183 *
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200184 * Called by update_array() and VertexAttrib*Format().
Fredrik Höglundd5543212013-04-03 21:47:44 +0200185 *
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200186 * \param func Name of calling function used for error reporting
187 * \param attrib The index of the attribute array
188 * \param legalTypes Bitmask of *_BIT above indicating legal datatypes
189 * \param sizeMin Min allowable size value
190 * \param sizeMax Max allowable size value (may also be BGRA_OR_4)
191 * \param size Components per element (1, 2, 3 or 4)
192 * \param type Datatype of each component (GL_FLOAT, GL_INT, etc)
193 * \param normalized Whether integer types are converted to floats in [-1, 1]
194 * \param integer Integer-valued values (will not be normalized to [-1, 1])
195 * \param relativeOffset Offset of the first element relative to the binding offset.
Brian Paulc5b1e812003-10-22 22:59:07 +0000196 */
Fredrik Höglundd5543212013-04-03 21:47:44 +0200197static bool
198update_array_format(struct gl_context *ctx,
199 const char *func,
200 GLuint attrib, GLbitfield legalTypesMask,
201 GLint sizeMin, GLint sizeMax,
202 GLint size, GLenum type,
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200203 GLboolean normalized, GLboolean integer,
204 GLuint relativeOffset)
Brian Paulc5b1e812003-10-22 22:59:07 +0000205{
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200206 struct gl_vertex_attrib_array *array;
Brian Paul433e5e62010-10-28 21:17:42 -0600207 GLbitfield typeBit;
Fredrik Höglundd5543212013-04-03 21:47:44 +0200208 GLuint elementSize;
Brian Paul433e5e62010-10-28 21:17:42 -0600209 GLenum format = GL_RGBA;
210
Ian Romanickbbceed22012-07-25 14:40:18 -0700211 if (_mesa_is_gles(ctx)) {
Chris Forbes1f092a92013-11-07 22:02:24 +1300212 legalTypesMask &= ~(FIXED_GL_BIT | DOUBLE_BIT | UNSIGNED_INT_10F_11F_11F_REV_BIT);
Ian Romanickbbceed22012-07-25 14:40:18 -0700213
214 /* GL_INT and GL_UNSIGNED_INT data is not allowed in OpenGL ES until
215 * 3.0. The 2_10_10_10 types are added in OpenGL ES 3.0 or
Matt Turnerc8901132012-11-28 21:45:19 -0800216 * GL_OES_vertex_type_10_10_10_2. GL_HALF_FLOAT data is not allowed
217 * until 3.0 or with the GL_OES_vertex_half float extension, which isn't
218 * quite as trivial as we'd like because it uses a different enum value
219 * for GL_HALF_FLOAT_OES.
Ian Romanickbbceed22012-07-25 14:40:18 -0700220 */
221 if (ctx->Version < 30) {
222 legalTypesMask &= ~(UNSIGNED_INT_BIT
223 | INT_BIT
224 | UNSIGNED_INT_2_10_10_10_REV_BIT
Matt Turnerc8901132012-11-28 21:45:19 -0800225 | INT_2_10_10_10_REV_BIT
226 | HALF_BIT);
Ian Romanickbbceed22012-07-25 14:40:18 -0700227 }
Ian Romanick946ddec2012-07-25 14:46:54 -0700228
229 /* BGRA ordering is not supported in ES contexts.
230 */
231 if (sizeMax == BGRA_OR_4)
232 sizeMax = 4;
Ian Romanickbbceed22012-07-25 14:40:18 -0700233 } else {
Marek Olšák0f1e59d2011-04-29 14:23:15 +0200234 legalTypesMask &= ~FIXED_ES_BIT;
Ian Romanickbbceed22012-07-25 14:40:18 -0700235
236 if (!ctx->Extensions.ARB_ES2_compatibility)
237 legalTypesMask &= ~FIXED_GL_BIT;
238
239 if (!ctx->Extensions.ARB_vertex_type_2_10_10_10_rev)
240 legalTypesMask &= ~(UNSIGNED_INT_2_10_10_10_REV_BIT |
241 INT_2_10_10_10_REV_BIT);
Chris Forbes1f092a92013-11-07 22:02:24 +1300242
243 if (!ctx->Extensions.ARB_vertex_type_10f_11f_11f_rev)
244 legalTypesMask &= ~UNSIGNED_INT_10F_11F_11F_REV_BIT;
Dave Airlie6cd2d552011-08-13 15:30:38 +0100245 }
Brian Paul11dd2282010-11-07 18:35:35 -0700246
Brian Paul433e5e62010-10-28 21:17:42 -0600247 typeBit = type_to_bit(ctx, type);
248 if (typeBit == 0x0 || (typeBit & legalTypesMask) == 0x0) {
249 _mesa_error(ctx, GL_INVALID_ENUM, "%s(type = %s)",
250 func, _mesa_lookup_enum_by_nr(type));
Fredrik Höglundd5543212013-04-03 21:47:44 +0200251 return false;
Brian Paul433e5e62010-10-28 21:17:42 -0600252 }
253
254 /* Do size parameter checking.
255 * If sizeMax = BGRA_OR_4 it means that size = GL_BGRA is legal and
256 * must be handled specially.
257 */
258 if (ctx->Extensions.EXT_vertex_array_bgra &&
259 sizeMax == BGRA_OR_4 &&
260 size == GL_BGRA) {
Fredrik Höglund0e7a61a2013-04-12 17:36:06 +0200261 /* Page 298 of the PDF of the OpenGL 4.3 (Core Profile) spec says:
262 *
263 * "An INVALID_OPERATION error is generated under any of the following
264 * conditions:
265 * ...
266 * • size is BGRA and type is not UNSIGNED_BYTE, INT_2_10_10_10_REV
267 * or UNSIGNED_INT_2_10_10_10_REV;
268 * ...
269 * • size is BGRA and normalized is FALSE;"
270 */
Fredrik Höglundd5543212013-04-03 21:47:44 +0200271 bool bgra_error = false;
Dave Airlie99c1a582011-09-07 10:19:14 +0100272
273 if (ctx->Extensions.ARB_vertex_type_2_10_10_10_rev) {
274 if (type != GL_UNSIGNED_INT_2_10_10_10_REV &&
275 type != GL_INT_2_10_10_10_REV &&
276 type != GL_UNSIGNED_BYTE)
Fredrik Höglundd5543212013-04-03 21:47:44 +0200277 bgra_error = true;
Dave Airlie99c1a582011-09-07 10:19:14 +0100278 } else if (type != GL_UNSIGNED_BYTE)
Fredrik Höglundd5543212013-04-03 21:47:44 +0200279 bgra_error = true;
Dave Airlie99c1a582011-09-07 10:19:14 +0100280
281 if (bgra_error) {
Fredrik Höglund0e7a61a2013-04-12 17:36:06 +0200282 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(size=GL_BGRA and type=%s)",
283 func, _mesa_lookup_enum_by_nr(type));
Fredrik Höglundd5543212013-04-03 21:47:44 +0200284 return false;
Brian Paul433e5e62010-10-28 21:17:42 -0600285 }
Fredrik Höglund0e7a61a2013-04-12 17:36:06 +0200286
287 if (!normalized) {
288 _mesa_error(ctx, GL_INVALID_OPERATION,
289 "%s(size=GL_BGRA and normalized=GL_FALSE)", func);
Fredrik Höglundd5543212013-04-03 21:47:44 +0200290 return false;
Fredrik Höglund0e7a61a2013-04-12 17:36:06 +0200291 }
292
Brian Paul433e5e62010-10-28 21:17:42 -0600293 format = GL_BGRA;
294 size = 4;
295 }
296 else if (size < sizeMin || size > sizeMax || size > 4) {
297 _mesa_error(ctx, GL_INVALID_VALUE, "%s(size=%d)", func, size);
Fredrik Höglundd5543212013-04-03 21:47:44 +0200298 return false;
Brian Paul433e5e62010-10-28 21:17:42 -0600299 }
300
Dave Airlie6cd2d552011-08-13 15:30:38 +0100301 if (ctx->Extensions.ARB_vertex_type_2_10_10_10_rev &&
302 (type == GL_UNSIGNED_INT_2_10_10_10_REV ||
303 type == GL_INT_2_10_10_10_REV) && size != 4) {
304 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(size=%d)", func, size);
Fredrik Höglundd5543212013-04-03 21:47:44 +0200305 return false;
Dave Airlie6cd2d552011-08-13 15:30:38 +0100306 }
307
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200308 /* The ARB_vertex_attrib_binding_spec says:
309 *
310 * An INVALID_VALUE error is generated if <relativeoffset> is larger than
311 * the value of MAX_VERTEX_ATTRIB_RELATIVE_OFFSET.
312 */
313 if (relativeOffset > ctx->Const.MaxVertexAttribRelativeOffset) {
314 _mesa_error(ctx, GL_INVALID_VALUE,
315 "%s(relativeOffset=%d > "
316 "GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET)",
317 func, relativeOffset);
Brian Paulfe9284a2013-11-07 15:23:34 -0700318 return false;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200319 }
320
Chris Forbes1f092a92013-11-07 22:02:24 +1300321 if (ctx->Extensions.ARB_vertex_type_10f_11f_11f_rev &&
322 type == GL_UNSIGNED_INT_10F_11F_11F_REV && size != 3) {
323 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(size=%d)", func, size);
Brian Paulfe9284a2013-11-07 15:23:34 -0700324 return false;
Chris Forbes1f092a92013-11-07 22:02:24 +1300325 }
326
Brian Paul433e5e62010-10-28 21:17:42 -0600327 ASSERT(size <= 4);
328
Fredrik Höglundd5543212013-04-03 21:47:44 +0200329 elementSize = _mesa_bytes_per_vertex_attrib(size, type);
330 assert(elementSize != -1);
331
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800332 array = &ctx->Array.VAO->VertexAttrib[attrib];
Fredrik Höglundd5543212013-04-03 21:47:44 +0200333 array->Size = size;
334 array->Type = type;
335 array->Format = format;
336 array->Normalized = normalized;
337 array->Integer = integer;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200338 array->RelativeOffset = relativeOffset;
Fredrik Höglundd5543212013-04-03 21:47:44 +0200339 array->_ElementSize = elementSize;
340
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800341 ctx->Array.VAO->NewArrays |= VERT_BIT(attrib);
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200342 ctx->NewState |= _NEW_ARRAY;
343
Fredrik Höglundd5543212013-04-03 21:47:44 +0200344 return true;
345}
346
347
348/**
349 * Do error checking and update state for glVertex/Color/TexCoord/...Pointer
350 * functions.
351 *
352 * \param func name of calling function used for error reporting
353 * \param attrib the attribute array index to update
354 * \param legalTypes bitmask of *_BIT above indicating legal datatypes
355 * \param sizeMin min allowable size value
356 * \param sizeMax max allowable size value (may also be BGRA_OR_4)
357 * \param size components per element (1, 2, 3 or 4)
358 * \param type datatype of each component (GL_FLOAT, GL_INT, etc)
359 * \param stride stride between elements, in elements
360 * \param normalized are integer types converted to floats in [-1, 1]?
361 * \param integer integer-valued values (will not be normalized to [-1,1])
362 * \param ptr the address (or offset inside VBO) of the array data
363 */
364static void
365update_array(struct gl_context *ctx,
366 const char *func,
367 GLuint attrib, GLbitfield legalTypesMask,
368 GLint sizeMin, GLint sizeMax,
369 GLint size, GLenum type, GLsizei stride,
370 GLboolean normalized, GLboolean integer,
371 const GLvoid *ptr)
372{
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200373 struct gl_vertex_attrib_array *array;
374 GLsizei effectiveStride;
Fredrik Höglundd5543212013-04-03 21:47:44 +0200375
376 /* Page 407 (page 423 of the PDF) of the OpenGL 3.0 spec says:
377 *
378 * "Client vertex arrays - all vertex array attribute pointers must
379 * refer to buffer objects (section 2.9.2). The default vertex array
380 * object (the name zero) is also deprecated. Calling
381 * VertexAttribPointer when no buffer object or no vertex array object
382 * is bound will generate an INVALID_OPERATION error..."
383 *
384 * The check for VBOs is handled below.
385 */
386 if (ctx->API == API_OPENGL_CORE
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800387 && (ctx->Array.VAO == ctx->Array.DefaultVAO)) {
Fredrik Höglundd5543212013-04-03 21:47:44 +0200388 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(no array object bound)",
389 func);
390 return;
391 }
392
Brian Paul433e5e62010-10-28 21:17:42 -0600393 if (stride < 0) {
394 _mesa_error( ctx, GL_INVALID_VALUE, "%s(stride=%d)", func, stride );
395 return;
396 }
Brian Paule2b72492009-06-22 16:56:35 -0600397
Ian Romanick843b8762012-08-17 17:12:39 -0700398 /* Page 29 (page 44 of the PDF) of the OpenGL 3.3 spec says:
399 *
400 * "An INVALID_OPERATION error is generated under any of the following
401 * conditions:
402 *
403 * ...
404 *
405 * * any of the *Pointer commands specifying the location and
406 * organization of vertex array data are called while zero is bound
407 * to the ARRAY_BUFFER buffer object binding point (see section
408 * 2.9.6), and the pointer argument is not NULL."
409 */
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800410 if (ptr != NULL && ctx->Array.VAO->ARBsemantics &&
Brian Paulefcf5aa2011-11-29 07:44:20 -0700411 !_mesa_is_bufferobj(ctx->Array.ArrayBufferObj)) {
Brian Paul433e5e62010-10-28 21:17:42 -0600412 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(non-VBO array)", func);
Brian Paulf549f4c2009-11-12 23:04:26 -0700413 return;
Brian Paule2b72492009-06-22 16:56:35 -0600414 }
415
Brian Paulce193d42013-11-11 15:06:13 -0700416 if (!update_array_format(ctx, func, attrib, legalTypesMask, sizeMin,
417 sizeMax, size, type, normalized, integer, 0)) {
418 return;
419 }
420
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200421 /* Reset the vertex attrib binding */
422 vertex_attrib_binding(ctx, attrib, attrib);
423
424 /* The Stride and Ptr fields are not set by update_array_format() */
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800425 array = &ctx->Array.VAO->VertexAttrib[attrib];
Brian Paulc5b1e812003-10-22 22:59:07 +0000426 array->Stride = stride;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200427 array->Ptr = (const GLvoid *) ptr;
Brian Paul0077c872009-05-06 13:00:35 -0600428
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200429 /* Update the vertex buffer binding */
430 effectiveStride = stride != 0 ? stride : array->_ElementSize;
431 bind_vertex_buffer(ctx, attrib, ctx->Array.ArrayBufferObj,
432 (GLintptr) ptr, effectiveStride);
Brian Paulc5b1e812003-10-22 22:59:07 +0000433}
434
435
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000436void GLAPIENTRY
Brian Paulfbd8f211999-11-11 01:22:25 +0000437_mesa_VertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr)
jtgafb833d1999-08-19 00:55:39 +0000438{
Brian Paulfbd8f211999-11-11 01:22:25 +0000439 GET_CURRENT_CONTEXT(ctx);
Ian Romanicke2cf14d2012-07-25 15:19:31 -0700440 GLbitfield legalTypes = (ctx->API == API_OPENGLES)
441 ? (BYTE_BIT | SHORT_BIT | FLOAT_BIT | FIXED_ES_BIT)
442 : (SHORT_BIT | INT_BIT | FLOAT_BIT |
443 DOUBLE_BIT | HALF_BIT |
444 UNSIGNED_INT_2_10_10_10_REV_BIT |
445 INT_2_10_10_10_REV_BIT);
Eric Anholta9754792013-01-16 16:20:38 -0800446
447 FLUSH_VERTICES(ctx, 0);
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000448
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100449 update_array(ctx, "glVertexPointer", VERT_ATTRIB_POS,
Brian Paul433e5e62010-10-28 21:17:42 -0600450 legalTypes, 2, 4,
451 size, type, stride, GL_FALSE, GL_FALSE, ptr);
jtgafb833d1999-08-19 00:55:39 +0000452}
453
454
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000455void GLAPIENTRY
Brian Paulfbd8f211999-11-11 01:22:25 +0000456_mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr )
jtgafb833d1999-08-19 00:55:39 +0000457{
Brian Paulfbd8f211999-11-11 01:22:25 +0000458 GET_CURRENT_CONTEXT(ctx);
Ian Romanicke5ef0cb2012-07-25 15:10:21 -0700459 const GLbitfield legalTypes = (ctx->API == API_OPENGLES)
460 ? (BYTE_BIT | SHORT_BIT | FLOAT_BIT | FIXED_ES_BIT)
461 : (BYTE_BIT | SHORT_BIT | INT_BIT |
462 HALF_BIT | FLOAT_BIT | DOUBLE_BIT |
463 UNSIGNED_INT_2_10_10_10_REV_BIT |
464 INT_2_10_10_10_REV_BIT);
Eric Anholta9754792013-01-16 16:20:38 -0800465
466 FLUSH_VERTICES(ctx, 0);
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000467
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100468 update_array(ctx, "glNormalPointer", VERT_ATTRIB_NORMAL,
Brian Paul433e5e62010-10-28 21:17:42 -0600469 legalTypes, 3, 3,
470 3, type, stride, GL_TRUE, GL_FALSE, ptr);
jtgafb833d1999-08-19 00:55:39 +0000471}
472
473
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000474void GLAPIENTRY
Brian Paulfbd8f211999-11-11 01:22:25 +0000475_mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr)
jtgafb833d1999-08-19 00:55:39 +0000476{
Brian Paulfbd8f211999-11-11 01:22:25 +0000477 GET_CURRENT_CONTEXT(ctx);
Ian Romanick07ccfef2012-07-25 14:53:01 -0700478 const GLbitfield legalTypes = (ctx->API == API_OPENGLES)
479 ? (UNSIGNED_BYTE_BIT | HALF_BIT | FLOAT_BIT | FIXED_ES_BIT)
480 : (BYTE_BIT | UNSIGNED_BYTE_BIT |
481 SHORT_BIT | UNSIGNED_SHORT_BIT |
482 INT_BIT | UNSIGNED_INT_BIT |
483 HALF_BIT | FLOAT_BIT | DOUBLE_BIT |
484 UNSIGNED_INT_2_10_10_10_REV_BIT |
485 INT_2_10_10_10_REV_BIT);
Ian Romanickfb821852012-07-25 14:58:36 -0700486 const GLint sizeMin = (ctx->API == API_OPENGLES) ? 4 : 3;
Eric Anholta9754792013-01-16 16:20:38 -0800487
488 FLUSH_VERTICES(ctx, 0);
Brian Paulfbd8f211999-11-11 01:22:25 +0000489
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100490 update_array(ctx, "glColorPointer", VERT_ATTRIB_COLOR0,
Ian Romanickfb821852012-07-25 14:58:36 -0700491 legalTypes, sizeMin, BGRA_OR_4,
Brian Paul433e5e62010-10-28 21:17:42 -0600492 size, type, stride, GL_TRUE, GL_FALSE, ptr);
jtgafb833d1999-08-19 00:55:39 +0000493}
494
495
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000496void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800497_mesa_FogCoordPointer(GLenum type, GLsizei stride, const GLvoid *ptr)
Keith Whitwellfe5d67d2000-10-27 16:44:40 +0000498{
Brian Paul433e5e62010-10-28 21:17:42 -0600499 const GLbitfield legalTypes = (HALF_BIT | FLOAT_BIT | DOUBLE_BIT);
Keith Whitwellfe5d67d2000-10-27 16:44:40 +0000500 GET_CURRENT_CONTEXT(ctx);
Eric Anholta9754792013-01-16 16:20:38 -0800501
502 FLUSH_VERTICES(ctx, 0);
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000503
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100504 update_array(ctx, "glFogCoordPointer", VERT_ATTRIB_FOG,
Brian Paul433e5e62010-10-28 21:17:42 -0600505 legalTypes, 1, 1,
506 1, type, stride, GL_FALSE, GL_FALSE, ptr);
Keith Whitwellfe5d67d2000-10-27 16:44:40 +0000507}
508
509
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000510void GLAPIENTRY
Brian Paulfbd8f211999-11-11 01:22:25 +0000511_mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr)
jtgafb833d1999-08-19 00:55:39 +0000512{
Brian Paul433e5e62010-10-28 21:17:42 -0600513 const GLbitfield legalTypes = (UNSIGNED_BYTE_BIT | SHORT_BIT | INT_BIT |
514 FLOAT_BIT | DOUBLE_BIT);
Brian Paulfbd8f211999-11-11 01:22:25 +0000515 GET_CURRENT_CONTEXT(ctx);
Eric Anholta9754792013-01-16 16:20:38 -0800516
517 FLUSH_VERTICES(ctx, 0);
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000518
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100519 update_array(ctx, "glIndexPointer", VERT_ATTRIB_COLOR_INDEX,
Brian Paul433e5e62010-10-28 21:17:42 -0600520 legalTypes, 1, 1,
521 1, type, stride, GL_FALSE, GL_FALSE, ptr);
jtgafb833d1999-08-19 00:55:39 +0000522}
523
524
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000525void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800526_mesa_SecondaryColorPointer(GLint size, GLenum type,
Keith Whitwellfe5d67d2000-10-27 16:44:40 +0000527 GLsizei stride, const GLvoid *ptr)
528{
Brian Paul433e5e62010-10-28 21:17:42 -0600529 const GLbitfield legalTypes = (BYTE_BIT | UNSIGNED_BYTE_BIT |
530 SHORT_BIT | UNSIGNED_SHORT_BIT |
531 INT_BIT | UNSIGNED_INT_BIT |
Dave Airlie6cd2d552011-08-13 15:30:38 +0100532 HALF_BIT | FLOAT_BIT | DOUBLE_BIT |
533 UNSIGNED_INT_2_10_10_10_REV_BIT |
534 INT_2_10_10_10_REV_BIT);
Keith Whitwellfe5d67d2000-10-27 16:44:40 +0000535 GET_CURRENT_CONTEXT(ctx);
Eric Anholta9754792013-01-16 16:20:38 -0800536
537 FLUSH_VERTICES(ctx, 0);
Keith Whitwellfe5d67d2000-10-27 16:44:40 +0000538
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100539 update_array(ctx, "glSecondaryColorPointer", VERT_ATTRIB_COLOR1,
Brian Paul433e5e62010-10-28 21:17:42 -0600540 legalTypes, 3, BGRA_OR_4,
541 size, type, stride, GL_TRUE, GL_FALSE, ptr);
Keith Whitwellfe5d67d2000-10-27 16:44:40 +0000542}
543
544
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000545void GLAPIENTRY
Brian Paul2edd1802002-01-11 17:25:35 +0000546_mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride,
547 const GLvoid *ptr)
jtgafb833d1999-08-19 00:55:39 +0000548{
Brian Paulfbd8f211999-11-11 01:22:25 +0000549 GET_CURRENT_CONTEXT(ctx);
Ian Romanickc3e9a202012-07-25 15:13:00 -0700550 GLbitfield legalTypes = (ctx->API == API_OPENGLES)
551 ? (BYTE_BIT | SHORT_BIT | FLOAT_BIT | FIXED_ES_BIT)
552 : (SHORT_BIT | INT_BIT |
553 HALF_BIT | FLOAT_BIT | DOUBLE_BIT |
554 UNSIGNED_INT_2_10_10_10_REV_BIT |
555 INT_2_10_10_10_REV_BIT);
Ian Romanicka8f475d2012-07-25 15:13:51 -0700556 const GLint sizeMin = (ctx->API == API_OPENGLES) ? 2 : 1;
Brian Paulc5b1e812003-10-22 22:59:07 +0000557 const GLuint unit = ctx->Array.ActiveTexture;
Eric Anholta9754792013-01-16 16:20:38 -0800558
559 FLUSH_VERTICES(ctx, 0);
jtgafb833d1999-08-19 00:55:39 +0000560
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100561 update_array(ctx, "glTexCoordPointer", VERT_ATTRIB_TEX(unit),
Ian Romanicka8f475d2012-07-25 15:13:51 -0700562 legalTypes, sizeMin, 4,
Brian Paul433e5e62010-10-28 21:17:42 -0600563 size, type, stride, GL_FALSE, GL_FALSE,
Brian Pauld1184d22010-10-28 21:17:41 -0600564 ptr);
jtgafb833d1999-08-19 00:55:39 +0000565}
566
567
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000568void GLAPIENTRY
Brian Paulc5b1e812003-10-22 22:59:07 +0000569_mesa_EdgeFlagPointer(GLsizei stride, const GLvoid *ptr)
jtgafb833d1999-08-19 00:55:39 +0000570{
Brian Paulee1f0472010-11-02 08:22:40 -0600571 const GLbitfield legalTypes = UNSIGNED_BYTE_BIT;
Marek Olšák780ce572014-03-03 01:01:05 +0100572 /* this is the same type that glEdgeFlag uses */
573 const GLboolean integer = GL_FALSE;
Brian Paulfbd8f211999-11-11 01:22:25 +0000574 GET_CURRENT_CONTEXT(ctx);
Eric Anholta9754792013-01-16 16:20:38 -0800575
576 FLUSH_VERTICES(ctx, 0);
jtgafb833d1999-08-19 00:55:39 +0000577
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100578 update_array(ctx, "glEdgeFlagPointer", VERT_ATTRIB_EDGEFLAG,
Brian Paul433e5e62010-10-28 21:17:42 -0600579 legalTypes, 1, 1,
Brian Paulee1f0472010-11-02 08:22:40 -0600580 1, GL_UNSIGNED_BYTE, stride, GL_FALSE, integer, ptr);
jtgafb833d1999-08-19 00:55:39 +0000581}
582
583
Brian Paul1cf2c8a2008-06-25 08:45:14 -0600584void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800585_mesa_PointSizePointerOES(GLenum type, GLsizei stride, const GLvoid *ptr)
Brian Paul1cf2c8a2008-06-25 08:45:14 -0600586{
Marek Olšák0f1e59d2011-04-29 14:23:15 +0200587 const GLbitfield legalTypes = (FLOAT_BIT | FIXED_ES_BIT);
Brian Paul1cf2c8a2008-06-25 08:45:14 -0600588 GET_CURRENT_CONTEXT(ctx);
Eric Anholta9754792013-01-16 16:20:38 -0800589
590 FLUSH_VERTICES(ctx, 0);
Brian Paul1cf2c8a2008-06-25 08:45:14 -0600591
Brian Paul11dd2282010-11-07 18:35:35 -0700592 if (ctx->API != API_OPENGLES) {
593 _mesa_error(ctx, GL_INVALID_OPERATION,
594 "glPointSizePointer(ES 1.x only)");
595 return;
596 }
597
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100598 update_array(ctx, "glPointSizePointer", VERT_ATTRIB_POINT_SIZE,
Brian Paul433e5e62010-10-28 21:17:42 -0600599 legalTypes, 1, 1,
600 1, type, stride, GL_FALSE, GL_FALSE, ptr);
Brian Paul1cf2c8a2008-06-25 08:45:14 -0600601}
602
603
Brian Paula554d7c2009-05-21 15:55:33 -0600604/**
Brian Paula554d7c2009-05-21 15:55:33 -0600605 * Set a generic vertex attribute array.
606 * Note that these arrays DO NOT alias the conventional GL vertex arrays
607 * (position, normal, color, fog, texcoord, etc).
608 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000609void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800610_mesa_VertexAttribPointer(GLuint index, GLint size, GLenum type,
Brian Paul92f97852003-05-01 22:44:02 +0000611 GLboolean normalized,
612 GLsizei stride, const GLvoid *ptr)
613{
Brian Paul433e5e62010-10-28 21:17:42 -0600614 const GLbitfield legalTypes = (BYTE_BIT | UNSIGNED_BYTE_BIT |
615 SHORT_BIT | UNSIGNED_SHORT_BIT |
616 INT_BIT | UNSIGNED_INT_BIT |
617 HALF_BIT | FLOAT_BIT | DOUBLE_BIT |
Dave Airlie6cd2d552011-08-13 15:30:38 +0100618 FIXED_ES_BIT | FIXED_GL_BIT |
619 UNSIGNED_INT_2_10_10_10_REV_BIT |
Chris Forbes1f092a92013-11-07 22:02:24 +1300620 INT_2_10_10_10_REV_BIT |
621 UNSIGNED_INT_10F_11F_11F_REV_BIT);
Brian Paul92f97852003-05-01 22:44:02 +0000622 GET_CURRENT_CONTEXT(ctx);
Brian Paul92f97852003-05-01 22:44:02 +0000623
Paul Berry84732a92014-01-08 10:00:28 -0800624 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Brian Paul92f97852003-05-01 22:44:02 +0000625 _mesa_error(ctx, GL_INVALID_VALUE, "glVertexAttribPointerARB(index)");
626 return;
627 }
628
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100629 update_array(ctx, "glVertexAttribPointer", VERT_ATTRIB_GENERIC(index),
Brian Paul433e5e62010-10-28 21:17:42 -0600630 legalTypes, 1, BGRA_OR_4,
631 size, type, stride, normalized, GL_FALSE, ptr);
Brian Paul92f97852003-05-01 22:44:02 +0000632}
Brian Paul92f97852003-05-01 22:44:02 +0000633
634
Brian Paule00d07c2010-05-25 21:12:24 -0600635/**
Brian Pauld1184d22010-10-28 21:17:41 -0600636 * GL_EXT_gpu_shader4 / GL 3.0.
Brian Paule00d07c2010-05-25 21:12:24 -0600637 * Set an integer-valued vertex attribute array.
638 * Note that these arrays DO NOT alias the conventional GL vertex arrays
639 * (position, normal, color, fog, texcoord, etc).
640 */
641void GLAPIENTRY
642_mesa_VertexAttribIPointer(GLuint index, GLint size, GLenum type,
Brian Paule00d07c2010-05-25 21:12:24 -0600643 GLsizei stride, const GLvoid *ptr)
644{
Brian Paul433e5e62010-10-28 21:17:42 -0600645 const GLbitfield legalTypes = (BYTE_BIT | UNSIGNED_BYTE_BIT |
646 SHORT_BIT | UNSIGNED_SHORT_BIT |
647 INT_BIT | UNSIGNED_INT_BIT);
Brian Pauld1184d22010-10-28 21:17:41 -0600648 const GLboolean normalized = GL_FALSE;
649 const GLboolean integer = GL_TRUE;
Brian Pauld1184d22010-10-28 21:17:41 -0600650 GET_CURRENT_CONTEXT(ctx);
Brian Pauld1184d22010-10-28 21:17:41 -0600651
Paul Berry84732a92014-01-08 10:00:28 -0800652 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Brian Pauld1184d22010-10-28 21:17:41 -0600653 _mesa_error(ctx, GL_INVALID_VALUE, "glVertexAttribIPointer(index)");
654 return;
655 }
656
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100657 update_array(ctx, "glVertexAttribIPointer", VERT_ATTRIB_GENERIC(index),
Brian Paul433e5e62010-10-28 21:17:42 -0600658 legalTypes, 1, 4,
659 size, type, stride, normalized, integer, ptr);
Brian Paule00d07c2010-05-25 21:12:24 -0600660}
661
662
663
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000664void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800665_mesa_EnableVertexAttribArray(GLuint index)
Brian Pauld3f598a2010-05-25 21:42:13 -0600666{
Kenneth Graunkeaac14152014-02-01 19:36:59 -0800667 struct gl_vertex_array_object *vao;
Brian Pauld3f598a2010-05-25 21:42:13 -0600668 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600669
Paul Berry84732a92014-01-08 10:00:28 -0800670 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Brian Pauld3f598a2010-05-25 21:42:13 -0600671 _mesa_error(ctx, GL_INVALID_VALUE,
672 "glEnableVertexAttribArrayARB(index)");
673 return;
674 }
675
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800676 vao = ctx->Array.VAO;
Brian Pauld3f598a2010-05-25 21:42:13 -0600677
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800678 ASSERT(VERT_ATTRIB_GENERIC(index) < Elements(vao->_VertexAttrib));
Brian Paul45453d82012-02-19 19:50:31 -0700679
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800680 if (!vao->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Enabled) {
Brian Paul45453d82012-02-19 19:50:31 -0700681 /* was disabled, now being enabled */
682 FLUSH_VERTICES(ctx, _NEW_ARRAY);
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800683 vao->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Enabled = GL_TRUE;
684 vao->_Enabled |= VERT_BIT_GENERIC(index);
685 vao->NewArrays |= VERT_BIT_GENERIC(index);
Brian Paul45453d82012-02-19 19:50:31 -0700686 }
Brian Pauld3f598a2010-05-25 21:42:13 -0600687}
688
689
690void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800691_mesa_DisableVertexAttribArray(GLuint index)
Brian Pauld3f598a2010-05-25 21:42:13 -0600692{
Kenneth Graunkeaac14152014-02-01 19:36:59 -0800693 struct gl_vertex_array_object *vao;
Brian Pauld3f598a2010-05-25 21:42:13 -0600694 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600695
Paul Berry84732a92014-01-08 10:00:28 -0800696 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Brian Pauld3f598a2010-05-25 21:42:13 -0600697 _mesa_error(ctx, GL_INVALID_VALUE,
Brian Paul95368f22011-04-06 14:22:39 -0600698 "glDisableVertexAttribArrayARB(index)");
Brian Pauld3f598a2010-05-25 21:42:13 -0600699 return;
700 }
701
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800702 vao = ctx->Array.VAO;
Brian Pauld3f598a2010-05-25 21:42:13 -0600703
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800704 ASSERT(VERT_ATTRIB_GENERIC(index) < Elements(vao->_VertexAttrib));
Brian Paul45453d82012-02-19 19:50:31 -0700705
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800706 if (vao->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Enabled) {
Brian Paul45453d82012-02-19 19:50:31 -0700707 /* was enabled, now being disabled */
708 FLUSH_VERTICES(ctx, _NEW_ARRAY);
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800709 vao->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Enabled = GL_FALSE;
710 vao->_Enabled &= ~VERT_BIT_GENERIC(index);
711 vao->NewArrays |= VERT_BIT_GENERIC(index);
Brian Paul45453d82012-02-19 19:50:31 -0700712 }
Brian Pauld3f598a2010-05-25 21:42:13 -0600713}
714
715
716/**
717 * Return info for a vertex attribute array (no alias with legacy
718 * vertex attributes (pos, normal, color, etc)). This function does
719 * not handle the 4-element GL_CURRENT_VERTEX_ATTRIB_ARB query.
720 */
721static GLuint
Kristian Høgsbergf9995b32010-10-12 12:26:10 -0400722get_vertex_array_attrib(struct gl_context *ctx, GLuint index, GLenum pname,
Brian Pauld3f598a2010-05-25 21:42:13 -0600723 const char *caller)
724{
Kenneth Graunkeaac14152014-02-01 19:36:59 -0800725 const struct gl_vertex_array_object *vao = ctx->Array.VAO;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +0200726 const struct gl_vertex_attrib_array *array;
Brian Pauld3f598a2010-05-25 21:42:13 -0600727
Paul Berry84732a92014-01-08 10:00:28 -0800728 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Brian Pauld3f598a2010-05-25 21:42:13 -0600729 _mesa_error(ctx, GL_INVALID_VALUE, "%s(index=%u)", caller, index);
730 return 0;
731 }
732
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800733 ASSERT(VERT_ATTRIB_GENERIC(index) < Elements(vao->VertexAttrib));
Brian Pauld3f598a2010-05-25 21:42:13 -0600734
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800735 array = &vao->VertexAttrib[VERT_ATTRIB_GENERIC(index)];
Brian Pauld3f598a2010-05-25 21:42:13 -0600736
737 switch (pname) {
738 case GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB:
739 return array->Enabled;
740 case GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB:
Anuj Phogatfdd8beb2014-03-12 18:16:21 -0700741 return (array->Format == GL_BGRA) ? GL_BGRA : array->Size;
Brian Pauld3f598a2010-05-25 21:42:13 -0600742 case GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB:
743 return array->Stride;
744 case GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB:
745 return array->Type;
746 case GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB:
747 return array->Normalized;
748 case GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB:
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800749 return vao->VertexBinding[array->VertexBinding].BufferObj->Name;
Brian Pauld1184d22010-10-28 21:17:41 -0600750 case GL_VERTEX_ATTRIB_ARRAY_INTEGER:
Ian Romanick2c870302012-07-25 16:21:49 -0700751 if ((_mesa_is_desktop_gl(ctx)
752 && (ctx->Version >= 30 || ctx->Extensions.EXT_gpu_shader4))
753 || _mesa_is_gles3(ctx)) {
Brian Pauld1184d22010-10-28 21:17:41 -0600754 return array->Integer;
755 }
Brian Paul1d1eb952011-01-15 10:32:34 -0700756 goto error;
757 case GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB:
Ian Romanick2c870302012-07-25 16:21:49 -0700758 if ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_instanced_arrays)
759 || _mesa_is_gles3(ctx)) {
Kenneth Graunke94e07c12014-02-01 19:31:22 -0800760 return vao->VertexBinding[array->VertexBinding].InstanceDivisor;
Brian Paul1d1eb952011-01-15 10:32:34 -0700761 }
762 goto error;
Fredrik Höglundfb370f82013-04-04 22:15:13 +0200763 case GL_VERTEX_ATTRIB_BINDING:
764 if (_mesa_is_desktop_gl(ctx)) {
765 return array->VertexBinding - VERT_ATTRIB_GENERIC0;
766 }
767 goto error;
768 case GL_VERTEX_ATTRIB_RELATIVE_OFFSET:
769 if (_mesa_is_desktop_gl(ctx)) {
770 return array->RelativeOffset;
771 }
772 goto error;
Brian Pauld3f598a2010-05-25 21:42:13 -0600773 default:
Brian Paul1d1eb952011-01-15 10:32:34 -0700774 ; /* fall-through */
Brian Pauld3f598a2010-05-25 21:42:13 -0600775 }
Brian Paul1d1eb952011-01-15 10:32:34 -0700776
777error:
778 _mesa_error(ctx, GL_INVALID_ENUM, "%s(pname=0x%x)", caller, pname);
779 return 0;
Brian Pauld3f598a2010-05-25 21:42:13 -0600780}
781
782
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800783static const GLfloat *
784get_current_attrib(struct gl_context *ctx, GLuint index, const char *function)
785{
786 if (index == 0) {
Anuj Phogat49c71052014-03-28 17:44:59 -0700787 if (_mesa_attr_zero_aliases_vertex(ctx)) {
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800788 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(index==0)", function);
789 return NULL;
790 }
791 }
Paul Berry84732a92014-01-08 10:00:28 -0800792 else if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800793 _mesa_error(ctx, GL_INVALID_VALUE,
794 "%s(index>=GL_MAX_VERTEX_ATTRIBS)", function);
795 return NULL;
796 }
797
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800798 ASSERT(VERT_ATTRIB_GENERIC(index) < Elements(ctx->Array.VAO->_VertexAttrib));
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100799
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800800 FLUSH_CURRENT(ctx, 0);
Mathias Fröhlich762c9762011-10-31 22:23:51 +0100801 return ctx->Current.Attrib[VERT_ATTRIB_GENERIC(index)];
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800802}
803
Brian Pauld3f598a2010-05-25 21:42:13 -0600804void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800805_mesa_GetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params)
Brian Pauld3f598a2010-05-25 21:42:13 -0600806{
807 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600808
809 if (pname == GL_CURRENT_VERTEX_ATTRIB_ARB) {
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800810 const GLfloat *v = get_current_attrib(ctx, index, "glGetVertexAttribfv");
811 if (v != NULL) {
Brian Pauld3f598a2010-05-25 21:42:13 -0600812 COPY_4V(params, v);
813 }
814 }
815 else {
816 params[0] = (GLfloat) get_vertex_array_attrib(ctx, index, pname,
817 "glGetVertexAttribfv");
818 }
819}
820
821
822void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800823_mesa_GetVertexAttribdv(GLuint index, GLenum pname, GLdouble *params)
Brian Pauld3f598a2010-05-25 21:42:13 -0600824{
825 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600826
827 if (pname == GL_CURRENT_VERTEX_ATTRIB_ARB) {
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800828 const GLfloat *v = get_current_attrib(ctx, index, "glGetVertexAttribdv");
829 if (v != NULL) {
Brian Pauld3f598a2010-05-25 21:42:13 -0600830 params[0] = (GLdouble) v[0];
831 params[1] = (GLdouble) v[1];
832 params[2] = (GLdouble) v[2];
833 params[3] = (GLdouble) v[3];
834 }
835 }
836 else {
837 params[0] = (GLdouble) get_vertex_array_attrib(ctx, index, pname,
838 "glGetVertexAttribdv");
839 }
840}
841
842
843void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800844_mesa_GetVertexAttribiv(GLuint index, GLenum pname, GLint *params)
Brian Pauld3f598a2010-05-25 21:42:13 -0600845{
846 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600847
848 if (pname == GL_CURRENT_VERTEX_ATTRIB_ARB) {
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800849 const GLfloat *v = get_current_attrib(ctx, index, "glGetVertexAttribiv");
850 if (v != NULL) {
Brian Pauld3f598a2010-05-25 21:42:13 -0600851 /* XXX should floats in[0,1] be scaled to full int range? */
852 params[0] = (GLint) v[0];
853 params[1] = (GLint) v[1];
854 params[2] = (GLint) v[2];
855 params[3] = (GLint) v[3];
856 }
857 }
858 else {
859 params[0] = (GLint) get_vertex_array_attrib(ctx, index, pname,
860 "glGetVertexAttribiv");
861 }
862}
863
864
865/** GL 3.0 */
866void GLAPIENTRY
867_mesa_GetVertexAttribIiv(GLuint index, GLenum pname, GLint *params)
868{
869 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600870
871 if (pname == GL_CURRENT_VERTEX_ATTRIB_ARB) {
Kenneth Graunkec299f442012-11-07 20:29:40 -0800872 const GLint *v = (const GLint *)
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800873 get_current_attrib(ctx, index, "glGetVertexAttribIiv");
874 if (v != NULL) {
Kenneth Graunkec299f442012-11-07 20:29:40 -0800875 COPY_4V(params, v);
Brian Pauld3f598a2010-05-25 21:42:13 -0600876 }
877 }
878 else {
879 params[0] = (GLint) get_vertex_array_attrib(ctx, index, pname,
880 "glGetVertexAttribIiv");
881 }
882}
883
884
885/** GL 3.0 */
886void GLAPIENTRY
887_mesa_GetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params)
888{
889 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600890
891 if (pname == GL_CURRENT_VERTEX_ATTRIB_ARB) {
Kenneth Graunkec299f442012-11-07 20:29:40 -0800892 const GLuint *v = (const GLuint *)
Ian Romanick5c3f1cd2011-02-03 17:56:44 -0800893 get_current_attrib(ctx, index, "glGetVertexAttribIuiv");
894 if (v != NULL) {
Kenneth Graunkec299f442012-11-07 20:29:40 -0800895 COPY_4V(params, v);
Brian Pauld3f598a2010-05-25 21:42:13 -0600896 }
897 }
898 else {
899 params[0] = get_vertex_array_attrib(ctx, index, pname,
900 "glGetVertexAttribIuiv");
901 }
902}
903
904
905void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -0800906_mesa_GetVertexAttribPointerv(GLuint index, GLenum pname, GLvoid **pointer)
Brian Pauld3f598a2010-05-25 21:42:13 -0600907{
908 GET_CURRENT_CONTEXT(ctx);
Brian Pauld3f598a2010-05-25 21:42:13 -0600909
Paul Berry84732a92014-01-08 10:00:28 -0800910 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Brian Pauld3f598a2010-05-25 21:42:13 -0600911 _mesa_error(ctx, GL_INVALID_VALUE, "glGetVertexAttribPointerARB(index)");
912 return;
913 }
914
915 if (pname != GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB) {
916 _mesa_error(ctx, GL_INVALID_ENUM, "glGetVertexAttribPointerARB(pname)");
917 return;
918 }
919
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800920 ASSERT(VERT_ATTRIB_GENERIC(index) < Elements(ctx->Array.VAO->_VertexAttrib));
Brian Pauld3f598a2010-05-25 21:42:13 -0600921
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -0800922 *pointer = (GLvoid *) ctx->Array.VAO->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Ptr;
Brian Pauld3f598a2010-05-25 21:42:13 -0600923}
924
925
926void GLAPIENTRY
Brian Paul1f0e2132000-06-12 15:30:51 +0000927_mesa_VertexPointerEXT(GLint size, GLenum type, GLsizei stride,
928 GLsizei count, const GLvoid *ptr)
929{
930 (void) count;
931 _mesa_VertexPointer(size, type, stride, ptr);
932}
933
934
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000935void GLAPIENTRY
Brian Paul1f0e2132000-06-12 15:30:51 +0000936_mesa_NormalPointerEXT(GLenum type, GLsizei stride, GLsizei count,
937 const GLvoid *ptr)
938{
939 (void) count;
940 _mesa_NormalPointer(type, stride, ptr);
941}
942
943
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000944void GLAPIENTRY
Brian Paul1f0e2132000-06-12 15:30:51 +0000945_mesa_ColorPointerEXT(GLint size, GLenum type, GLsizei stride, GLsizei count,
946 const GLvoid *ptr)
947{
948 (void) count;
949 _mesa_ColorPointer(size, type, stride, ptr);
950}
951
952
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000953void GLAPIENTRY
Brian Paul1f0e2132000-06-12 15:30:51 +0000954_mesa_IndexPointerEXT(GLenum type, GLsizei stride, GLsizei count,
955 const GLvoid *ptr)
956{
957 (void) count;
958 _mesa_IndexPointer(type, stride, ptr);
959}
960
961
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000962void GLAPIENTRY
Brian Paul1f0e2132000-06-12 15:30:51 +0000963_mesa_TexCoordPointerEXT(GLint size, GLenum type, GLsizei stride,
964 GLsizei count, const GLvoid *ptr)
965{
966 (void) count;
967 _mesa_TexCoordPointer(size, type, stride, ptr);
968}
969
970
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000971void GLAPIENTRY
Brian Paul1f0e2132000-06-12 15:30:51 +0000972_mesa_EdgeFlagPointerEXT(GLsizei stride, GLsizei count, const GLboolean *ptr)
973{
974 (void) count;
975 _mesa_EdgeFlagPointer(stride, ptr);
976}
977
978
Kendall Bennettc40d1dd2003-10-21 22:22:17 +0000979void GLAPIENTRY
Brian Paulfbd8f211999-11-11 01:22:25 +0000980_mesa_InterleavedArrays(GLenum format, GLsizei stride, const GLvoid *pointer)
jtgafb833d1999-08-19 00:55:39 +0000981{
Brian Paulfbd8f211999-11-11 01:22:25 +0000982 GET_CURRENT_CONTEXT(ctx);
jtgafb833d1999-08-19 00:55:39 +0000983 GLboolean tflag, cflag, nflag; /* enable/disable flags */
984 GLint tcomps, ccomps, vcomps; /* components per texcoord, color, vertex */
Keith Whitwellf4b02d12001-01-05 05:31:42 +0000985 GLenum ctype = 0; /* color type */
986 GLint coffset = 0, noffset = 0, voffset;/* color, normal, vertex offsets */
Brian Paul4a3110f2003-12-12 18:40:02 +0000987 const GLint toffset = 0; /* always zero */
jtgafb833d1999-08-19 00:55:39 +0000988 GLint defstride; /* default stride */
989 GLint c, f;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000990
Eric Anholta9754792013-01-16 16:20:38 -0800991 FLUSH_VERTICES(ctx, 0);
Keith Whitwellcab974c2000-12-26 05:09:27 +0000992
jtgafb833d1999-08-19 00:55:39 +0000993 f = sizeof(GLfloat);
Brian Paulc5b1e812003-10-22 22:59:07 +0000994 c = f * ((4 * sizeof(GLubyte) + (f - 1)) / f);
jtgafb833d1999-08-19 00:55:39 +0000995
Brian Paulc5b1e812003-10-22 22:59:07 +0000996 if (stride < 0) {
Brian Paul08836342001-03-03 20:33:27 +0000997 _mesa_error( ctx, GL_INVALID_VALUE, "glInterleavedArrays(stride)" );
jtgafb833d1999-08-19 00:55:39 +0000998 return;
999 }
1000
1001 switch (format) {
1002 case GL_V2F:
1003 tflag = GL_FALSE; cflag = GL_FALSE; nflag = GL_FALSE;
1004 tcomps = 0; ccomps = 0; vcomps = 2;
1005 voffset = 0;
1006 defstride = 2*f;
1007 break;
1008 case GL_V3F:
1009 tflag = GL_FALSE; cflag = GL_FALSE; nflag = GL_FALSE;
1010 tcomps = 0; ccomps = 0; vcomps = 3;
1011 voffset = 0;
1012 defstride = 3*f;
1013 break;
1014 case GL_C4UB_V2F:
1015 tflag = GL_FALSE; cflag = GL_TRUE; nflag = GL_FALSE;
1016 tcomps = 0; ccomps = 4; vcomps = 2;
1017 ctype = GL_UNSIGNED_BYTE;
1018 coffset = 0;
1019 voffset = c;
1020 defstride = c + 2*f;
1021 break;
1022 case GL_C4UB_V3F:
1023 tflag = GL_FALSE; cflag = GL_TRUE; nflag = GL_FALSE;
1024 tcomps = 0; ccomps = 4; vcomps = 3;
1025 ctype = GL_UNSIGNED_BYTE;
1026 coffset = 0;
1027 voffset = c;
1028 defstride = c + 3*f;
1029 break;
1030 case GL_C3F_V3F:
1031 tflag = GL_FALSE; cflag = GL_TRUE; nflag = GL_FALSE;
1032 tcomps = 0; ccomps = 3; vcomps = 3;
1033 ctype = GL_FLOAT;
1034 coffset = 0;
1035 voffset = 3*f;
1036 defstride = 6*f;
1037 break;
1038 case GL_N3F_V3F:
1039 tflag = GL_FALSE; cflag = GL_FALSE; nflag = GL_TRUE;
1040 tcomps = 0; ccomps = 0; vcomps = 3;
1041 noffset = 0;
1042 voffset = 3*f;
1043 defstride = 6*f;
1044 break;
1045 case GL_C4F_N3F_V3F:
1046 tflag = GL_FALSE; cflag = GL_TRUE; nflag = GL_TRUE;
1047 tcomps = 0; ccomps = 4; vcomps = 3;
1048 ctype = GL_FLOAT;
1049 coffset = 0;
1050 noffset = 4*f;
1051 voffset = 7*f;
1052 defstride = 10*f;
1053 break;
1054 case GL_T2F_V3F:
1055 tflag = GL_TRUE; cflag = GL_FALSE; nflag = GL_FALSE;
1056 tcomps = 2; ccomps = 0; vcomps = 3;
1057 voffset = 2*f;
1058 defstride = 5*f;
1059 break;
1060 case GL_T4F_V4F:
1061 tflag = GL_TRUE; cflag = GL_FALSE; nflag = GL_FALSE;
1062 tcomps = 4; ccomps = 0; vcomps = 4;
1063 voffset = 4*f;
1064 defstride = 8*f;
1065 break;
1066 case GL_T2F_C4UB_V3F:
1067 tflag = GL_TRUE; cflag = GL_TRUE; nflag = GL_FALSE;
1068 tcomps = 2; ccomps = 4; vcomps = 3;
1069 ctype = GL_UNSIGNED_BYTE;
1070 coffset = 2*f;
1071 voffset = c+2*f;
1072 defstride = c+5*f;
1073 break;
1074 case GL_T2F_C3F_V3F:
1075 tflag = GL_TRUE; cflag = GL_TRUE; nflag = GL_FALSE;
1076 tcomps = 2; ccomps = 3; vcomps = 3;
1077 ctype = GL_FLOAT;
1078 coffset = 2*f;
1079 voffset = 5*f;
1080 defstride = 8*f;
1081 break;
1082 case GL_T2F_N3F_V3F:
1083 tflag = GL_TRUE; cflag = GL_FALSE; nflag = GL_TRUE;
1084 tcomps = 2; ccomps = 0; vcomps = 3;
1085 noffset = 2*f;
1086 voffset = 5*f;
1087 defstride = 8*f;
1088 break;
1089 case GL_T2F_C4F_N3F_V3F:
1090 tflag = GL_TRUE; cflag = GL_TRUE; nflag = GL_TRUE;
1091 tcomps = 2; ccomps = 4; vcomps = 3;
1092 ctype = GL_FLOAT;
1093 coffset = 2*f;
1094 noffset = 6*f;
1095 voffset = 9*f;
1096 defstride = 12*f;
1097 break;
1098 case GL_T4F_C4F_N3F_V4F:
1099 tflag = GL_TRUE; cflag = GL_TRUE; nflag = GL_TRUE;
1100 tcomps = 4; ccomps = 4; vcomps = 4;
1101 ctype = GL_FLOAT;
1102 coffset = 4*f;
1103 noffset = 8*f;
1104 voffset = 11*f;
1105 defstride = 15*f;
1106 break;
1107 default:
Brian Paul08836342001-03-03 20:33:27 +00001108 _mesa_error( ctx, GL_INVALID_ENUM, "glInterleavedArrays(format)" );
jtgafb833d1999-08-19 00:55:39 +00001109 return;
1110 }
1111
1112 if (stride==0) {
1113 stride = defstride;
1114 }
1115
Brian Paulfbd8f211999-11-11 01:22:25 +00001116 _mesa_DisableClientState( GL_EDGE_FLAG_ARRAY );
1117 _mesa_DisableClientState( GL_INDEX_ARRAY );
Brian Paul095c6692006-04-25 00:21:32 +00001118 /* XXX also disable secondary color and generic arrays? */
jtgafb833d1999-08-19 00:55:39 +00001119
1120 /* Texcoords */
jtgafb833d1999-08-19 00:55:39 +00001121 if (tflag) {
Brian Paul4a3110f2003-12-12 18:40:02 +00001122 _mesa_EnableClientState( GL_TEXTURE_COORD_ARRAY );
1123 _mesa_TexCoordPointer( tcomps, GL_FLOAT, stride,
Brian Paulab928e52004-03-10 16:17:35 +00001124 (GLubyte *) pointer + toffset );
jtgafb833d1999-08-19 00:55:39 +00001125 }
1126 else {
Brian Paulab928e52004-03-10 16:17:35 +00001127 _mesa_DisableClientState( GL_TEXTURE_COORD_ARRAY );
jtgafb833d1999-08-19 00:55:39 +00001128 }
jtgafb833d1999-08-19 00:55:39 +00001129
1130 /* Color */
1131 if (cflag) {
Brian Paulfbd8f211999-11-11 01:22:25 +00001132 _mesa_EnableClientState( GL_COLOR_ARRAY );
Keith Whitwellcab974c2000-12-26 05:09:27 +00001133 _mesa_ColorPointer( ccomps, ctype, stride,
Brian Paul4a3110f2003-12-12 18:40:02 +00001134 (GLubyte *) pointer + coffset );
jtgafb833d1999-08-19 00:55:39 +00001135 }
1136 else {
Brian Paulfbd8f211999-11-11 01:22:25 +00001137 _mesa_DisableClientState( GL_COLOR_ARRAY );
jtgafb833d1999-08-19 00:55:39 +00001138 }
1139
1140
1141 /* Normals */
1142 if (nflag) {
Brian Paulfbd8f211999-11-11 01:22:25 +00001143 _mesa_EnableClientState( GL_NORMAL_ARRAY );
Brian Paul4a3110f2003-12-12 18:40:02 +00001144 _mesa_NormalPointer( GL_FLOAT, stride, (GLubyte *) pointer + noffset );
jtgafb833d1999-08-19 00:55:39 +00001145 }
1146 else {
Brian Paulfbd8f211999-11-11 01:22:25 +00001147 _mesa_DisableClientState( GL_NORMAL_ARRAY );
jtgafb833d1999-08-19 00:55:39 +00001148 }
1149
Brian Paul4a3110f2003-12-12 18:40:02 +00001150 /* Vertices */
Brian Paulfbd8f211999-11-11 01:22:25 +00001151 _mesa_EnableClientState( GL_VERTEX_ARRAY );
Keith Whitwellcab974c2000-12-26 05:09:27 +00001152 _mesa_VertexPointer( vcomps, GL_FLOAT, stride,
1153 (GLubyte *) pointer + voffset );
jtgafb833d1999-08-19 00:55:39 +00001154}
1155
1156
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001157void GLAPIENTRY
Keith Whitwellad2ac212000-11-24 10:25:05 +00001158_mesa_LockArraysEXT(GLint first, GLsizei count)
1159{
1160 GET_CURRENT_CONTEXT(ctx);
Eric Anholta9754792013-01-16 16:20:38 -08001161
1162 FLUSH_VERTICES(ctx, 0);
Keith Whitwellad2ac212000-11-24 10:25:05 +00001163
1164 if (MESA_VERBOSE & VERBOSE_API)
Brian Paul4753d602002-06-15 02:38:15 +00001165 _mesa_debug(ctx, "glLockArrays %d %d\n", first, count);
Keith Whitwellad2ac212000-11-24 10:25:05 +00001166
Eric Anholt5857e982008-02-02 02:54:13 -08001167 if (first < 0) {
1168 _mesa_error( ctx, GL_INVALID_VALUE, "glLockArraysEXT(first)" );
1169 return;
Gareth Hughes22144ab2001-03-12 00:48:37 +00001170 }
Eric Anholt5857e982008-02-02 02:54:13 -08001171 if (count <= 0) {
1172 _mesa_error( ctx, GL_INVALID_VALUE, "glLockArraysEXT(count)" );
1173 return;
Keith Whitwellad2ac212000-11-24 10:25:05 +00001174 }
Eric Anholt5857e982008-02-02 02:54:13 -08001175 if (ctx->Array.LockCount != 0) {
1176 _mesa_error( ctx, GL_INVALID_OPERATION, "glLockArraysEXT(reentry)" );
1177 return;
1178 }
1179
1180 ctx->Array.LockFirst = first;
1181 ctx->Array.LockCount = count;
Keith Whitwellad2ac212000-11-24 10:25:05 +00001182
1183 ctx->NewState |= _NEW_ARRAY;
Keith Whitwellad2ac212000-11-24 10:25:05 +00001184}
1185
1186
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001187void GLAPIENTRY
Keith Whitwellad2ac212000-11-24 10:25:05 +00001188_mesa_UnlockArraysEXT( void )
1189{
1190 GET_CURRENT_CONTEXT(ctx);
Eric Anholta9754792013-01-16 16:20:38 -08001191
1192 FLUSH_VERTICES(ctx, 0);
Keith Whitwellad2ac212000-11-24 10:25:05 +00001193
1194 if (MESA_VERBOSE & VERBOSE_API)
Brian Paul4753d602002-06-15 02:38:15 +00001195 _mesa_debug(ctx, "glUnlockArrays\n");
Keith Whitwellad2ac212000-11-24 10:25:05 +00001196
Eric Anholt5857e982008-02-02 02:54:13 -08001197 if (ctx->Array.LockCount == 0) {
1198 _mesa_error( ctx, GL_INVALID_OPERATION, "glUnlockArraysEXT(reexit)" );
1199 return;
1200 }
1201
Keith Whitwellad2ac212000-11-24 10:25:05 +00001202 ctx->Array.LockFirst = 0;
1203 ctx->Array.LockCount = 0;
1204 ctx->NewState |= _NEW_ARRAY;
Keith Whitwellad2ac212000-11-24 10:25:05 +00001205}
Brian Paul2525bc72002-06-30 15:47:00 +00001206
1207
Brian Paul2525bc72002-06-30 15:47:00 +00001208/* GL_EXT_multi_draw_arrays */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001209void GLAPIENTRY
Paul Berry1a1db172012-11-06 08:57:59 -08001210_mesa_MultiDrawArrays( GLenum mode, const GLint *first,
Brian Paul79938322010-09-14 09:37:35 -06001211 const GLsizei *count, GLsizei primcount )
Brian Paul2525bc72002-06-30 15:47:00 +00001212{
1213 GET_CURRENT_CONTEXT(ctx);
1214 GLint i;
1215
Eric Anholta9754792013-01-16 16:20:38 -08001216 FLUSH_VERTICES(ctx, 0);
Brian Paul2525bc72002-06-30 15:47:00 +00001217
1218 for (i = 0; i < primcount; i++) {
1219 if (count[i] > 0) {
Brian Paule3418562014-03-26 17:08:20 -06001220 CALL_DrawArrays(ctx->CurrentDispatch, (mode, first[i], count[i]));
Brian Paul2525bc72002-06-30 15:47:00 +00001221 }
1222 }
1223}
1224
1225
Ian Romanick3baefe62003-08-22 23:28:03 +00001226/* GL_IBM_multimode_draw_arrays */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001227void GLAPIENTRY
Ian Romanick3baefe62003-08-22 23:28:03 +00001228_mesa_MultiModeDrawArraysIBM( const GLenum * mode, const GLint * first,
1229 const GLsizei * count,
1230 GLsizei primcount, GLint modestride )
1231{
1232 GET_CURRENT_CONTEXT(ctx);
1233 GLint i;
1234
Eric Anholta9754792013-01-16 16:20:38 -08001235 FLUSH_VERTICES(ctx, 0);
Ian Romanick3baefe62003-08-22 23:28:03 +00001236
1237 for ( i = 0 ; i < primcount ; i++ ) {
1238 if ( count[i] > 0 ) {
Brian Paul03e29a52003-12-04 03:16:27 +00001239 GLenum m = *((GLenum *) ((GLubyte *) mode + i * modestride));
Brian Paule3418562014-03-26 17:08:20 -06001240 CALL_DrawArrays(ctx->CurrentDispatch, ( m, first[i], count[i] ));
Ian Romanick3baefe62003-08-22 23:28:03 +00001241 }
1242 }
1243}
1244
1245
1246/* GL_IBM_multimode_draw_arrays */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001247void GLAPIENTRY
Ian Romanick3baefe62003-08-22 23:28:03 +00001248_mesa_MultiModeDrawElementsIBM( const GLenum * mode, const GLsizei * count,
1249 GLenum type, const GLvoid * const * indices,
1250 GLsizei primcount, GLint modestride )
1251{
1252 GET_CURRENT_CONTEXT(ctx);
1253 GLint i;
1254
Eric Anholta9754792013-01-16 16:20:38 -08001255 FLUSH_VERTICES(ctx, 0);
Ian Romanick3baefe62003-08-22 23:28:03 +00001256
Brian Pauld2afb392003-09-17 18:15:13 +00001257 /* XXX not sure about ARB_vertex_buffer_object handling here */
1258
Ian Romanick3baefe62003-08-22 23:28:03 +00001259 for ( i = 0 ; i < primcount ; i++ ) {
1260 if ( count[i] > 0 ) {
Brian Paul03e29a52003-12-04 03:16:27 +00001261 GLenum m = *((GLenum *) ((GLubyte *) mode + i * modestride));
Brian Paule3418562014-03-26 17:08:20 -06001262 CALL_DrawElements(ctx->CurrentDispatch, ( m, count[i], type,
1263 indices[i] ));
Ian Romanick3baefe62003-08-22 23:28:03 +00001264 }
1265 }
1266}
1267
1268
Brian Paul095c6692006-04-25 00:21:32 +00001269/**
Brian Paul7f26ad82010-10-21 19:03:38 -06001270 * GL_NV_primitive_restart and GL 3.1
Brian Paula40e6f22010-04-20 21:02:09 -06001271 */
1272void GLAPIENTRY
1273_mesa_PrimitiveRestartIndex(GLuint index)
1274{
1275 GET_CURRENT_CONTEXT(ctx);
1276
Eric Anholt9c1b4182012-07-26 14:43:56 -07001277 if (!ctx->Extensions.NV_primitive_restart && ctx->Version < 31) {
Brian Paul7f26ad82010-10-21 19:03:38 -06001278 _mesa_error(ctx, GL_INVALID_OPERATION, "glPrimitiveRestartIndexNV()");
Brian Paula40e6f22010-04-20 21:02:09 -06001279 return;
1280 }
1281
Kenneth Graunkee6efb902013-05-29 08:31:54 -07001282 if (ctx->Array.RestartIndex != index) {
Brian Pauld2003ee2012-02-19 19:50:32 -07001283 FLUSH_VERTICES(ctx, _NEW_TRANSFORM);
Kenneth Graunkee6efb902013-05-29 08:31:54 -07001284 ctx->Array.RestartIndex = index;
Brian Pauld2003ee2012-02-19 19:50:32 -07001285 }
Brian Paula40e6f22010-04-20 21:02:09 -06001286}
1287
1288
1289/**
Brian Paul1d1eb952011-01-15 10:32:34 -07001290 * See GL_ARB_instanced_arrays.
1291 * Note that the instance divisor only applies to generic arrays, not
1292 * the legacy vertex arrays.
1293 */
1294void GLAPIENTRY
1295_mesa_VertexAttribDivisor(GLuint index, GLuint divisor)
1296{
1297 GET_CURRENT_CONTEXT(ctx);
Brian Paul1d1eb952011-01-15 10:32:34 -07001298
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001299 const GLuint genericIndex = VERT_ATTRIB_GENERIC(index);
1300
Brian Paul1d1eb952011-01-15 10:32:34 -07001301 if (!ctx->Extensions.ARB_instanced_arrays) {
1302 _mesa_error(ctx, GL_INVALID_OPERATION, "glVertexAttribDivisor()");
1303 return;
1304 }
1305
Paul Berry84732a92014-01-08 10:00:28 -08001306 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Matt Turnerae1f09b2012-11-13 13:05:03 -08001307 _mesa_error(ctx, GL_INVALID_VALUE, "glVertexAttribDivisor(index = %u)",
Brian Paul1d1eb952011-01-15 10:32:34 -07001308 index);
1309 return;
1310 }
1311
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001312 ASSERT(genericIndex < Elements(ctx->Array.VAO->VertexAttrib));
Mathias Fröhlich762c9762011-10-31 22:23:51 +01001313
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001314 /* The ARB_vertex_attrib_binding spec says:
1315 *
1316 * "The command
1317 *
1318 * void VertexAttribDivisor(uint index, uint divisor);
1319 *
1320 * is equivalent to (assuming no errors are generated):
1321 *
1322 * VertexAttribBinding(index, index);
1323 * VertexBindingDivisor(index, divisor);"
1324 */
1325 vertex_attrib_binding(ctx, genericIndex, genericIndex);
1326 vertex_binding_divisor(ctx, genericIndex, divisor);
Brian Paul1d1eb952011-01-15 10:32:34 -07001327}
1328
1329
Kenneth Graunke959d0762013-05-29 08:07:01 -07001330unsigned
1331_mesa_primitive_restart_index(const struct gl_context *ctx, GLenum ib_type)
1332{
1333 /* From the OpenGL 4.3 core specification, page 302:
1334 * "If both PRIMITIVE_RESTART and PRIMITIVE_RESTART_FIXED_INDEX are
1335 * enabled, the index value determined by PRIMITIVE_RESTART_FIXED_INDEX
1336 * is used."
1337 */
1338 if (ctx->Array.PrimitiveRestartFixedIndex) {
1339 switch (ib_type) {
1340 case GL_UNSIGNED_BYTE:
1341 return 0xff;
1342 case GL_UNSIGNED_SHORT:
1343 return 0xffff;
1344 case GL_UNSIGNED_INT:
1345 return 0xffffffff;
1346 default:
1347 assert(!"_mesa_primitive_restart_index: Invalid index buffer type.");
1348 }
1349 }
1350
1351 return ctx->Array.RestartIndex;
1352}
1353
Brian Paul1d1eb952011-01-15 10:32:34 -07001354
1355/**
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001356 * GL_ARB_vertex_attrib_binding
1357 */
1358void GLAPIENTRY
1359_mesa_BindVertexBuffer(GLuint bindingIndex, GLuint buffer, GLintptr offset,
1360 GLsizei stride)
1361{
Fredrik Höglund193e8b42013-04-11 16:49:44 +02001362 GET_CURRENT_CONTEXT(ctx);
Kenneth Graunkeaac14152014-02-01 19:36:59 -08001363 const struct gl_vertex_array_object *vao = ctx->Array.VAO;
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001364 struct gl_buffer_object *vbo;
1365
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001366 ASSERT_OUTSIDE_BEGIN_END(ctx);
1367
1368 /* The ARB_vertex_attrib_binding spec says:
1369 *
1370 * "An INVALID_OPERATION error is generated if no vertex array object
1371 * is bound."
1372 */
1373 if (ctx->API == API_OPENGL_CORE &&
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001374 ctx->Array.VAO == ctx->Array.DefaultVAO) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001375 _mesa_error(ctx, GL_INVALID_OPERATION,
1376 "glBindVertexBuffer(No array object bound)");
1377 return;
1378 }
1379
1380 /* The ARB_vertex_attrib_binding spec says:
1381 *
1382 * "An INVALID_VALUE error is generated if <bindingindex> is greater than
1383 * the value of MAX_VERTEX_ATTRIB_BINDINGS."
1384 */
1385 if (bindingIndex >= ctx->Const.MaxVertexAttribBindings) {
1386 _mesa_error(ctx, GL_INVALID_VALUE,
1387 "glBindVertexBuffer(bindingindex=%u > "
1388 "GL_MAX_VERTEX_ATTRIB_BINDINGS)",
1389 bindingIndex);
1390 return;
1391 }
1392
1393 /* The ARB_vertex_attrib_binding spec says:
1394 *
1395 * "The error INVALID_VALUE is generated if <stride> or <offset>
1396 * are negative."
1397 */
1398 if (offset < 0) {
1399 _mesa_error(ctx, GL_INVALID_VALUE,
1400 "glBindVertexBuffer(offset=%lld < 0)", (long long)offset);
1401 return;
1402 }
1403
1404 if (stride < 0) {
1405 _mesa_error(ctx, GL_INVALID_VALUE,
1406 "glBindVertexBuffer(stride=%d < 0)", stride);
1407 return;
1408 }
1409
Kenneth Graunke94e07c12014-02-01 19:31:22 -08001410 if (buffer == vao->VertexBinding[VERT_ATTRIB_GENERIC(bindingIndex)].BufferObj->Name) {
1411 vbo = vao->VertexBinding[VERT_ATTRIB_GENERIC(bindingIndex)].BufferObj;
Fredrik Höglund193e8b42013-04-11 16:49:44 +02001412 } else if (buffer != 0) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001413 vbo = _mesa_lookup_bufferobj(ctx, buffer);
1414
1415 /* From the GL_ARB_vertex_attrib_array spec:
1416 *
1417 * "[Core profile only:]
1418 * An INVALID_OPERATION error is generated if buffer is not zero or a
1419 * name returned from a previous call to GenBuffers, or if such a name
1420 * has since been deleted with DeleteBuffers.
1421 *
1422 * Otherwise, we fall back to the same compat profile behavior as other
1423 * object references (automatically gen it).
1424 */
1425 if (!_mesa_handle_bind_buffer_gen(ctx, GL_ARRAY_BUFFER, buffer,
1426 &vbo, "glBindVertexBuffer"))
1427 return;
1428 } else {
1429 /* The ARB_vertex_attrib_binding spec says:
1430 *
1431 * "If <buffer> is zero, any buffer object attached to this
1432 * bindpoint is detached."
1433 */
1434 vbo = ctx->Shared->NullBufferObj;
1435 }
1436
1437 bind_vertex_buffer(ctx, VERT_ATTRIB_GENERIC(bindingIndex),
1438 vbo, offset, stride);
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001439}
1440
1441
1442void GLAPIENTRY
Fredrik Höglund6655e702013-11-13 19:02:10 +01001443_mesa_BindVertexBuffers(GLuint first, GLsizei count, const GLuint *buffers,
1444 const GLintptr *offsets, const GLsizei *strides)
1445{
Fredrik Höglund63995b92013-11-15 20:01:07 +01001446 GET_CURRENT_CONTEXT(ctx);
1447 struct gl_vertex_array_object * const vao = ctx->Array.VAO;
1448 GLuint i;
1449
1450 ASSERT_OUTSIDE_BEGIN_END(ctx);
1451
1452 /* The ARB_vertex_attrib_binding spec says:
1453 *
1454 * "An INVALID_OPERATION error is generated if no
1455 * vertex array object is bound."
1456 */
1457 if (ctx->API == API_OPENGL_CORE &&
1458 ctx->Array.VAO == ctx->Array.DefaultVAO) {
1459 _mesa_error(ctx, GL_INVALID_OPERATION,
1460 "glBindVertexBuffers(No array object bound)");
1461 return;
1462 }
1463
1464 /* The ARB_multi_bind spec says:
1465 *
1466 * "An INVALID_OPERATION error is generated if <first> + <count>
1467 * is greater than the value of MAX_VERTEX_ATTRIB_BINDINGS."
1468 */
1469 if (first + count > ctx->Const.MaxVertexAttribBindings) {
1470 _mesa_error(ctx, GL_INVALID_OPERATION,
1471 "glBindVertexBuffers(first=%u + count=%d > the value of "
1472 "GL_MAX_VERTEX_ATTRIB_BINDINGS=%u)",
1473 first, count, ctx->Const.MaxVertexAttribBindings);
1474 return;
1475 }
1476
1477 if (!buffers) {
1478 /**
1479 * The ARB_multi_bind spec says:
1480 *
1481 * "If <buffers> is NULL, each affected vertex buffer binding point
1482 * from <first> through <first>+<count>-1 will be reset to have no
1483 * bound buffer object. In this case, the offsets and strides
1484 * associated with the binding points are set to default values,
1485 * ignoring <offsets> and <strides>."
1486 */
1487 struct gl_buffer_object *vbo = ctx->Shared->NullBufferObj;
1488
1489 for (i = 0; i < count; i++)
1490 bind_vertex_buffer(ctx, VERT_ATTRIB_GENERIC(first + i), vbo, 0, 16);
1491
1492 return;
1493 }
1494
1495 /* Note that the error semantics for multi-bind commands differ from
1496 * those of other GL commands.
1497 *
1498 * The Issues section in the ARB_multi_bind spec says:
1499 *
1500 * "(11) Typically, OpenGL specifies that if an error is generated by
1501 * a command, that command has no effect. This is somewhat
1502 * unfortunate for multi-bind commands, because it would require
1503 * a first pass to scan the entire list of bound objects for
1504 * errors and then a second pass to actually perform the
1505 * bindings. Should we have different error semantics?
1506 *
1507 * RESOLVED: Yes. In this specification, when the parameters for
1508 * one of the <count> binding points are invalid, that binding
1509 * point is not updated and an error will be generated. However,
1510 * other binding points in the same command will be updated if
1511 * their parameters are valid and no other error occurs."
1512 */
1513
1514 _mesa_begin_bufferobj_lookups(ctx);
1515
1516 for (i = 0; i < count; i++) {
1517 struct gl_buffer_object *vbo;
1518
1519 /* The ARB_multi_bind spec says:
1520 *
1521 * "An INVALID_VALUE error is generated if any value in
1522 * <offsets> or <strides> is negative (per binding)."
1523 */
1524 if (offsets[i] < 0) {
1525 _mesa_error(ctx, GL_INVALID_VALUE,
1526 "glBindVertexBuffer(offsets[%u]=%lldd < 0)",
1527 i, (long long int) offsets[i]);
1528 continue;
1529 }
1530
1531 if (strides[i] < 0) {
1532 _mesa_error(ctx, GL_INVALID_VALUE,
1533 "glBindVertexBuffer(strides[%u]=%lld < 0)",
1534 i, (long long int) strides[i]);
1535 continue;
1536 }
1537
1538 if (buffers[i]) {
1539 struct gl_vertex_buffer_binding *binding =
1540 &vao->VertexBinding[VERT_ATTRIB_GENERIC(first + i)];
1541
1542 if (buffers[i] == binding->BufferObj->Name)
1543 vbo = binding->BufferObj;
1544 else
1545 vbo = _mesa_multi_bind_lookup_bufferobj(ctx, buffers, i,
1546 "glBindVertexBuffers");
1547
1548 if (!vbo)
1549 continue;
1550 } else {
1551 vbo = ctx->Shared->NullBufferObj;
1552 }
1553
1554 bind_vertex_buffer(ctx, VERT_ATTRIB_GENERIC(first + i), vbo,
1555 offsets[i], strides[i]);
1556 }
1557
1558 _mesa_end_bufferobj_lookups(ctx);
Fredrik Höglund6655e702013-11-13 19:02:10 +01001559}
1560
1561
1562void GLAPIENTRY
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001563_mesa_VertexAttribFormat(GLuint attribIndex, GLint size, GLenum type,
1564 GLboolean normalized, GLuint relativeOffset)
1565{
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001566 const GLbitfield legalTypes = (BYTE_BIT | UNSIGNED_BYTE_BIT |
1567 SHORT_BIT | UNSIGNED_SHORT_BIT |
1568 INT_BIT | UNSIGNED_INT_BIT |
1569 HALF_BIT | FLOAT_BIT | DOUBLE_BIT |
1570 FIXED_GL_BIT |
1571 UNSIGNED_INT_2_10_10_10_REV_BIT |
Chris Forbes1f092a92013-11-07 22:02:24 +13001572 INT_2_10_10_10_REV_BIT |
1573 UNSIGNED_INT_10F_11F_11F_REV_BIT);
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001574
1575 GET_CURRENT_CONTEXT(ctx);
1576 ASSERT_OUTSIDE_BEGIN_END(ctx);
1577
1578 /* The ARB_vertex_attrib_binding spec says:
1579 *
1580 * "An INVALID_OPERATION error is generated under any of the following
1581 * conditions:
1582 * - if no vertex array object is currently bound (see section 2.10);
1583 * - ..."
1584 */
1585 if (ctx->API == API_OPENGL_CORE &&
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001586 ctx->Array.VAO == ctx->Array.DefaultVAO) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001587 _mesa_error(ctx, GL_INVALID_OPERATION,
1588 "glVertexAttribFormat(No array object bound)");
1589 return;
1590 }
1591
1592 /* The ARB_vertex_attrib_binding spec says:
1593 *
1594 * "The error INVALID_VALUE is generated if index is greater than or equal
1595 * to the value of MAX_VERTEX_ATTRIBS."
1596 */
Paul Berry84732a92014-01-08 10:00:28 -08001597 if (attribIndex >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001598 _mesa_error(ctx, GL_INVALID_VALUE,
1599 "glVertexAttribFormat(attribindex=%u > "
1600 "GL_MAX_VERTEX_ATTRIBS)",
1601 attribIndex);
1602 return;
1603 }
1604
1605 FLUSH_VERTICES(ctx, 0);
1606
1607 update_array_format(ctx, "glVertexAttribFormat",
1608 VERT_ATTRIB_GENERIC(attribIndex),
1609 legalTypes, 1, BGRA_OR_4, size, type, normalized,
1610 GL_FALSE, relativeOffset);
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001611}
1612
1613
1614void GLAPIENTRY
1615_mesa_VertexAttribIFormat(GLuint attribIndex, GLint size, GLenum type,
1616 GLuint relativeOffset)
1617{
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001618 const GLbitfield legalTypes = (BYTE_BIT | UNSIGNED_BYTE_BIT |
1619 SHORT_BIT | UNSIGNED_SHORT_BIT |
1620 INT_BIT | UNSIGNED_INT_BIT);
1621
1622 GET_CURRENT_CONTEXT(ctx);
1623 ASSERT_OUTSIDE_BEGIN_END(ctx);
1624
1625 /* The ARB_vertex_attrib_binding spec says:
1626 *
1627 * "An INVALID_OPERATION error is generated under any of the following
1628 * conditions:
1629 * - if no vertex array object is currently bound (see section 2.10);
1630 * - ..."
1631 */
1632 if (ctx->API == API_OPENGL_CORE &&
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001633 ctx->Array.VAO == ctx->Array.DefaultVAO) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001634 _mesa_error(ctx, GL_INVALID_OPERATION,
1635 "glVertexAttribIFormat(No array object bound)");
1636 return;
1637 }
1638
1639 /* The ARB_vertex_attrib_binding spec says:
1640 *
1641 * "The error INVALID_VALUE is generated if index is greater than
1642 * or equal to the value of MAX_VERTEX_ATTRIBS."
1643 */
Paul Berry84732a92014-01-08 10:00:28 -08001644 if (attribIndex >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001645 _mesa_error(ctx, GL_INVALID_VALUE,
1646 "glVertexAttribIFormat(attribindex=%u > "
1647 "GL_MAX_VERTEX_ATTRIBS)",
1648 attribIndex);
1649 return;
1650 }
1651
1652 FLUSH_VERTICES(ctx, 0);
1653
1654 update_array_format(ctx, "glVertexAttribIFormat",
1655 VERT_ATTRIB_GENERIC(attribIndex),
1656 legalTypes, 1, 4, size, type, GL_FALSE, GL_TRUE,
1657 relativeOffset);
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001658}
1659
1660
1661void GLAPIENTRY
1662_mesa_VertexAttribLFormat(GLuint attribIndex, GLint size, GLenum type,
1663 GLuint relativeOffset)
1664{
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001665 const GLbitfield legalTypes = DOUBLE_BIT;
1666
1667 GET_CURRENT_CONTEXT(ctx);
1668 ASSERT_OUTSIDE_BEGIN_END(ctx);
1669
1670 /* Page 298 of the PDF of the OpenGL 4.3 (Core Profile) spec says:
1671 *
1672 * "An INVALID_OPERATION error is generated under any of the following
1673 * conditions:
1674 * • if no vertex array object is currently bound (see section 10.4);
1675 * • ..."
1676 *
1677 * This language is missing from the extension spec, but we assume
1678 * that this is an oversight.
1679 */
1680 if (ctx->API == API_OPENGL_CORE &&
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001681 ctx->Array.VAO == ctx->Array.DefaultVAO) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001682 _mesa_error(ctx, GL_INVALID_OPERATION,
1683 "glVertexAttribLFormat(No array object bound)");
1684 return;
1685 }
1686
1687 /* The ARB_vertex_attrib_binding spec says:
1688 *
1689 * "The error INVALID_VALUE is generated if <attribindex> is greater than
1690 * or equal to the value of MAX_VERTEX_ATTRIBS."
1691 */
Paul Berry84732a92014-01-08 10:00:28 -08001692 if (attribIndex >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001693 _mesa_error(ctx, GL_INVALID_VALUE,
1694 "glVertexAttribLFormat(attribindex=%u > "
1695 "GL_MAX_VERTEX_ATTRIBS)",
1696 attribIndex);
1697 return;
1698 }
1699
1700 FLUSH_VERTICES(ctx, 0);
1701
1702 update_array_format(ctx, "glVertexAttribLFormat",
1703 VERT_ATTRIB_GENERIC(attribIndex),
1704 legalTypes, 1, 4, size, type, GL_FALSE, GL_FALSE,
1705 relativeOffset);
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001706}
1707
1708
1709void GLAPIENTRY
1710_mesa_VertexAttribBinding(GLuint attribIndex, GLuint bindingIndex)
1711{
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001712 GET_CURRENT_CONTEXT(ctx);
1713 ASSERT_OUTSIDE_BEGIN_END(ctx);
1714
1715 /* The ARB_vertex_attrib_binding spec says:
1716 *
1717 * "An INVALID_OPERATION error is generated if no vertex array object
1718 * is bound."
1719 */
1720 if (ctx->API == API_OPENGL_CORE &&
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001721 ctx->Array.VAO == ctx->Array.DefaultVAO) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001722 _mesa_error(ctx, GL_INVALID_OPERATION,
1723 "glVertexAttribBinding(No array object bound)");
1724 return;
1725 }
1726
1727 /* The ARB_vertex_attrib_binding spec says:
1728 *
1729 * "<attribindex> must be less than the value of MAX_VERTEX_ATTRIBS and
1730 * <bindingindex> must be less than the value of
1731 * MAX_VERTEX_ATTRIB_BINDINGS, otherwise the error INVALID_VALUE
1732 * is generated."
1733 */
Paul Berry84732a92014-01-08 10:00:28 -08001734 if (attribIndex >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001735 _mesa_error(ctx, GL_INVALID_VALUE,
1736 "glVertexAttribBinding(attribindex=%u >= "
1737 "GL_MAX_VERTEX_ATTRIBS)",
1738 attribIndex);
1739 return;
1740 }
1741
1742 if (bindingIndex >= ctx->Const.MaxVertexAttribBindings) {
1743 _mesa_error(ctx, GL_INVALID_VALUE,
1744 "glVertexAttribBinding(bindingindex=%u >= "
1745 "GL_MAX_VERTEX_ATTRIB_BINDINGS)",
1746 bindingIndex);
1747 return;
1748 }
1749
1750 ASSERT(VERT_ATTRIB_GENERIC(attribIndex) <
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001751 Elements(ctx->Array.VAO->VertexAttrib));
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001752
1753 vertex_attrib_binding(ctx, VERT_ATTRIB_GENERIC(attribIndex),
1754 VERT_ATTRIB_GENERIC(bindingIndex));
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001755}
1756
1757
1758void GLAPIENTRY
1759_mesa_VertexBindingDivisor(GLuint bindingIndex, GLuint divisor)
1760{
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001761 GET_CURRENT_CONTEXT(ctx);
1762 ASSERT_OUTSIDE_BEGIN_END(ctx);
1763
1764 if (!ctx->Extensions.ARB_instanced_arrays) {
1765 _mesa_error(ctx, GL_INVALID_OPERATION, "glVertexBindingDivisor()");
1766 return;
1767 }
1768
1769 /* The ARB_vertex_attrib_binding spec says:
1770 *
1771 * "An INVALID_OPERATION error is generated if no vertex array object
1772 * is bound."
1773 */
1774 if (ctx->API == API_OPENGL_CORE &&
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001775 ctx->Array.VAO == ctx->Array.DefaultVAO) {
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001776 _mesa_error(ctx, GL_INVALID_OPERATION,
1777 "glVertexBindingDivisor(No array object bound)");
1778 return;
1779 }
1780
1781 /* The ARB_vertex_attrib_binding spec says:
1782 *
1783 * "An INVALID_VALUE error is generated if <bindingindex> is greater
1784 * than or equal to the value of MAX_VERTEX_ATTRIB_BINDINGS."
1785 */
1786 if (bindingIndex >= ctx->Const.MaxVertexAttribBindings) {
1787 _mesa_error(ctx, GL_INVALID_VALUE,
1788 "glVertexBindingDivisor(bindingindex=%u > "
1789 "GL_MAX_VERTEX_ATTRIB_BINDINGS)",
1790 bindingIndex);
1791 return;
1792 }
1793
1794 vertex_binding_divisor(ctx, VERT_ATTRIB_GENERIC(bindingIndex), divisor);
Fredrik Höglundbb2d02c2013-04-09 20:44:58 +02001795}
1796
1797
1798/**
Brian Paulb2885402009-08-06 13:53:06 -06001799 * Copy one client vertex array to another.
1800 */
1801void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04001802_mesa_copy_client_array(struct gl_context *ctx,
Brian Paulb2885402009-08-06 13:53:06 -06001803 struct gl_client_array *dst,
1804 struct gl_client_array *src)
1805{
1806 dst->Size = src->Size;
1807 dst->Type = src->Type;
1808 dst->Format = src->Format;
1809 dst->Stride = src->Stride;
1810 dst->StrideB = src->StrideB;
1811 dst->Ptr = src->Ptr;
1812 dst->Enabled = src->Enabled;
1813 dst->Normalized = src->Normalized;
Brian Pauld1184d22010-10-28 21:17:41 -06001814 dst->Integer = src->Integer;
Brian Paul1d1eb952011-01-15 10:32:34 -07001815 dst->InstanceDivisor = src->InstanceDivisor;
Brian Paulb2885402009-08-06 13:53:06 -06001816 dst->_ElementSize = src->_ElementSize;
1817 _mesa_reference_buffer_object(ctx, &dst->BufferObj, src->BufferObj);
1818 dst->_MaxElement = src->_MaxElement;
1819}
1820
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001821void
1822_mesa_copy_vertex_attrib_array(struct gl_context *ctx,
1823 struct gl_vertex_attrib_array *dst,
1824 const struct gl_vertex_attrib_array *src)
1825{
1826 dst->Size = src->Size;
1827 dst->Type = src->Type;
1828 dst->Format = src->Format;
1829 dst->VertexBinding = src->VertexBinding;
1830 dst->RelativeOffset = src->RelativeOffset;
1831 dst->Format = src->Format;
1832 dst->Integer = src->Integer;
1833 dst->Normalized = src->Normalized;
1834 dst->Ptr = src->Ptr;
1835 dst->Enabled = src->Enabled;
1836 dst->_ElementSize = src->_ElementSize;
1837}
Brian Paulb2885402009-08-06 13:53:06 -06001838
Fredrik Höglund59b01ca2013-04-09 20:54:25 +02001839void
1840_mesa_copy_vertex_buffer_binding(struct gl_context *ctx,
1841 struct gl_vertex_buffer_binding *dst,
1842 const struct gl_vertex_buffer_binding *src)
1843{
1844 dst->Offset = src->Offset;
1845 dst->Stride = src->Stride;
1846 dst->InstanceDivisor = src->InstanceDivisor;
1847 dst->_BoundArrays = src->_BoundArrays;
1848
1849 _mesa_reference_buffer_object(ctx, &dst->BufferObj, src->BufferObj);
1850}
Brian Paulb2885402009-08-06 13:53:06 -06001851
1852/**
Brian Paul39d75242009-05-14 16:25:32 -06001853 * Print vertex array's fields.
1854 */
1855static void
1856print_array(const char *name, GLint index, const struct gl_client_array *array)
1857{
1858 if (index >= 0)
Kristian Høgsberg298be2b2010-02-19 12:32:24 -05001859 printf(" %s[%d]: ", name, index);
Brian Paul39d75242009-05-14 16:25:32 -06001860 else
Kristian Høgsberg298be2b2010-02-19 12:32:24 -05001861 printf(" %s: ", name);
Brian Paul4beea122010-07-14 14:36:25 -06001862 printf("Ptr=%p, Type=0x%x, Size=%d, ElemSize=%u, Stride=%d, Buffer=%u(Size %lu), MaxElem=%u\n",
Kristian Høgsberg298be2b2010-02-19 12:32:24 -05001863 array->Ptr, array->Type, array->Size,
1864 array->_ElementSize, array->StrideB,
Brian Paul4beea122010-07-14 14:36:25 -06001865 array->BufferObj->Name, (unsigned long) array->BufferObj->Size,
Kristian Høgsberg298be2b2010-02-19 12:32:24 -05001866 array->_MaxElement);
Brian Paul39d75242009-05-14 16:25:32 -06001867}
1868
1869
1870/**
1871 * Print current vertex object/array info. For debug.
1872 */
1873void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04001874_mesa_print_arrays(struct gl_context *ctx)
Brian Paul39d75242009-05-14 16:25:32 -06001875{
Kenneth Graunkeaac14152014-02-01 19:36:59 -08001876 struct gl_vertex_array_object *vao = ctx->Array.VAO;
Brian Paul39d75242009-05-14 16:25:32 -06001877 GLuint i;
1878
Kenneth Graunkede47fd22014-02-01 20:48:51 -08001879 _mesa_update_vao_max_element(ctx, vao);
Brian Paul8fe31342009-05-21 15:36:25 -06001880
Kenneth Graunke94e07c12014-02-01 19:31:22 -08001881 printf("Array Object %u\n", vao->Name);
1882 if (vao->_VertexAttrib[VERT_ATTRIB_POS].Enabled)
1883 print_array("Vertex", -1, &vao->_VertexAttrib[VERT_ATTRIB_POS]);
1884 if (vao->_VertexAttrib[VERT_ATTRIB_NORMAL].Enabled)
1885 print_array("Normal", -1, &vao->_VertexAttrib[VERT_ATTRIB_NORMAL]);
1886 if (vao->_VertexAttrib[VERT_ATTRIB_COLOR0].Enabled)
1887 print_array("Color", -1, &vao->_VertexAttrib[VERT_ATTRIB_COLOR0]);
Mathias Fröhlich762c9762011-10-31 22:23:51 +01001888 for (i = 0; i < ctx->Const.MaxTextureCoordUnits; i++)
Kenneth Graunke94e07c12014-02-01 19:31:22 -08001889 if (vao->_VertexAttrib[VERT_ATTRIB_TEX(i)].Enabled)
1890 print_array("TexCoord", i, &vao->_VertexAttrib[VERT_ATTRIB_TEX(i)]);
Mathias Fröhlich762c9762011-10-31 22:23:51 +01001891 for (i = 0; i < VERT_ATTRIB_GENERIC_MAX; i++)
Kenneth Graunke94e07c12014-02-01 19:31:22 -08001892 if (vao->_VertexAttrib[VERT_ATTRIB_GENERIC(i)].Enabled)
1893 print_array("Attrib", i, &vao->_VertexAttrib[VERT_ATTRIB_GENERIC(i)]);
1894 printf(" _MaxElement = %u\n", vao->_MaxElement);
Brian Paul39d75242009-05-14 16:25:32 -06001895}
1896
1897
1898/**
Brian Paul095c6692006-04-25 00:21:32 +00001899 * Initialize vertex array state for given context.
1900 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001901void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04001902_mesa_init_varray(struct gl_context *ctx)
Keith Whitwell6dc85572003-07-17 13:43:59 +00001903{
Kenneth Graunke0dfe50f2014-02-01 19:14:38 -08001904 ctx->Array.DefaultVAO = ctx->Driver.NewArrayObject(ctx, 0);
Kenneth Graunkede47fd22014-02-01 20:48:51 -08001905 _mesa_reference_vao(ctx, &ctx->Array.VAO, ctx->Array.DefaultVAO);
Brian Paul095c6692006-04-25 00:21:32 +00001906 ctx->Array.ActiveTexture = 0; /* GL_ARB_multitexture */
Brian Paul12cf98f2009-06-19 17:58:47 -06001907
1908 ctx->Array.Objects = _mesa_NewHashTable();
1909}
1910
1911
1912/**
1913 * Callback for deleting an array object. Called by _mesa_HashDeleteAll().
1914 */
1915static void
1916delete_arrayobj_cb(GLuint id, void *data, void *userData)
1917{
Kenneth Graunkeaac14152014-02-01 19:36:59 -08001918 struct gl_vertex_array_object *vao = (struct gl_vertex_array_object *) data;
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04001919 struct gl_context *ctx = (struct gl_context *) userData;
Kenneth Graunkede47fd22014-02-01 20:48:51 -08001920 _mesa_delete_vao(ctx, vao);
Brian Paul12cf98f2009-06-19 17:58:47 -06001921}
1922
1923
1924/**
1925 * Free vertex array state for given context.
1926 */
1927void
Kristian Høgsbergf9995b32010-10-12 12:26:10 -04001928_mesa_free_varray_data(struct gl_context *ctx)
Brian Paul12cf98f2009-06-19 17:58:47 -06001929{
1930 _mesa_HashDeleteAll(ctx->Array.Objects, delete_arrayobj_cb, ctx);
1931 _mesa_DeleteHashTable(ctx->Array.Objects);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001932}