2ee2cd8df5ab92de70eca9947387feb30cbf8cb6
[mesa.git] / src / mesa / main / api_validate.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included
14 * in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 #include <stdbool.h>
26 #include "glheader.h"
27 #include "api_validate.h"
28 #include "bufferobj.h"
29 #include "context.h"
30 #include "imports.h"
31 #include "mtypes.h"
32 #include "enums.h"
33 #include "vbo/vbo.h"
34 #include "transformfeedback.h"
35 #include <stdbool.h>
36
37
38 /**
39 * Check if OK to draw arrays/elements.
40 */
41 static bool
42 check_valid_to_render(struct gl_context *ctx, const char *function)
43 {
44 if (!_mesa_valid_to_render(ctx, function)) {
45 return false;
46 }
47
48 switch (ctx->API) {
49 case API_OPENGLES2:
50 /* For ES2, we can draw if we have a vertex program/shader). */
51 return ctx->VertexProgram._Current != NULL;
52
53 case API_OPENGLES:
54 /* For OpenGL ES, only draw if we have vertex positions
55 */
56 if (!ctx->Array.VAO->VertexAttrib[VERT_ATTRIB_POS].Enabled)
57 return false;
58 break;
59
60 case API_OPENGL_CORE:
61 /* Section 10.4 (Drawing Commands Using Vertex Arrays) of the OpenGL 4.5
62 * Core Profile spec says:
63 *
64 * "An INVALID_OPERATION error is generated if no vertex array
65 * object is bound (see section 10.3.1)."
66 */
67 if (ctx->Array.VAO == ctx->Array.DefaultVAO) {
68 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(no VAO bound)", function);
69 return false;
70 }
71
72 /* The spec argues that this is allowed because a tess ctrl shader
73 * without a tess eval shader can be used with transform feedback.
74 * However, glBeginTransformFeedback doesn't allow GL_PATCHES and
75 * therefore doesn't allow tessellation.
76 *
77 * Further investigation showed that this is indeed a spec bug and
78 * a tess ctrl shader without a tess eval shader shouldn't have been
79 * allowed, because there is no API in GL 4.0 that can make use this
80 * to produce something useful.
81 *
82 * Also, all vendors except one don't support a tess ctrl shader without
83 * a tess eval shader anyway.
84 */
85 if (ctx->TessCtrlProgram._Current && !ctx->TessEvalProgram._Current) {
86 _mesa_error(ctx, GL_INVALID_OPERATION,
87 "%s(tess eval shader is missing)", function);
88 return false;
89 }
90
91 /* Section 7.3 (Program Objects) of the OpenGL 4.5 Core Profile spec
92 * says:
93 *
94 * "If there is no active program for the vertex or fragment shader
95 * stages, the results of vertex and/or fragment processing will be
96 * undefined. However, this is not an error."
97 *
98 * The fragment shader is not tested here because other state (e.g.,
99 * GL_RASTERIZER_DISCARD) affects whether or not we actually care.
100 */
101 return ctx->VertexProgram._Current != NULL;
102
103 case API_OPENGL_COMPAT:
104 if (ctx->VertexProgram._Current != NULL) {
105 /* Draw regardless of whether or not we have any vertex arrays.
106 * (Ex: could draw a point using a constant vertex pos)
107 */
108 return true;
109 } else {
110 /* Draw if we have vertex positions (GL_VERTEX_ARRAY or generic
111 * array [0]).
112 */
113 return (ctx->Array.VAO->VertexAttrib[VERT_ATTRIB_POS].Enabled ||
114 ctx->Array.VAO->VertexAttrib[VERT_ATTRIB_GENERIC0].Enabled);
115 }
116 break;
117
118 default:
119 unreachable("Invalid API value in check_valid_to_render()");
120 }
121
122 return true;
123 }
124
125
126 /**
127 * Is 'mode' a valid value for glBegin(), glDrawArrays(), glDrawElements(),
128 * etc? The set of legal values depends on whether geometry shaders/programs
129 * are supported.
130 * Note: This may be called during display list compilation.
131 */
132 bool
133 _mesa_is_valid_prim_mode(struct gl_context *ctx, GLenum mode)
134 {
135 /* The overwhelmingly common case is (mode <= GL_TRIANGLE_FAN). Test that
136 * first and exit. You would think that a switch-statement would be the
137 * right approach, but at least GCC 4.7.2 generates some pretty dire code
138 * for the common case.
139 */
140 if (likely(mode <= GL_TRIANGLE_FAN))
141 return true;
142
143 if (mode <= GL_POLYGON)
144 return (ctx->API == API_OPENGL_COMPAT);
145
146 if (mode <= GL_TRIANGLE_STRIP_ADJACENCY)
147 return _mesa_has_geometry_shaders(ctx);
148
149 if (mode == GL_PATCHES)
150 return _mesa_has_tessellation(ctx);
151
152 return false;
153 }
154
155
156 /**
157 * Is 'mode' a valid value for glBegin(), glDrawArrays(), glDrawElements(),
158 * etc? Also, do additional checking related to transformation feedback.
159 * Note: this function cannot be called during glNewList(GL_COMPILE) because
160 * this code depends on current transform feedback state.
161 * Also, do additional checking related to tessellation shaders.
162 */
163 GLboolean
164 _mesa_valid_prim_mode(struct gl_context *ctx, GLenum mode, const char *name)
165 {
166 bool valid_enum = _mesa_is_valid_prim_mode(ctx, mode);
167
168 if (!valid_enum) {
169 _mesa_error(ctx, GL_INVALID_ENUM, "%s(mode=%x)", name, mode);
170 return GL_FALSE;
171 }
172
173 /* From the OpenGL 4.5 specification, section 11.3.1:
174 *
175 * The error INVALID_OPERATION is generated if Begin, or any command that
176 * implicitly calls Begin, is called when a geometry shader is active and:
177 *
178 * * the input primitive type of the current geometry shader is
179 * POINTS and <mode> is not POINTS,
180 *
181 * * the input primitive type of the current geometry shader is
182 * LINES and <mode> is not LINES, LINE_STRIP, or LINE_LOOP,
183 *
184 * * the input primitive type of the current geometry shader is
185 * TRIANGLES and <mode> is not TRIANGLES, TRIANGLE_STRIP or
186 * TRIANGLE_FAN,
187 *
188 * * the input primitive type of the current geometry shader is
189 * LINES_ADJACENCY_ARB and <mode> is not LINES_ADJACENCY_ARB or
190 * LINE_STRIP_ADJACENCY_ARB, or
191 *
192 * * the input primitive type of the current geometry shader is
193 * TRIANGLES_ADJACENCY_ARB and <mode> is not
194 * TRIANGLES_ADJACENCY_ARB or TRIANGLE_STRIP_ADJACENCY_ARB.
195 *
196 * The GL spec doesn't mention any interaction with tessellation, which
197 * is clearly a spec bug. The same rule should apply, but instead of
198 * the draw primitive mode, the tessellation evaluation shader primitive
199 * mode should be used for the checking.
200 */
201 if (ctx->_Shader->CurrentProgram[MESA_SHADER_GEOMETRY]) {
202 const GLenum geom_mode =
203 ctx->_Shader->CurrentProgram[MESA_SHADER_GEOMETRY]->
204 _LinkedShaders[MESA_SHADER_GEOMETRY]->info.Geom.InputType;
205 struct gl_shader_program *tes =
206 ctx->_Shader->CurrentProgram[MESA_SHADER_TESS_EVAL];
207 GLenum mode_before_gs = mode;
208
209 if (tes) {
210 struct gl_linked_shader *tes_sh =
211 tes->_LinkedShaders[MESA_SHADER_TESS_EVAL];
212 if (tes_sh->info.TessEval.PointMode)
213 mode_before_gs = GL_POINTS;
214 else if (tes_sh->info.TessEval.PrimitiveMode == GL_ISOLINES)
215 mode_before_gs = GL_LINES;
216 else
217 /* the GL_QUADS mode generates triangles too */
218 mode_before_gs = GL_TRIANGLES;
219 }
220
221 switch (mode_before_gs) {
222 case GL_POINTS:
223 valid_enum = (geom_mode == GL_POINTS);
224 break;
225 case GL_LINES:
226 case GL_LINE_LOOP:
227 case GL_LINE_STRIP:
228 valid_enum = (geom_mode == GL_LINES);
229 break;
230 case GL_TRIANGLES:
231 case GL_TRIANGLE_STRIP:
232 case GL_TRIANGLE_FAN:
233 valid_enum = (geom_mode == GL_TRIANGLES);
234 break;
235 case GL_QUADS:
236 case GL_QUAD_STRIP:
237 case GL_POLYGON:
238 valid_enum = false;
239 break;
240 case GL_LINES_ADJACENCY:
241 case GL_LINE_STRIP_ADJACENCY:
242 valid_enum = (geom_mode == GL_LINES_ADJACENCY);
243 break;
244 case GL_TRIANGLES_ADJACENCY:
245 case GL_TRIANGLE_STRIP_ADJACENCY:
246 valid_enum = (geom_mode == GL_TRIANGLES_ADJACENCY);
247 break;
248 default:
249 valid_enum = false;
250 break;
251 }
252 if (!valid_enum) {
253 _mesa_error(ctx, GL_INVALID_OPERATION,
254 "%s(mode=%s vs geometry shader input %s)",
255 name,
256 _mesa_lookup_prim_by_nr(mode_before_gs),
257 _mesa_lookup_prim_by_nr(geom_mode));
258 return GL_FALSE;
259 }
260 }
261
262 /* From the OpenGL 4.0 (Core Profile) spec (section 2.12):
263 *
264 * "Tessellation operates only on patch primitives. If tessellation is
265 * active, any command that transfers vertices to the GL will
266 * generate an INVALID_OPERATION error if the primitive mode is not
267 * PATCHES.
268 * Patch primitives are not supported by pipeline stages below the
269 * tessellation evaluation shader. If there is no active program
270 * object or the active program object does not contain a tessellation
271 * evaluation shader, the error INVALID_OPERATION is generated by any
272 * command that transfers vertices to the GL if the primitive mode is
273 * PATCHES."
274 *
275 */
276 if (ctx->_Shader->CurrentProgram[MESA_SHADER_TESS_EVAL] ||
277 ctx->_Shader->CurrentProgram[MESA_SHADER_TESS_CTRL]) {
278 if (mode != GL_PATCHES) {
279 _mesa_error(ctx, GL_INVALID_OPERATION,
280 "only GL_PATCHES valid with tessellation");
281 return GL_FALSE;
282 }
283 }
284 else {
285 if (mode == GL_PATCHES) {
286 _mesa_error(ctx, GL_INVALID_OPERATION,
287 "GL_PATCHES only valid with tessellation");
288 return GL_FALSE;
289 }
290 }
291
292 /* From the GL_EXT_transform_feedback spec:
293 *
294 * "The error INVALID_OPERATION is generated if Begin, or any command
295 * that performs an explicit Begin, is called when:
296 *
297 * * a geometry shader is not active and <mode> does not match the
298 * allowed begin modes for the current transform feedback state as
299 * given by table X.1.
300 *
301 * * a geometry shader is active and the output primitive type of the
302 * geometry shader does not match the allowed begin modes for the
303 * current transform feedback state as given by table X.1.
304 *
305 */
306 if (_mesa_is_xfb_active_and_unpaused(ctx)) {
307 GLboolean pass = GL_TRUE;
308
309 if(ctx->_Shader->CurrentProgram[MESA_SHADER_GEOMETRY]) {
310 switch (ctx->_Shader->CurrentProgram[MESA_SHADER_GEOMETRY]->
311 _LinkedShaders[MESA_SHADER_GEOMETRY]->
312 info.Geom.OutputType) {
313 case GL_POINTS:
314 pass = ctx->TransformFeedback.Mode == GL_POINTS;
315 break;
316 case GL_LINE_STRIP:
317 pass = ctx->TransformFeedback.Mode == GL_LINES;
318 break;
319 case GL_TRIANGLE_STRIP:
320 pass = ctx->TransformFeedback.Mode == GL_TRIANGLES;
321 break;
322 default:
323 pass = GL_FALSE;
324 }
325 }
326 else if (ctx->_Shader->CurrentProgram[MESA_SHADER_TESS_EVAL]) {
327 struct gl_shader_program *tes =
328 ctx->_Shader->CurrentProgram[MESA_SHADER_TESS_EVAL];
329 struct gl_linked_shader *tes_sh =
330 tes->_LinkedShaders[MESA_SHADER_TESS_EVAL];
331 if (tes_sh->info.TessEval.PointMode)
332 pass = ctx->TransformFeedback.Mode == GL_POINTS;
333 else if (tes_sh->info.TessEval.PrimitiveMode == GL_ISOLINES)
334 pass = ctx->TransformFeedback.Mode == GL_LINES;
335 else
336 pass = ctx->TransformFeedback.Mode == GL_TRIANGLES;
337 }
338 else {
339 switch (mode) {
340 case GL_POINTS:
341 pass = ctx->TransformFeedback.Mode == GL_POINTS;
342 break;
343 case GL_LINES:
344 case GL_LINE_STRIP:
345 case GL_LINE_LOOP:
346 pass = ctx->TransformFeedback.Mode == GL_LINES;
347 break;
348 default:
349 pass = ctx->TransformFeedback.Mode == GL_TRIANGLES;
350 break;
351 }
352 }
353 if (!pass) {
354 _mesa_error(ctx, GL_INVALID_OPERATION,
355 "%s(mode=%s vs transform feedback %s)",
356 name,
357 _mesa_lookup_prim_by_nr(mode),
358 _mesa_lookup_prim_by_nr(ctx->TransformFeedback.Mode));
359 return GL_FALSE;
360 }
361 }
362
363 return GL_TRUE;
364 }
365
366 /**
367 * Verify that the element type is valid.
368 *
369 * Generates \c GL_INVALID_ENUM and returns \c false if it is not.
370 */
371 static bool
372 valid_elements_type(struct gl_context *ctx, GLenum type, const char *name)
373 {
374 switch (type) {
375 case GL_UNSIGNED_BYTE:
376 case GL_UNSIGNED_SHORT:
377 case GL_UNSIGNED_INT:
378 return true;
379
380 default:
381 _mesa_error(ctx, GL_INVALID_ENUM, "%s(type = %s)", name,
382 _mesa_enum_to_string(type));
383 return false;
384 }
385 }
386
387 static bool
388 validate_DrawElements_common(struct gl_context *ctx,
389 GLenum mode, GLsizei count, GLenum type,
390 const GLvoid *indices,
391 const char *caller)
392 {
393 /* From the GLES3 specification, section 2.14.2 (Transform Feedback
394 * Primitive Capture):
395 *
396 * The error INVALID_OPERATION is also generated by DrawElements,
397 * DrawElementsInstanced, and DrawRangeElements while transform feedback
398 * is active and not paused, regardless of mode.
399 */
400 if (_mesa_is_gles3(ctx) && !ctx->Extensions.OES_geometry_shader &&
401 _mesa_is_xfb_active_and_unpaused(ctx)) {
402 _mesa_error(ctx, GL_INVALID_OPERATION,
403 "%s(transform feedback active)", caller);
404 return false;
405 }
406
407 if (count < 0) {
408 _mesa_error(ctx, GL_INVALID_VALUE, "%s(count)", caller);
409 return false;
410 }
411
412 if (!_mesa_valid_prim_mode(ctx, mode, caller)) {
413 return false;
414 }
415
416 if (!valid_elements_type(ctx, type, caller))
417 return false;
418
419 if (!check_valid_to_render(ctx, caller))
420 return false;
421
422 /* Not using a VBO for indices, so avoid NULL pointer derefs later.
423 */
424 if (!_mesa_is_bufferobj(ctx->Array.VAO->IndexBufferObj) && indices == NULL)
425 return false;
426
427 if (count == 0)
428 return false;
429
430 return true;
431 }
432
433 /**
434 * Error checking for glDrawElements(). Includes parameter checking
435 * and VBO bounds checking.
436 * \return GL_TRUE if OK to render, GL_FALSE if error found
437 */
438 GLboolean
439 _mesa_validate_DrawElements(struct gl_context *ctx,
440 GLenum mode, GLsizei count, GLenum type,
441 const GLvoid *indices)
442 {
443 FLUSH_CURRENT(ctx, 0);
444
445 return validate_DrawElements_common(ctx, mode, count, type, indices,
446 "glDrawElements");
447 }
448
449
450 /**
451 * Error checking for glMultiDrawElements(). Includes parameter checking
452 * and VBO bounds checking.
453 * \return GL_TRUE if OK to render, GL_FALSE if error found
454 */
455 GLboolean
456 _mesa_validate_MultiDrawElements(struct gl_context *ctx,
457 GLenum mode, const GLsizei *count,
458 GLenum type, const GLvoid * const *indices,
459 GLuint primcount)
460 {
461 unsigned i;
462
463 FLUSH_CURRENT(ctx, 0);
464
465 for (i = 0; i < primcount; i++) {
466 if (count[i] < 0) {
467 _mesa_error(ctx, GL_INVALID_VALUE,
468 "glMultiDrawElements(count)" );
469 return GL_FALSE;
470 }
471 }
472
473 if (!_mesa_valid_prim_mode(ctx, mode, "glMultiDrawElements")) {
474 return GL_FALSE;
475 }
476
477 if (!valid_elements_type(ctx, type, "glMultiDrawElements"))
478 return GL_FALSE;
479
480 if (!check_valid_to_render(ctx, "glMultiDrawElements"))
481 return GL_FALSE;
482
483 /* Not using a VBO for indices, so avoid NULL pointer derefs later.
484 */
485 if (!_mesa_is_bufferobj(ctx->Array.VAO->IndexBufferObj)) {
486 for (i = 0; i < primcount; i++) {
487 if (!indices[i])
488 return GL_FALSE;
489 }
490 }
491
492 return GL_TRUE;
493 }
494
495
496 /**
497 * Error checking for glDrawRangeElements(). Includes parameter checking
498 * and VBO bounds checking.
499 * \return GL_TRUE if OK to render, GL_FALSE if error found
500 */
501 GLboolean
502 _mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode,
503 GLuint start, GLuint end,
504 GLsizei count, GLenum type,
505 const GLvoid *indices)
506 {
507 FLUSH_CURRENT(ctx, 0);
508
509 if (end < start) {
510 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawRangeElements(end<start)");
511 return GL_FALSE;
512 }
513
514 return validate_DrawElements_common(ctx, mode, count, type, indices,
515 "glDrawRangeElements");
516 }
517
518 static bool
519 validate_draw_arrays(struct gl_context *ctx, const char *func,
520 GLenum mode, GLsizei count, GLsizei numInstances)
521 {
522 struct gl_transform_feedback_object *xfb_obj
523 = ctx->TransformFeedback.CurrentObject;
524 FLUSH_CURRENT(ctx, 0);
525
526 if (count < 0) {
527 _mesa_error(ctx, GL_INVALID_VALUE, "%s(count)", func);
528 return false;
529 }
530
531 if (!_mesa_valid_prim_mode(ctx, mode, func))
532 return false;
533
534 if (!check_valid_to_render(ctx, func))
535 return false;
536
537 /* From the GLES3 specification, section 2.14.2 (Transform Feedback
538 * Primitive Capture):
539 *
540 * The error INVALID_OPERATION is generated by DrawArrays and
541 * DrawArraysInstanced if recording the vertices of a primitive to the
542 * buffer objects being used for transform feedback purposes would result
543 * in either exceeding the limits of any buffer object’s size, or in
544 * exceeding the end position offset + size − 1, as set by
545 * BindBufferRange.
546 *
547 * This is in contrast to the behaviour of desktop GL, where the extra
548 * primitives are silently dropped from the transform feedback buffer.
549 */
550 if (_mesa_is_gles3(ctx) && _mesa_is_xfb_active_and_unpaused(ctx)) {
551 size_t prim_count = vbo_count_tessellated_primitives(mode, count, 1);
552 if (xfb_obj->GlesRemainingPrims < prim_count) {
553 _mesa_error(ctx, GL_INVALID_OPERATION,
554 "%s(exceeds transform feedback size)", func);
555 return false;
556 }
557 xfb_obj->GlesRemainingPrims -= prim_count;
558 }
559
560 if (count == 0)
561 return false;
562
563 return true;
564 }
565
566 /**
567 * Called from the tnl module to error check the function parameters and
568 * verify that we really can draw something.
569 * \return GL_TRUE if OK to render, GL_FALSE if error found
570 */
571 GLboolean
572 _mesa_validate_DrawArrays(struct gl_context *ctx, GLenum mode, GLsizei count)
573 {
574 return validate_draw_arrays(ctx, "glDrawArrays", mode, count, 1);
575 }
576
577
578 GLboolean
579 _mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first,
580 GLsizei count, GLsizei numInstances)
581 {
582 if (first < 0) {
583 _mesa_error(ctx, GL_INVALID_VALUE,
584 "glDrawArraysInstanced(start=%d)", first);
585 return GL_FALSE;
586 }
587
588 if (numInstances <= 0) {
589 if (numInstances < 0)
590 _mesa_error(ctx, GL_INVALID_VALUE,
591 "glDrawArraysInstanced(numInstances=%d)", numInstances);
592 return GL_FALSE;
593 }
594
595 return validate_draw_arrays(ctx, "glDrawArraysInstanced", mode, count, 1);
596 }
597
598
599 GLboolean
600 _mesa_validate_DrawElementsInstanced(struct gl_context *ctx,
601 GLenum mode, GLsizei count, GLenum type,
602 const GLvoid *indices, GLsizei numInstances)
603 {
604 FLUSH_CURRENT(ctx, 0);
605
606 if (numInstances < 0) {
607 _mesa_error(ctx, GL_INVALID_VALUE,
608 "glDrawElementsInstanced(numInstances=%d)", numInstances);
609 return GL_FALSE;
610 }
611
612 return validate_DrawElements_common(ctx, mode, count, type, indices,
613 "glDrawElementsInstanced")
614 && (numInstances > 0);
615 }
616
617
618 GLboolean
619 _mesa_validate_DrawTransformFeedback(struct gl_context *ctx,
620 GLenum mode,
621 struct gl_transform_feedback_object *obj,
622 GLuint stream,
623 GLsizei numInstances)
624 {
625 FLUSH_CURRENT(ctx, 0);
626
627 if (!_mesa_valid_prim_mode(ctx, mode, "glDrawTransformFeedback*(mode)")) {
628 return GL_FALSE;
629 }
630
631 if (!obj) {
632 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTransformFeedback*(name)");
633 return GL_FALSE;
634 }
635
636 /* From the GL 4.5 specification, page 429:
637 * "An INVALID_VALUE error is generated if id is not the name of a
638 * transform feedback object."
639 */
640 if (!obj->EverBound) {
641 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTransformFeedback*(name)");
642 return GL_FALSE;
643 }
644
645 if (stream >= ctx->Const.MaxVertexStreams) {
646 _mesa_error(ctx, GL_INVALID_VALUE,
647 "glDrawTransformFeedbackStream*(index>=MaxVertexStream)");
648 return GL_FALSE;
649 }
650
651 if (!obj->EndedAnytime) {
652 _mesa_error(ctx, GL_INVALID_OPERATION, "glDrawTransformFeedback*");
653 return GL_FALSE;
654 }
655
656 if (numInstances <= 0) {
657 if (numInstances < 0)
658 _mesa_error(ctx, GL_INVALID_VALUE,
659 "glDrawTransformFeedback*Instanced(numInstances=%d)",
660 numInstances);
661 return GL_FALSE;
662 }
663
664 if (!check_valid_to_render(ctx, "glDrawTransformFeedback*")) {
665 return GL_FALSE;
666 }
667
668 return GL_TRUE;
669 }
670
671 static GLboolean
672 valid_draw_indirect(struct gl_context *ctx,
673 GLenum mode, const GLvoid *indirect,
674 GLsizei size, const char *name)
675 {
676 const uint64_t end = (uint64_t) (uintptr_t) indirect + size;
677
678 /* OpenGL ES 3.1 spec. section 10.5:
679 *
680 * "DrawArraysIndirect requires that all data sourced for the
681 * command, including the DrawArraysIndirectCommand
682 * structure, be in buffer objects, and may not be called when
683 * the default vertex array object is bound."
684 */
685 if (ctx->Array.VAO == ctx->Array.DefaultVAO) {
686 _mesa_error(ctx, GL_INVALID_OPERATION, "(no VAO bound)");
687 return GL_FALSE;
688 }
689
690 /* From OpenGL ES 3.1 spec. section 10.5:
691 * "An INVALID_OPERATION error is generated if zero is bound to
692 * VERTEX_ARRAY_BINDING, DRAW_INDIRECT_BUFFER or to any enabled
693 * vertex array."
694 *
695 * Here we check that for each enabled vertex array we have a vertex
696 * buffer bound.
697 */
698 if (_mesa_is_gles31(ctx) &&
699 ctx->Array.VAO->_Enabled != ctx->Array.VAO->VertexAttribBufferMask) {
700 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(No VBO bound)", name);
701 return GL_FALSE;
702 }
703
704 if (!_mesa_valid_prim_mode(ctx, mode, name))
705 return GL_FALSE;
706
707 /* OpenGL ES 3.1 specification, section 10.5:
708 *
709 * "An INVALID_OPERATION error is generated if
710 * transform feedback is active and not paused."
711 */
712 if (_mesa_is_gles31(ctx) && !ctx->Extensions.OES_geometry_shader &&
713 _mesa_is_xfb_active_and_unpaused(ctx)) {
714 _mesa_error(ctx, GL_INVALID_OPERATION,
715 "%s(TransformFeedback is active and not paused)", name);
716 }
717
718 /* From OpenGL version 4.4. section 10.5
719 * and OpenGL ES 3.1, section 10.6:
720 *
721 * "An INVALID_VALUE error is generated if indirect is not a
722 * multiple of the size, in basic machine units, of uint."
723 */
724 if ((GLsizeiptr)indirect & (sizeof(GLuint) - 1)) {
725 _mesa_error(ctx, GL_INVALID_VALUE,
726 "%s(indirect is not aligned)", name);
727 return GL_FALSE;
728 }
729
730 if (!_mesa_is_bufferobj(ctx->DrawIndirectBuffer)) {
731 _mesa_error(ctx, GL_INVALID_OPERATION,
732 "%s: no buffer bound to DRAW_INDIRECT_BUFFER", name);
733 return GL_FALSE;
734 }
735
736 if (_mesa_check_disallowed_mapping(ctx->DrawIndirectBuffer)) {
737 _mesa_error(ctx, GL_INVALID_OPERATION,
738 "%s(DRAW_INDIRECT_BUFFER is mapped)", name);
739 return GL_FALSE;
740 }
741
742 /* From the ARB_draw_indirect specification:
743 * "An INVALID_OPERATION error is generated if the commands source data
744 * beyond the end of the buffer object [...]"
745 */
746 if (ctx->DrawIndirectBuffer->Size < end) {
747 _mesa_error(ctx, GL_INVALID_OPERATION,
748 "%s(DRAW_INDIRECT_BUFFER too small)", name);
749 return GL_FALSE;
750 }
751
752 if (!check_valid_to_render(ctx, name))
753 return GL_FALSE;
754
755 return GL_TRUE;
756 }
757
758 static inline GLboolean
759 valid_draw_indirect_elements(struct gl_context *ctx,
760 GLenum mode, GLenum type, const GLvoid *indirect,
761 GLsizeiptr size, const char *name)
762 {
763 if (!valid_elements_type(ctx, type, name))
764 return GL_FALSE;
765
766 /*
767 * Unlike regular DrawElementsInstancedBaseVertex commands, the indices
768 * may not come from a client array and must come from an index buffer.
769 * If no element array buffer is bound, an INVALID_OPERATION error is
770 * generated.
771 */
772 if (!_mesa_is_bufferobj(ctx->Array.VAO->IndexBufferObj)) {
773 _mesa_error(ctx, GL_INVALID_OPERATION,
774 "%s(no buffer bound to GL_ELEMENT_ARRAY_BUFFER)", name);
775 return GL_FALSE;
776 }
777
778 return valid_draw_indirect(ctx, mode, indirect, size, name);
779 }
780
781 static inline GLboolean
782 valid_draw_indirect_multi(struct gl_context *ctx,
783 GLsizei primcount, GLsizei stride,
784 const char *name)
785 {
786
787 /* From the ARB_multi_draw_indirect specification:
788 * "INVALID_VALUE is generated by MultiDrawArraysIndirect or
789 * MultiDrawElementsIndirect if <primcount> is negative."
790 *
791 * "<primcount> must be positive, otherwise an INVALID_VALUE error will
792 * be generated."
793 */
794 if (primcount < 0) {
795 _mesa_error(ctx, GL_INVALID_VALUE, "%s(primcount < 0)", name);
796 return GL_FALSE;
797 }
798
799
800 /* From the ARB_multi_draw_indirect specification:
801 * "<stride> must be a multiple of four, otherwise an INVALID_VALUE
802 * error is generated."
803 */
804 if (stride % 4) {
805 _mesa_error(ctx, GL_INVALID_VALUE, "%s(stride %% 4)", name);
806 return GL_FALSE;
807 }
808
809 return GL_TRUE;
810 }
811
812 GLboolean
813 _mesa_validate_DrawArraysIndirect(struct gl_context *ctx,
814 GLenum mode,
815 const GLvoid *indirect)
816 {
817 const unsigned drawArraysNumParams = 4;
818
819 FLUSH_CURRENT(ctx, 0);
820
821 return valid_draw_indirect(ctx, mode,
822 indirect, drawArraysNumParams * sizeof(GLuint),
823 "glDrawArraysIndirect");
824 }
825
826 GLboolean
827 _mesa_validate_DrawElementsIndirect(struct gl_context *ctx,
828 GLenum mode, GLenum type,
829 const GLvoid *indirect)
830 {
831 const unsigned drawElementsNumParams = 5;
832
833 FLUSH_CURRENT(ctx, 0);
834
835 return valid_draw_indirect_elements(ctx, mode, type,
836 indirect, drawElementsNumParams * sizeof(GLuint),
837 "glDrawElementsIndirect");
838 }
839
840 GLboolean
841 _mesa_validate_MultiDrawArraysIndirect(struct gl_context *ctx,
842 GLenum mode,
843 const GLvoid *indirect,
844 GLsizei primcount, GLsizei stride)
845 {
846 GLsizeiptr size = 0;
847 const unsigned drawArraysNumParams = 4;
848
849 FLUSH_CURRENT(ctx, 0);
850
851 /* caller has converted stride==0 to drawArraysNumParams * sizeof(GLuint) */
852 assert(stride != 0);
853
854 if (!valid_draw_indirect_multi(ctx, primcount, stride,
855 "glMultiDrawArraysIndirect"))
856 return GL_FALSE;
857
858 /* number of bytes of the indirect buffer which will be read */
859 size = primcount
860 ? (primcount - 1) * stride + drawArraysNumParams * sizeof(GLuint)
861 : 0;
862
863 if (!valid_draw_indirect(ctx, mode, indirect, size,
864 "glMultiDrawArraysIndirect"))
865 return GL_FALSE;
866
867 return GL_TRUE;
868 }
869
870 GLboolean
871 _mesa_validate_MultiDrawElementsIndirect(struct gl_context *ctx,
872 GLenum mode, GLenum type,
873 const GLvoid *indirect,
874 GLsizei primcount, GLsizei stride)
875 {
876 GLsizeiptr size = 0;
877 const unsigned drawElementsNumParams = 5;
878
879 FLUSH_CURRENT(ctx, 0);
880
881 /* caller has converted stride==0 to drawElementsNumParams * sizeof(GLuint) */
882 assert(stride != 0);
883
884 if (!valid_draw_indirect_multi(ctx, primcount, stride,
885 "glMultiDrawElementsIndirect"))
886 return GL_FALSE;
887
888 /* number of bytes of the indirect buffer which will be read */
889 size = primcount
890 ? (primcount - 1) * stride + drawElementsNumParams * sizeof(GLuint)
891 : 0;
892
893 if (!valid_draw_indirect_elements(ctx, mode, type,
894 indirect, size,
895 "glMultiDrawElementsIndirect"))
896 return GL_FALSE;
897
898 return GL_TRUE;
899 }
900
901 static GLboolean
902 valid_draw_indirect_parameters(struct gl_context *ctx,
903 const char *name,
904 GLintptr drawcount)
905 {
906 /* From the ARB_indirect_parameters specification:
907 * "INVALID_VALUE is generated by MultiDrawArraysIndirectCountARB or
908 * MultiDrawElementsIndirectCountARB if <drawcount> is not a multiple of
909 * four."
910 */
911 if (drawcount & 3) {
912 _mesa_error(ctx, GL_INVALID_VALUE,
913 "%s(drawcount is not a multiple of 4)", name);
914 return GL_FALSE;
915 }
916
917 /* From the ARB_indirect_parameters specification:
918 * "INVALID_OPERATION is generated by MultiDrawArraysIndirectCountARB or
919 * MultiDrawElementsIndirectCountARB if no buffer is bound to the
920 * PARAMETER_BUFFER_ARB binding point."
921 */
922 if (!_mesa_is_bufferobj(ctx->ParameterBuffer)) {
923 _mesa_error(ctx, GL_INVALID_OPERATION,
924 "%s: no buffer bound to PARAMETER_BUFFER", name);
925 return GL_FALSE;
926 }
927
928 if (_mesa_check_disallowed_mapping(ctx->ParameterBuffer)) {
929 _mesa_error(ctx, GL_INVALID_OPERATION,
930 "%s(PARAMETER_BUFFER is mapped)", name);
931 return GL_FALSE;
932 }
933
934 /* From the ARB_indirect_parameters specification:
935 * "INVALID_OPERATION is generated by MultiDrawArraysIndirectCountARB or
936 * MultiDrawElementsIndirectCountARB if reading a <sizei> typed value
937 * from the buffer bound to the PARAMETER_BUFFER_ARB target at the offset
938 * specified by <drawcount> would result in an out-of-bounds access."
939 */
940 if (ctx->ParameterBuffer->Size < drawcount + sizeof(GLsizei)) {
941 _mesa_error(ctx, GL_INVALID_OPERATION,
942 "%s(PARAMETER_BUFFER too small)", name);
943 return GL_FALSE;
944 }
945
946 return GL_TRUE;
947 }
948
949 GLboolean
950 _mesa_validate_MultiDrawArraysIndirectCount(struct gl_context *ctx,
951 GLenum mode,
952 GLintptr indirect,
953 GLintptr drawcount,
954 GLsizei maxdrawcount,
955 GLsizei stride)
956 {
957 GLsizeiptr size = 0;
958 const unsigned drawArraysNumParams = 4;
959
960 FLUSH_CURRENT(ctx, 0);
961
962 /* caller has converted stride==0 to drawArraysNumParams * sizeof(GLuint) */
963 assert(stride != 0);
964
965 if (!valid_draw_indirect_multi(ctx, maxdrawcount, stride,
966 "glMultiDrawArraysIndirectCountARB"))
967 return GL_FALSE;
968
969 /* number of bytes of the indirect buffer which will be read */
970 size = maxdrawcount
971 ? (maxdrawcount - 1) * stride + drawArraysNumParams * sizeof(GLuint)
972 : 0;
973
974 if (!valid_draw_indirect(ctx, mode, (void *)indirect, size,
975 "glMultiDrawArraysIndirectCountARB"))
976 return GL_FALSE;
977
978 return valid_draw_indirect_parameters(
979 ctx, "glMultiDrawArraysIndirectCountARB", drawcount);
980 }
981
982 GLboolean
983 _mesa_validate_MultiDrawElementsIndirectCount(struct gl_context *ctx,
984 GLenum mode, GLenum type,
985 GLintptr indirect,
986 GLintptr drawcount,
987 GLsizei maxdrawcount,
988 GLsizei stride)
989 {
990 GLsizeiptr size = 0;
991 const unsigned drawElementsNumParams = 5;
992
993 FLUSH_CURRENT(ctx, 0);
994
995 /* caller has converted stride==0 to drawElementsNumParams * sizeof(GLuint) */
996 assert(stride != 0);
997
998 if (!valid_draw_indirect_multi(ctx, maxdrawcount, stride,
999 "glMultiDrawElementsIndirectCountARB"))
1000 return GL_FALSE;
1001
1002 /* number of bytes of the indirect buffer which will be read */
1003 size = maxdrawcount
1004 ? (maxdrawcount - 1) * stride + drawElementsNumParams * sizeof(GLuint)
1005 : 0;
1006
1007 if (!valid_draw_indirect_elements(ctx, mode, type,
1008 (void *)indirect, size,
1009 "glMultiDrawElementsIndirectCountARB"))
1010 return GL_FALSE;
1011
1012 return valid_draw_indirect_parameters(
1013 ctx, "glMultiDrawElementsIndirectCountARB", drawcount);
1014 }
1015
1016 static bool
1017 check_valid_to_compute(struct gl_context *ctx, const char *function)
1018 {
1019 struct gl_shader_program *prog;
1020
1021 if (!_mesa_has_compute_shaders(ctx)) {
1022 _mesa_error(ctx, GL_INVALID_OPERATION,
1023 "unsupported function (%s) called",
1024 function);
1025 return false;
1026 }
1027
1028 /* From the OpenGL 4.3 Core Specification, Chapter 19, Compute Shaders:
1029 *
1030 * "An INVALID_OPERATION error is generated if there is no active program
1031 * for the compute shader stage."
1032 */
1033 prog = ctx->_Shader->CurrentProgram[MESA_SHADER_COMPUTE];
1034 if (prog == NULL || prog->_LinkedShaders[MESA_SHADER_COMPUTE] == NULL) {
1035 _mesa_error(ctx, GL_INVALID_OPERATION,
1036 "%s(no active compute shader)",
1037 function);
1038 return false;
1039 }
1040
1041 return true;
1042 }
1043
1044 GLboolean
1045 _mesa_validate_DispatchCompute(struct gl_context *ctx,
1046 const GLuint *num_groups)
1047 {
1048 int i;
1049 FLUSH_CURRENT(ctx, 0);
1050
1051 if (!check_valid_to_compute(ctx, "glDispatchCompute"))
1052 return GL_FALSE;
1053
1054 for (i = 0; i < 3; i++) {
1055 /* From the OpenGL 4.3 Core Specification, Chapter 19, Compute Shaders:
1056 *
1057 * "An INVALID_VALUE error is generated if any of num_groups_x,
1058 * num_groups_y and num_groups_z are greater than or equal to the
1059 * maximum work group count for the corresponding dimension."
1060 *
1061 * However, the "or equal to" portions appears to be a specification
1062 * bug. In all other areas, the specification appears to indicate that
1063 * the number of workgroups can match the MAX_COMPUTE_WORK_GROUP_COUNT
1064 * value. For example, under DispatchComputeIndirect:
1065 *
1066 * "If any of num_groups_x, num_groups_y or num_groups_z is greater than
1067 * the value of MAX_COMPUTE_WORK_GROUP_COUNT for the corresponding
1068 * dimension then the results are undefined."
1069 *
1070 * Additionally, the OpenGLES 3.1 specification does not contain "or
1071 * equal to" as an error condition.
1072 */
1073 if (num_groups[i] > ctx->Const.MaxComputeWorkGroupCount[i]) {
1074 _mesa_error(ctx, GL_INVALID_VALUE,
1075 "glDispatchCompute(num_groups_%c)", 'x' + i);
1076 return GL_FALSE;
1077 }
1078 }
1079
1080 return GL_TRUE;
1081 }
1082
1083 static GLboolean
1084 valid_dispatch_indirect(struct gl_context *ctx,
1085 GLintptr indirect,
1086 GLsizei size, const char *name)
1087 {
1088 const uint64_t end = (uint64_t) indirect + size;
1089
1090 if (!check_valid_to_compute(ctx, name))
1091 return GL_FALSE;
1092
1093 /* From the OpenGL 4.3 Core Specification, Chapter 19, Compute Shaders:
1094 *
1095 * "An INVALID_VALUE error is generated if indirect is negative or is not a
1096 * multiple of four."
1097 */
1098 if (indirect & (sizeof(GLuint) - 1)) {
1099 _mesa_error(ctx, GL_INVALID_VALUE,
1100 "%s(indirect is not aligned)", name);
1101 return GL_FALSE;
1102 }
1103
1104 if (indirect < 0) {
1105 _mesa_error(ctx, GL_INVALID_VALUE,
1106 "%s(indirect is less than zero)", name);
1107 return GL_FALSE;
1108 }
1109
1110 /* From the OpenGL 4.3 Core Specification, Chapter 19, Compute Shaders:
1111 *
1112 * "An INVALID_OPERATION error is generated if no buffer is bound to the
1113 * DRAW_INDIRECT_BUFFER binding, or if the command would source data
1114 * beyond the end of the buffer object."
1115 */
1116 if (!_mesa_is_bufferobj(ctx->DispatchIndirectBuffer)) {
1117 _mesa_error(ctx, GL_INVALID_OPERATION,
1118 "%s: no buffer bound to DISPATCH_INDIRECT_BUFFER", name);
1119 return GL_FALSE;
1120 }
1121
1122 if (_mesa_check_disallowed_mapping(ctx->DispatchIndirectBuffer)) {
1123 _mesa_error(ctx, GL_INVALID_OPERATION,
1124 "%s(DISPATCH_INDIRECT_BUFFER is mapped)", name);
1125 return GL_FALSE;
1126 }
1127
1128 if (ctx->DispatchIndirectBuffer->Size < end) {
1129 _mesa_error(ctx, GL_INVALID_OPERATION,
1130 "%s(DISPATCH_INDIRECT_BUFFER too small)", name);
1131 return GL_FALSE;
1132 }
1133
1134 return GL_TRUE;
1135 }
1136
1137 GLboolean
1138 _mesa_validate_DispatchComputeIndirect(struct gl_context *ctx,
1139 GLintptr indirect)
1140 {
1141 FLUSH_CURRENT(ctx, 0);
1142
1143 return valid_dispatch_indirect(ctx, indirect, 3 * sizeof(GLuint),
1144 "glDispatchComputeIndirect");
1145 }