[Mesa-dev] [PATCH 17/18] glsl: Don't resize arrays in uniform blocks.
Eric Anholt
eric at anholt.net
Mon Jul 2 17:38:26 PDT 2012
This is a requirement for std140 uniform blocks, and optional for
packed/shared blocks.
---
src/glsl/linker.cpp | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/glsl/linker.cpp b/src/glsl/linker.cpp
index 7adee32..4267602 100644
--- a/src/glsl/linker.cpp
+++ b/src/glsl/linker.cpp
@@ -1165,6 +1165,13 @@ update_array_sizes(struct gl_shader_program *prog)
!var->type->is_array())
continue;
+ /* GL_ARB_uniform_buffer_object says that std140 uniforms
+ * will not be eliminated. Since we always do std140, just
+ * don't resize arrays in UBOs.
+ */
+ if (var->uniform_block != -1)
+ continue;
+
unsigned int size = var->max_array_access;
for (unsigned j = 0; j < MESA_SHADER_TYPES; j++) {
if (prog->_LinkedShaders[j] == NULL)
--
1.7.10
More information about the mesa-dev
mailing list