mesa: Arrange validate_uniform_parameters parameters to match call sites
[mesa.git] / src / mesa / main / uniform_query.cpp
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 2004-2008 Brian Paul All Rights Reserved.
5 * Copyright (C) 2009-2010 VMware, Inc. All Rights Reserved.
6 * Copyright © 2010, 2011 Intel Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 * OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27 #include <stdlib.h>
28
29 #include "main/core.h"
30 #include "main/context.h"
31 #include "main/shaderapi.h"
32 #include "main/shaderobj.h"
33 #include "main/uniforms.h"
34 #include "compiler/glsl/ir.h"
35 #include "compiler/glsl/ir_uniform.h"
36 #include "compiler/glsl/glsl_parser_extras.h"
37 #include "compiler/glsl/program.h"
38 #include "util/bitscan.h"
39
40
41 extern "C" void GLAPIENTRY
42 _mesa_GetActiveUniform(GLuint program, GLuint index,
43 GLsizei maxLength, GLsizei *length, GLint *size,
44 GLenum *type, GLcharARB *nameOut)
45 {
46 GET_CURRENT_CONTEXT(ctx);
47 struct gl_shader_program *shProg;
48 struct gl_program_resource *res;
49
50 if (maxLength < 0) {
51 _mesa_error(ctx, GL_INVALID_VALUE, "glGetActiveUniform(maxLength < 0)");
52 return;
53 }
54
55 shProg = _mesa_lookup_shader_program_err(ctx, program, "glGetActiveUniform");
56 if (!shProg)
57 return;
58
59 res = _mesa_program_resource_find_index((struct gl_shader_program *) shProg,
60 GL_UNIFORM, index);
61
62 if (!res) {
63 _mesa_error(ctx, GL_INVALID_VALUE, "glGetActiveUniform(index)");
64 return;
65 }
66
67 if (nameOut)
68 _mesa_get_program_resource_name(shProg, GL_UNIFORM, index, maxLength,
69 length, nameOut, "glGetActiveUniform");
70 if (type)
71 _mesa_program_resource_prop((struct gl_shader_program *) shProg,
72 res, index, GL_TYPE, (GLint*) type,
73 "glGetActiveUniform");
74 if (size)
75 _mesa_program_resource_prop((struct gl_shader_program *) shProg,
76 res, index, GL_ARRAY_SIZE, (GLint*) size,
77 "glGetActiveUniform");
78 }
79
80 static GLenum
81 resource_prop_from_uniform_prop(GLenum uni_prop)
82 {
83 switch (uni_prop) {
84 case GL_UNIFORM_TYPE:
85 return GL_TYPE;
86 case GL_UNIFORM_SIZE:
87 return GL_ARRAY_SIZE;
88 case GL_UNIFORM_NAME_LENGTH:
89 return GL_NAME_LENGTH;
90 case GL_UNIFORM_BLOCK_INDEX:
91 return GL_BLOCK_INDEX;
92 case GL_UNIFORM_OFFSET:
93 return GL_OFFSET;
94 case GL_UNIFORM_ARRAY_STRIDE:
95 return GL_ARRAY_STRIDE;
96 case GL_UNIFORM_MATRIX_STRIDE:
97 return GL_MATRIX_STRIDE;
98 case GL_UNIFORM_IS_ROW_MAJOR:
99 return GL_IS_ROW_MAJOR;
100 case GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX:
101 return GL_ATOMIC_COUNTER_BUFFER_INDEX;
102 default:
103 return 0;
104 }
105 }
106
107 extern "C" void GLAPIENTRY
108 _mesa_GetActiveUniformsiv(GLuint program,
109 GLsizei uniformCount,
110 const GLuint *uniformIndices,
111 GLenum pname,
112 GLint *params)
113 {
114 GET_CURRENT_CONTEXT(ctx);
115 struct gl_shader_program *shProg;
116 struct gl_program_resource *res;
117 GLenum res_prop;
118
119 if (uniformCount < 0) {
120 _mesa_error(ctx, GL_INVALID_VALUE,
121 "glGetActiveUniformsiv(uniformCount < 0)");
122 return;
123 }
124
125 shProg = _mesa_lookup_shader_program_err(ctx, program, "glGetActiveUniform");
126 if (!shProg)
127 return;
128
129 res_prop = resource_prop_from_uniform_prop(pname);
130
131 /* We need to first verify that each entry exists as active uniform. If
132 * not, generate error and do not cause any other side effects.
133 *
134 * In the case of and error condition, Page 16 (section 2.3.1 Errors)
135 * of the OpenGL 4.5 spec says:
136 *
137 * "If the generating command modifies values through a pointer argu-
138 * ment, no change is made to these values."
139 */
140 for (int i = 0; i < uniformCount; i++) {
141 if (!_mesa_program_resource_find_index(shProg, GL_UNIFORM,
142 uniformIndices[i])) {
143 _mesa_error(ctx, GL_INVALID_VALUE, "glGetActiveUniformsiv(index)");
144 return;
145 }
146 }
147
148 for (int i = 0; i < uniformCount; i++) {
149 res = _mesa_program_resource_find_index(shProg, GL_UNIFORM,
150 uniformIndices[i]);
151 if (!_mesa_program_resource_prop(shProg, res, uniformIndices[i],
152 res_prop, &params[i],
153 "glGetActiveUniformsiv"))
154 break;
155 }
156 }
157
158 static struct gl_uniform_storage *
159 validate_uniform_parameters(GLint location, GLsizei count,
160 unsigned *array_index,
161 struct gl_context *ctx,
162 struct gl_shader_program *shProg,
163 const char *caller)
164 {
165 if (shProg == NULL) {
166 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(program not linked)", caller);
167 return NULL;
168 }
169
170 /* From page 12 (page 26 of the PDF) of the OpenGL 2.1 spec:
171 *
172 * "If a negative number is provided where an argument of type sizei or
173 * sizeiptr is specified, the error INVALID_VALUE is generated."
174 */
175 if (count < 0) {
176 _mesa_error(ctx, GL_INVALID_VALUE, "%s(count < 0)", caller);
177 return NULL;
178 }
179
180 /* Check that the given location is in bounds of uniform remap table.
181 * Unlinked programs will have NumUniformRemapTable == 0, so we can take
182 * the shProg->data->LinkStatus check out of the main path.
183 */
184 if (unlikely(location >= (GLint) shProg->NumUniformRemapTable)) {
185 if (!shProg->data->LinkStatus)
186 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(program not linked)",
187 caller);
188 else
189 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(location=%d)",
190 caller, location);
191
192 return NULL;
193 }
194
195 if (location == -1) {
196 if (!shProg->data->LinkStatus)
197 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(program not linked)",
198 caller);
199
200 return NULL;
201 }
202
203 /* Page 82 (page 96 of the PDF) of the OpenGL 2.1 spec says:
204 *
205 * "If any of the following conditions occur, an INVALID_OPERATION
206 * error is generated by the Uniform* commands, and no uniform values
207 * are changed:
208 *
209 * ...
210 *
211 * - if no variable with a location of location exists in the
212 * program object currently in use and location is not -1,
213 * - if count is greater than one, and the uniform declared in the
214 * shader is not an array variable,
215 */
216 if (location < -1 || !shProg->UniformRemapTable[location]) {
217 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(location=%d)",
218 caller, location);
219 return NULL;
220 }
221
222 /* If the driver storage pointer in remap table is -1, we ignore silently.
223 *
224 * GL_ARB_explicit_uniform_location spec says:
225 * "What happens if Uniform* is called with an explicitly defined
226 * uniform location, but that uniform is deemed inactive by the
227 * linker?
228 *
229 * RESOLVED: The call is ignored for inactive uniform variables and
230 * no error is generated."
231 *
232 */
233 if (shProg->UniformRemapTable[location] ==
234 INACTIVE_UNIFORM_EXPLICIT_LOCATION)
235 return NULL;
236
237 struct gl_uniform_storage *const uni = shProg->UniformRemapTable[location];
238
239 /* Even though no location is assigned to a built-in uniform and this
240 * function should already have returned NULL, this test makes it explicit
241 * that we are not allowing to update the value of a built-in.
242 */
243 if (uni->builtin)
244 return NULL;
245
246 if (uni->array_elements == 0) {
247 if (count > 1) {
248 _mesa_error(ctx, GL_INVALID_OPERATION,
249 "%s(count = %u for non-array \"%s\"@%d)",
250 caller, count, uni->name, location);
251 return NULL;
252 }
253
254 assert((location - uni->remap_location) == 0);
255 *array_index = 0;
256 } else {
257 /* The array index specified by the uniform location is just the uniform
258 * location minus the base location of of the uniform.
259 */
260 *array_index = location - uni->remap_location;
261
262 /* If the uniform is an array, check that array_index is in bounds.
263 * array_index is unsigned so no need to check for less than zero.
264 */
265 if (*array_index >= uni->array_elements) {
266 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(location=%d)",
267 caller, location);
268 return NULL;
269 }
270 }
271 return uni;
272 }
273
274 /**
275 * Called via glGetUniform[fiui]v() to get the current value of a uniform.
276 */
277 extern "C" void
278 _mesa_get_uniform(struct gl_context *ctx, GLuint program, GLint location,
279 GLsizei bufSize, enum glsl_base_type returnType,
280 GLvoid *paramsOut)
281 {
282 struct gl_shader_program *shProg =
283 _mesa_lookup_shader_program_err(ctx, program, "glGetUniformfv");
284 unsigned offset;
285
286 struct gl_uniform_storage *const uni =
287 validate_uniform_parameters(location, 1, &offset,
288 ctx, shProg, "glGetUniform");
289 if (uni == NULL) {
290 /* For glGetUniform, page 264 (page 278 of the PDF) of the OpenGL 2.1
291 * spec says:
292 *
293 * "The error INVALID_OPERATION is generated if program has not been
294 * linked successfully, or if location is not a valid location for
295 * program."
296 *
297 * For glUniform, page 82 (page 96 of the PDF) of the OpenGL 2.1 spec
298 * says:
299 *
300 * "If the value of location is -1, the Uniform* commands will
301 * silently ignore the data passed in, and the current uniform
302 * values will not be changed."
303 *
304 * Allowing -1 for the location parameter of glUniform allows
305 * applications to avoid error paths in the case that, for example, some
306 * uniform variable is removed by the compiler / linker after
307 * optimization. In this case, the new value of the uniform is dropped
308 * on the floor. For the case of glGetUniform, there is nothing
309 * sensible to do for a location of -1.
310 *
311 * If the location was -1, validate_unfirom_parameters will return NULL
312 * without raising an error. Raise the error here.
313 */
314 if (location == -1) {
315 _mesa_error(ctx, GL_INVALID_OPERATION, "glGetUniform(location=%d)",
316 location);
317 }
318
319 return;
320 }
321
322 {
323 unsigned elements = (uni->type->is_sampler())
324 ? 1 : uni->type->components();
325 const int dmul = uni->type->is_64bit() ? 2 : 1;
326 const int rmul = glsl_base_type_is_64bit(returnType) ? 2 : 1;
327
328 /* Calculate the source base address *BEFORE* modifying elements to
329 * account for the size of the user's buffer.
330 */
331 const union gl_constant_value *const src =
332 &uni->storage[offset * elements * dmul];
333
334 assert(returnType == GLSL_TYPE_FLOAT || returnType == GLSL_TYPE_INT ||
335 returnType == GLSL_TYPE_UINT || returnType == GLSL_TYPE_DOUBLE ||
336 returnType == GLSL_TYPE_UINT64 || returnType == GLSL_TYPE_INT64);
337
338 /* doubles have a different size than the other 3 types */
339 unsigned bytes = sizeof(src[0]) * elements * rmul;
340 if (bufSize < 0 || bytes > (unsigned) bufSize) {
341 _mesa_error( ctx, GL_INVALID_OPERATION,
342 "glGetnUniform*vARB(out of bounds: bufSize is %d,"
343 " but %u bytes are required)", bufSize, bytes );
344 return;
345 }
346
347 /* If the return type and the uniform's native type are "compatible,"
348 * just memcpy the data. If the types are not compatible, perform a
349 * slower convert-and-copy process.
350 */
351 if (returnType == uni->type->base_type
352 || ((returnType == GLSL_TYPE_INT
353 || returnType == GLSL_TYPE_UINT)
354 &&
355 (uni->type->base_type == GLSL_TYPE_INT
356 || uni->type->base_type == GLSL_TYPE_UINT
357 || uni->type->base_type == GLSL_TYPE_SAMPLER
358 || uni->type->base_type == GLSL_TYPE_IMAGE))
359 || ((returnType == GLSL_TYPE_UINT64 ||
360 returnType == GLSL_TYPE_INT64 ) &&
361 (uni->type->base_type == GLSL_TYPE_UINT64 ||
362 uni->type->base_type == GLSL_TYPE_INT64))) {
363 memcpy(paramsOut, src, bytes);
364 } else {
365 union gl_constant_value *const dst =
366 (union gl_constant_value *) paramsOut;
367 /* This code could be optimized by putting the loop inside the switch
368 * statements. However, this is not expected to be
369 * performance-critical code.
370 */
371 for (unsigned i = 0; i < elements; i++) {
372 int sidx = i * dmul;
373 int didx = i * rmul;
374
375 switch (returnType) {
376 case GLSL_TYPE_FLOAT:
377 switch (uni->type->base_type) {
378 case GLSL_TYPE_UINT:
379 dst[didx].f = (float) src[sidx].u;
380 break;
381 case GLSL_TYPE_INT:
382 case GLSL_TYPE_SAMPLER:
383 case GLSL_TYPE_IMAGE:
384 dst[didx].f = (float) src[sidx].i;
385 break;
386 case GLSL_TYPE_BOOL:
387 dst[didx].f = src[sidx].i ? 1.0f : 0.0f;
388 break;
389 case GLSL_TYPE_DOUBLE: {
390 double tmp;
391 memcpy(&tmp, &src[sidx].f, sizeof(tmp));
392 dst[didx].f = tmp;
393 break;
394 }
395 case GLSL_TYPE_UINT64: {
396 uint64_t tmp;
397 memcpy(&tmp, &src[sidx].u, sizeof(tmp));
398 dst[didx].f = tmp;
399 break;
400 }
401 case GLSL_TYPE_INT64: {
402 uint64_t tmp;
403 memcpy(&tmp, &src[sidx].i, sizeof(tmp));
404 dst[didx].f = tmp;
405 break;
406 }
407 default:
408 assert(!"Should not get here.");
409 break;
410 }
411 break;
412 case GLSL_TYPE_DOUBLE:
413 switch (uni->type->base_type) {
414 case GLSL_TYPE_UINT: {
415 double tmp = src[sidx].u;
416 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
417 break;
418 }
419 case GLSL_TYPE_INT:
420 case GLSL_TYPE_SAMPLER:
421 case GLSL_TYPE_IMAGE: {
422 double tmp = src[sidx].i;
423 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
424 break;
425 }
426 case GLSL_TYPE_BOOL: {
427 double tmp = src[sidx].i ? 1.0 : 0.0;
428 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
429 break;
430 }
431 case GLSL_TYPE_FLOAT: {
432 double tmp = src[sidx].f;
433 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
434 break;
435 }
436 case GLSL_TYPE_UINT64: {
437 uint64_t tmpu;
438 double tmp;
439 memcpy(&tmpu, &src[sidx].u, sizeof(tmpu));
440 tmp = tmpu;
441 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
442 break;
443 }
444 case GLSL_TYPE_INT64: {
445 int64_t tmpi;
446 double tmp;
447 memcpy(&tmpi, &src[sidx].i, sizeof(tmpi));
448 tmp = tmpi;
449 memcpy(&dst[didx].f, &tmp, sizeof(tmp));
450 break;
451 }
452 default:
453 assert(!"Should not get here.");
454 break;
455 }
456 break;
457 case GLSL_TYPE_INT:
458 case GLSL_TYPE_UINT:
459 switch (uni->type->base_type) {
460 case GLSL_TYPE_FLOAT:
461 /* While the GL 3.2 core spec doesn't explicitly
462 * state how conversion of float uniforms to integer
463 * values works, in section 6.2 "State Tables" on
464 * page 267 it says:
465 *
466 * "Unless otherwise specified, when floating
467 * point state is returned as integer values or
468 * integer state is returned as floating-point
469 * values it is converted in the fashion
470 * described in section 6.1.2"
471 *
472 * That section, on page 248, says:
473 *
474 * "If GetIntegerv or GetInteger64v are called,
475 * a floating-point value is rounded to the
476 * nearest integer..."
477 */
478 dst[didx].i = IROUND(src[sidx].f);
479 break;
480 case GLSL_TYPE_BOOL:
481 dst[didx].i = src[sidx].i ? 1 : 0;
482 break;
483 case GLSL_TYPE_DOUBLE: {
484 double tmp;
485 memcpy(&tmp, &src[sidx].f, sizeof(tmp));
486 dst[didx].i = IROUNDD(tmp);
487 break;
488 }
489 case GLSL_TYPE_UINT64: {
490 uint64_t tmp;
491 memcpy(&tmp, &src[sidx].u, sizeof(tmp));
492 dst[didx].i = tmp;
493 break;
494 }
495 case GLSL_TYPE_INT64: {
496 int64_t tmp;
497 memcpy(&tmp, &src[sidx].i, sizeof(tmp));
498 dst[didx].i = tmp;
499 break;
500 }
501 default:
502 assert(!"Should not get here.");
503 break;
504 }
505 break;
506 case GLSL_TYPE_INT64:
507 case GLSL_TYPE_UINT64:
508 switch (uni->type->base_type) {
509 case GLSL_TYPE_UINT:
510 *(int64_t *)&dst[didx].u = (int64_t) src[sidx].u;
511 break;
512 case GLSL_TYPE_INT:
513 case GLSL_TYPE_SAMPLER:
514 case GLSL_TYPE_IMAGE:
515 *(int64_t *)&dst[didx].u = (int64_t) src[sidx].i;
516 break;
517 case GLSL_TYPE_BOOL:
518 *(int64_t *)&dst[didx].u = src[sidx].i ? 1.0f : 0.0f;
519 break;
520 case GLSL_TYPE_FLOAT:
521 *(int64_t *)&dst[didx].u = (int64_t) src[sidx].f;
522 break;
523 default:
524 assert(!"Should not get here.");
525 break;
526 }
527 break;
528 default:
529 assert(!"Should not get here.");
530 break;
531 }
532 }
533 }
534 }
535 }
536
537 static void
538 log_uniform(const void *values, enum glsl_base_type basicType,
539 unsigned rows, unsigned cols, unsigned count,
540 bool transpose,
541 const struct gl_shader_program *shProg,
542 GLint location,
543 const struct gl_uniform_storage *uni)
544 {
545
546 const union gl_constant_value *v = (const union gl_constant_value *) values;
547 const unsigned elems = rows * cols * count;
548 const char *const extra = (cols == 1) ? "uniform" : "uniform matrix";
549
550 printf("Mesa: set program %u %s \"%s\" (loc %d, type \"%s\", "
551 "transpose = %s) to: ",
552 shProg->Name, extra, uni->name, location, uni->type->name,
553 transpose ? "true" : "false");
554 for (unsigned i = 0; i < elems; i++) {
555 if (i != 0 && ((i % rows) == 0))
556 printf(", ");
557
558 switch (basicType) {
559 case GLSL_TYPE_UINT:
560 printf("%u ", v[i].u);
561 break;
562 case GLSL_TYPE_INT:
563 printf("%d ", v[i].i);
564 break;
565 case GLSL_TYPE_UINT64:
566 printf("%lu ", *(uint64_t* )&v[i * 2].u);
567 break;
568 case GLSL_TYPE_INT64:
569 printf("%ld ", *(int64_t* )&v[i * 2].u);
570 break;
571 case GLSL_TYPE_FLOAT:
572 printf("%g ", v[i].f);
573 break;
574 case GLSL_TYPE_DOUBLE: {
575 double tmp;
576 memcpy(&tmp, &v[i * 2].f, sizeof(tmp));
577 printf("%g ", tmp);
578 break;
579 }
580 default:
581 assert(!"Should not get here.");
582 break;
583 }
584 }
585 printf("\n");
586 fflush(stdout);
587 }
588
589 #if 0
590 static void
591 log_program_parameters(const struct gl_shader_program *shProg)
592 {
593 for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
594 if (shProg->_LinkedShaders[i] == NULL)
595 continue;
596
597 const struct gl_program *const prog = shProg->_LinkedShaders[i]->Program;
598
599 printf("Program %d %s shader parameters:\n",
600 shProg->Name, _mesa_shader_stage_to_string(i));
601 for (unsigned j = 0; j < prog->Parameters->NumParameters; j++) {
602 printf("%s: %p %f %f %f %f\n",
603 prog->Parameters->Parameters[j].Name,
604 prog->Parameters->ParameterValues[j],
605 prog->Parameters->ParameterValues[j][0].f,
606 prog->Parameters->ParameterValues[j][1].f,
607 prog->Parameters->ParameterValues[j][2].f,
608 prog->Parameters->ParameterValues[j][3].f);
609 }
610 }
611 fflush(stdout);
612 }
613 #endif
614
615 /**
616 * Propagate some values from uniform backing storage to driver storage
617 *
618 * Values propagated from uniform backing storage to driver storage
619 * have all format / type conversions previously requested by the
620 * driver applied. This function is most often called by the
621 * implementations of \c glUniform1f, etc. and \c glUniformMatrix2f,
622 * etc.
623 *
624 * \param uni Uniform whose data is to be propagated to driver storage
625 * \param array_index If \c uni is an array, this is the element of
626 * the array to be propagated.
627 * \param count Number of array elements to propagate.
628 */
629 extern "C" void
630 _mesa_propagate_uniforms_to_driver_storage(struct gl_uniform_storage *uni,
631 unsigned array_index,
632 unsigned count)
633 {
634 unsigned i;
635
636 /* vector_elements and matrix_columns can be 0 for samplers.
637 */
638 const unsigned components = MAX2(1, uni->type->vector_elements);
639 const unsigned vectors = MAX2(1, uni->type->matrix_columns);
640 const int dmul = uni->type->is_64bit() ? 2 : 1;
641
642 /* Store the data in the driver's requested type in the driver's storage
643 * areas.
644 */
645 unsigned src_vector_byte_stride = components * 4 * dmul;
646
647 for (i = 0; i < uni->num_driver_storage; i++) {
648 struct gl_uniform_driver_storage *const store = &uni->driver_storage[i];
649 uint8_t *dst = (uint8_t *) store->data;
650 const unsigned extra_stride =
651 store->element_stride - (vectors * store->vector_stride);
652 const uint8_t *src =
653 (uint8_t *) (&uni->storage[array_index * (dmul * components * vectors)].i);
654
655 #if 0
656 printf("%s: %p[%d] components=%u vectors=%u count=%u vector_stride=%u "
657 "extra_stride=%u\n",
658 __func__, dst, array_index, components,
659 vectors, count, store->vector_stride, extra_stride);
660 #endif
661
662 dst += array_index * store->element_stride;
663
664 switch (store->format) {
665 case uniform_native: {
666 unsigned j;
667 unsigned v;
668
669 if (src_vector_byte_stride == store->vector_stride) {
670 if (extra_stride) {
671 for (j = 0; j < count; j++) {
672 memcpy(dst, src, src_vector_byte_stride * vectors);
673 src += src_vector_byte_stride * vectors;
674 dst += store->vector_stride * vectors;
675
676 dst += extra_stride;
677 }
678 } else {
679 /* Unigine Heaven benchmark gets here */
680 memcpy(dst, src, src_vector_byte_stride * vectors * count);
681 src += src_vector_byte_stride * vectors * count;
682 dst += store->vector_stride * vectors * count;
683 }
684 } else {
685 for (j = 0; j < count; j++) {
686 for (v = 0; v < vectors; v++) {
687 memcpy(dst, src, src_vector_byte_stride);
688 src += src_vector_byte_stride;
689 dst += store->vector_stride;
690 }
691
692 dst += extra_stride;
693 }
694 }
695 break;
696 }
697
698 case uniform_int_float: {
699 const int *isrc = (const int *) src;
700 unsigned j;
701 unsigned v;
702 unsigned c;
703
704 for (j = 0; j < count; j++) {
705 for (v = 0; v < vectors; v++) {
706 for (c = 0; c < components; c++) {
707 ((float *) dst)[c] = (float) *isrc;
708 isrc++;
709 }
710
711 dst += store->vector_stride;
712 }
713
714 dst += extra_stride;
715 }
716 break;
717 }
718
719 default:
720 assert(!"Should not get here.");
721 break;
722 }
723 }
724 }
725
726
727 /**
728 * Return printable string for a given GLSL_TYPE_x
729 */
730 static const char *
731 glsl_type_name(enum glsl_base_type type)
732 {
733 switch (type) {
734 case GLSL_TYPE_UINT:
735 return "uint";
736 case GLSL_TYPE_INT:
737 return "int";
738 case GLSL_TYPE_FLOAT:
739 return "float";
740 case GLSL_TYPE_DOUBLE:
741 return "double";
742 case GLSL_TYPE_UINT64:
743 return "uint64";
744 case GLSL_TYPE_INT64:
745 return "int64";
746 case GLSL_TYPE_BOOL:
747 return "bool";
748 case GLSL_TYPE_SAMPLER:
749 return "sampler";
750 case GLSL_TYPE_IMAGE:
751 return "image";
752 case GLSL_TYPE_ATOMIC_UINT:
753 return "atomic_uint";
754 case GLSL_TYPE_STRUCT:
755 return "struct";
756 case GLSL_TYPE_INTERFACE:
757 return "interface";
758 case GLSL_TYPE_ARRAY:
759 return "array";
760 case GLSL_TYPE_VOID:
761 return "void";
762 case GLSL_TYPE_ERROR:
763 return "error";
764 default:
765 return "other";
766 }
767 }
768
769
770 /**
771 * Called via glUniform*() functions.
772 */
773 extern "C" void
774 _mesa_uniform(GLint location, GLsizei count, const GLvoid *values,
775 struct gl_context *ctx, struct gl_shader_program *shProg,
776 enum glsl_base_type basicType, unsigned src_components)
777 {
778 unsigned offset;
779 int size_mul = glsl_base_type_is_64bit(basicType) ? 2 : 1;
780
781 struct gl_uniform_storage *const uni =
782 validate_uniform_parameters(location, count, &offset,
783 ctx, shProg, "glUniform");
784 if (uni == NULL)
785 return;
786
787 if (uni->type->is_matrix()) {
788 /* Can't set matrix uniforms (like mat4) with glUniform */
789 _mesa_error(ctx, GL_INVALID_OPERATION,
790 "glUniform%u(uniform \"%s\"@%d is matrix)",
791 src_components, uni->name, location);
792 return;
793 }
794
795 /* Verify that the types are compatible.
796 */
797 const unsigned components = uni->type->is_sampler()
798 ? 1 : uni->type->vector_elements;
799
800 if (components != src_components) {
801 /* glUniformN() must match float/vecN type */
802 _mesa_error(ctx, GL_INVALID_OPERATION,
803 "glUniform%u(\"%s\"@%u has %u components, not %u)",
804 src_components, uni->name, location,
805 components, src_components);
806 return;
807 }
808
809 bool match;
810 switch (uni->type->base_type) {
811 case GLSL_TYPE_BOOL:
812 match = (basicType != GLSL_TYPE_DOUBLE);
813 break;
814 case GLSL_TYPE_SAMPLER:
815 match = (basicType == GLSL_TYPE_INT);
816 break;
817 case GLSL_TYPE_IMAGE:
818 match = (basicType == GLSL_TYPE_INT && _mesa_is_desktop_gl(ctx));
819 break;
820 default:
821 match = (basicType == uni->type->base_type);
822 break;
823 }
824
825 if (!match) {
826 _mesa_error(ctx, GL_INVALID_OPERATION,
827 "glUniform%u(\"%s\"@%d is %s, not %s)",
828 src_components, uni->name, location,
829 glsl_type_name(uni->type->base_type),
830 glsl_type_name(basicType));
831 return;
832 }
833
834 if (unlikely(ctx->_Shader->Flags & GLSL_UNIFORMS)) {
835 log_uniform(values, basicType, components, 1, count,
836 false, shProg, location, uni);
837 }
838
839 /* Page 100 (page 116 of the PDF) of the OpenGL 3.0 spec says:
840 *
841 * "Setting a sampler's value to i selects texture image unit number
842 * i. The values of i range from zero to the implementation- dependent
843 * maximum supported number of texture image units."
844 *
845 * In addition, table 2.3, "Summary of GL errors," on page 17 (page 33 of
846 * the PDF) says:
847 *
848 * "Error Description Offending command
849 * ignored?
850 * ...
851 * INVALID_VALUE Numeric argument out of range Yes"
852 *
853 * Based on that, when an invalid sampler is specified, we generate a
854 * GL_INVALID_VALUE error and ignore the command.
855 */
856 if (uni->type->is_sampler()) {
857 for (int i = 0; i < count; i++) {
858 const unsigned texUnit = ((unsigned *) values)[i];
859
860 /* check that the sampler (tex unit index) is legal */
861 if (texUnit >= ctx->Const.MaxCombinedTextureImageUnits) {
862 _mesa_error(ctx, GL_INVALID_VALUE,
863 "glUniform1i(invalid sampler/tex unit index for "
864 "uniform %d)",
865 location);
866 return;
867 }
868 }
869 /* We need to reset the validate flag on changes to samplers in case
870 * two different sampler types are set to the same texture unit.
871 */
872 ctx->_Shader->Validated = GL_FALSE;
873 }
874
875 if (uni->type->is_image()) {
876 for (int i = 0; i < count; i++) {
877 const int unit = ((GLint *) values)[i];
878
879 /* check that the image unit is legal */
880 if (unit < 0 || unit >= (int)ctx->Const.MaxImageUnits) {
881 _mesa_error(ctx, GL_INVALID_VALUE,
882 "glUniform1i(invalid image unit index for uniform %d)",
883 location);
884 return;
885 }
886 }
887 }
888
889 /* Page 82 (page 96 of the PDF) of the OpenGL 2.1 spec says:
890 *
891 * "When loading N elements starting at an arbitrary position k in a
892 * uniform declared as an array, elements k through k + N - 1 in the
893 * array will be replaced with the new values. Values for any array
894 * element that exceeds the highest array element index used, as
895 * reported by GetActiveUniform, will be ignored by the GL."
896 *
897 * Clamp 'count' to a valid value. Note that for non-arrays a count > 1
898 * will have already generated an error.
899 */
900 if (uni->array_elements != 0) {
901 count = MIN2(count, (int) (uni->array_elements - offset));
902 }
903
904 FLUSH_VERTICES(ctx, _NEW_PROGRAM_CONSTANTS);
905
906 /* Store the data in the "actual type" backing storage for the uniform.
907 */
908 if (!uni->type->is_boolean()) {
909 memcpy(&uni->storage[size_mul * components * offset], values,
910 sizeof(uni->storage[0]) * components * count * size_mul);
911 } else {
912 const union gl_constant_value *src =
913 (const union gl_constant_value *) values;
914 union gl_constant_value *dst = &uni->storage[components * offset];
915 const unsigned elems = components * count;
916
917 for (unsigned i = 0; i < elems; i++) {
918 if (basicType == GLSL_TYPE_FLOAT) {
919 dst[i].i = src[i].f != 0.0f ? ctx->Const.UniformBooleanTrue : 0;
920 } else {
921 dst[i].i = src[i].i != 0 ? ctx->Const.UniformBooleanTrue : 0;
922 }
923 }
924 }
925
926 _mesa_propagate_uniforms_to_driver_storage(uni, offset, count);
927
928 /* If the uniform is a sampler, do the extra magic necessary to propagate
929 * the changes through.
930 */
931 if (uni->type->is_sampler()) {
932 bool flushed = false;
933 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
934 struct gl_linked_shader *const sh = shProg->_LinkedShaders[i];
935
936 /* If the shader stage doesn't use the sampler uniform, skip this. */
937 if (!uni->opaque[i].active)
938 continue;
939
940 bool changed = false;
941 for (int j = 0; j < count; j++) {
942 unsigned unit = uni->opaque[i].index + offset + j;
943 if (sh->Program->SamplerUnits[unit] != ((unsigned *) values)[j]) {
944 sh->Program->SamplerUnits[unit] = ((unsigned *) values)[j];
945 changed = true;
946 }
947 }
948
949 if (changed) {
950 if (!flushed) {
951 FLUSH_VERTICES(ctx, _NEW_TEXTURE | _NEW_PROGRAM);
952 flushed = true;
953 }
954
955 struct gl_program *const prog = sh->Program;
956 _mesa_update_shader_textures_used(shProg, prog);
957 if (ctx->Driver.SamplerUniformChange)
958 ctx->Driver.SamplerUniformChange(ctx, prog->Target, prog);
959 }
960 }
961 }
962
963 /* If the uniform is an image, update the mapping from image
964 * uniforms to image units present in the shader data structure.
965 */
966 if (uni->type->is_image()) {
967 for (int i = 0; i < MESA_SHADER_STAGES; i++) {
968 if (uni->opaque[i].active) {
969 struct gl_linked_shader *sh = shProg->_LinkedShaders[i];
970
971 for (int j = 0; j < count; j++)
972 sh->Program->sh.ImageUnits[uni->opaque[i].index + offset + j] =
973 ((GLint *) values)[j];
974 }
975 }
976
977 ctx->NewDriverState |= ctx->DriverFlags.NewImageUnits;
978 }
979 }
980
981 /**
982 * Called by glUniformMatrix*() functions.
983 * Note: cols=2, rows=4 ==> array[2] of vec4
984 */
985 extern "C" void
986 _mesa_uniform_matrix(GLint location, GLsizei count,
987 GLboolean transpose, const void *values,
988 struct gl_context *ctx, struct gl_shader_program *shProg,
989 GLuint cols, GLuint rows, enum glsl_base_type basicType)
990 {
991 unsigned offset;
992 struct gl_uniform_storage *const uni =
993 validate_uniform_parameters(location, count, &offset,
994 ctx, shProg, "glUniformMatrix");
995 if (uni == NULL)
996 return;
997
998 if (!uni->type->is_matrix()) {
999 _mesa_error(ctx, GL_INVALID_OPERATION,
1000 "glUniformMatrix(non-matrix uniform)");
1001 return;
1002 }
1003
1004 assert(basicType == GLSL_TYPE_FLOAT || basicType == GLSL_TYPE_DOUBLE);
1005 const unsigned size_mul = basicType == GLSL_TYPE_DOUBLE ? 2 : 1;
1006
1007 assert(!uni->type->is_sampler());
1008 const unsigned vectors = uni->type->matrix_columns;
1009 const unsigned components = uni->type->vector_elements;
1010
1011 /* Verify that the types are compatible. This is greatly simplified for
1012 * matrices because they can only have a float base type.
1013 */
1014 if (vectors != cols || components != rows) {
1015 _mesa_error(ctx, GL_INVALID_OPERATION,
1016 "glUniformMatrix(matrix size mismatch)");
1017 return;
1018 }
1019
1020 /* GL_INVALID_VALUE is generated if `transpose' is not GL_FALSE.
1021 * http://www.khronos.org/opengles/sdk/docs/man/xhtml/glUniform.xml
1022 */
1023 if (transpose) {
1024 if (ctx->API == API_OPENGLES2 && ctx->Version < 30) {
1025 _mesa_error(ctx, GL_INVALID_VALUE,
1026 "glUniformMatrix(matrix transpose is not GL_FALSE)");
1027 return;
1028 }
1029 }
1030
1031 /* Section 2.11.7 (Uniform Variables) of the OpenGL 4.2 Core Profile spec
1032 * says:
1033 *
1034 * "If any of the following conditions occur, an INVALID_OPERATION
1035 * error is generated by the Uniform* commands, and no uniform values
1036 * are changed:
1037 *
1038 * ...
1039 *
1040 * - if the uniform declared in the shader is not of type boolean and
1041 * the type indicated in the name of the Uniform* command used does
1042 * not match the type of the uniform"
1043 *
1044 * There are no Boolean matrix types, so we do not need to allow
1045 * GLSL_TYPE_BOOL here (as _mesa_uniform does).
1046 */
1047 if (uni->type->base_type != basicType) {
1048 _mesa_error(ctx, GL_INVALID_OPERATION,
1049 "glUniformMatrix%ux%u(\"%s\"@%d is %s, not %s)",
1050 cols, rows, uni->name, location,
1051 glsl_type_name(uni->type->base_type),
1052 glsl_type_name(basicType));
1053 return;
1054 }
1055
1056 if (unlikely(ctx->_Shader->Flags & GLSL_UNIFORMS)) {
1057 log_uniform(values, uni->type->base_type, components, vectors, count,
1058 bool(transpose), shProg, location, uni);
1059 }
1060
1061 /* Page 82 (page 96 of the PDF) of the OpenGL 2.1 spec says:
1062 *
1063 * "When loading N elements starting at an arbitrary position k in a
1064 * uniform declared as an array, elements k through k + N - 1 in the
1065 * array will be replaced with the new values. Values for any array
1066 * element that exceeds the highest array element index used, as
1067 * reported by GetActiveUniform, will be ignored by the GL."
1068 *
1069 * Clamp 'count' to a valid value. Note that for non-arrays a count > 1
1070 * will have already generated an error.
1071 */
1072 if (uni->array_elements != 0) {
1073 count = MIN2(count, (int) (uni->array_elements - offset));
1074 }
1075
1076 FLUSH_VERTICES(ctx, _NEW_PROGRAM_CONSTANTS);
1077
1078 /* Store the data in the "actual type" backing storage for the uniform.
1079 */
1080 const unsigned elements = components * vectors;
1081
1082 if (!transpose) {
1083 memcpy(&uni->storage[size_mul * elements * offset], values,
1084 sizeof(uni->storage[0]) * elements * count * size_mul);
1085 } else if (basicType == GLSL_TYPE_FLOAT) {
1086 /* Copy and transpose the matrix.
1087 */
1088 const float *src = (const float *)values;
1089 float *dst = &uni->storage[elements * offset].f;
1090
1091 for (int i = 0; i < count; i++) {
1092 for (unsigned r = 0; r < rows; r++) {
1093 for (unsigned c = 0; c < cols; c++) {
1094 dst[(c * components) + r] = src[c + (r * vectors)];
1095 }
1096 }
1097
1098 dst += elements;
1099 src += elements;
1100 }
1101 } else {
1102 assert(basicType == GLSL_TYPE_DOUBLE);
1103 const double *src = (const double *)values;
1104 double *dst = (double *)&uni->storage[elements * offset].f;
1105
1106 for (int i = 0; i < count; i++) {
1107 for (unsigned r = 0; r < rows; r++) {
1108 for (unsigned c = 0; c < cols; c++) {
1109 dst[(c * components) + r] = src[c + (r * vectors)];
1110 }
1111 }
1112
1113 dst += elements;
1114 src += elements;
1115 }
1116 }
1117
1118 _mesa_propagate_uniforms_to_driver_storage(uni, offset, count);
1119 }
1120
1121
1122 extern "C" bool
1123 _mesa_sampler_uniforms_are_valid(const struct gl_shader_program *shProg,
1124 char *errMsg, size_t errMsgLength)
1125 {
1126 /* Shader does not have samplers. */
1127 if (shProg->data->NumUniformStorage == 0)
1128 return true;
1129
1130 if (!shProg->SamplersValidated) {
1131 _mesa_snprintf(errMsg, errMsgLength,
1132 "active samplers with a different type "
1133 "refer to the same texture image unit");
1134 return false;
1135 }
1136 return true;
1137 }
1138
1139 extern "C" bool
1140 _mesa_sampler_uniforms_pipeline_are_valid(struct gl_pipeline_object *pipeline)
1141 {
1142 /* Section 2.11.11 (Shader Execution), subheading "Validation," of the
1143 * OpenGL 4.1 spec says:
1144 *
1145 * "[INVALID_OPERATION] is generated by any command that transfers
1146 * vertices to the GL if:
1147 *
1148 * ...
1149 *
1150 * - Any two active samplers in the current program object are of
1151 * different types, but refer to the same texture image unit.
1152 *
1153 * - The number of active samplers in the program exceeds the
1154 * maximum number of texture image units allowed."
1155 */
1156
1157 GLbitfield mask;
1158 GLbitfield TexturesUsed[MAX_COMBINED_TEXTURE_IMAGE_UNITS];
1159 unsigned active_samplers = 0;
1160 const struct gl_program **prog =
1161 (const struct gl_program **) pipeline->CurrentProgram;
1162
1163
1164 memset(TexturesUsed, 0, sizeof(TexturesUsed));
1165
1166 for (unsigned idx = 0; idx < ARRAY_SIZE(pipeline->CurrentProgram); idx++) {
1167 if (!prog[idx])
1168 continue;
1169
1170 mask = prog[idx]->SamplersUsed;
1171 while (mask) {
1172 const int s = u_bit_scan(&mask);
1173 GLuint unit = prog[idx]->SamplerUnits[s];
1174 GLuint tgt = prog[idx]->sh.SamplerTargets[s];
1175
1176 /* FIXME: Samplers are initialized to 0 and Mesa doesn't do a
1177 * great job of eliminating unused uniforms currently so for now
1178 * don't throw an error if two sampler types both point to 0.
1179 */
1180 if (unit == 0)
1181 continue;
1182
1183 if (TexturesUsed[unit] & ~(1 << tgt)) {
1184 pipeline->InfoLog =
1185 ralloc_asprintf(pipeline,
1186 "Program %d: "
1187 "Texture unit %d is accessed with 2 different types",
1188 prog[idx]->Id, unit);
1189 return false;
1190 }
1191
1192 TexturesUsed[unit] |= (1 << tgt);
1193 }
1194
1195 active_samplers += prog[idx]->info.num_textures;
1196 }
1197
1198 if (active_samplers > MAX_COMBINED_TEXTURE_IMAGE_UNITS) {
1199 pipeline->InfoLog =
1200 ralloc_asprintf(pipeline,
1201 "the number of active samplers %d exceed the "
1202 "maximum %d",
1203 active_samplers, MAX_COMBINED_TEXTURE_IMAGE_UNITS);
1204 return false;
1205 }
1206
1207 return true;
1208 }