diff options
author | Samuel Pitoiset <[email protected]> | 2017-05-06 16:55:46 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-05-08 16:04:05 +0200 |
commit | 8a6ecde9c1601b77b6d1e637fbe55f6b75a4b21e (patch) | |
tree | 3229928fac4c6eff2cf48e06fac83e1cebe7b86b /src/compiler/glsl/builtin_variables.cpp | |
parent | 14187e1e9e12151e11ca167ce501c671c98d69c6 (diff) |
glsl: store the image format in glsl_struct_field
ARB_bindless_texture allows to declare image types inside
structures, which means we need to keep track of the format.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/compiler/glsl/builtin_variables.cpp')
-rw-r--r-- | src/compiler/glsl/builtin_variables.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/glsl/builtin_variables.cpp b/src/compiler/glsl/builtin_variables.cpp index a45c9d62c71..ce4dd43730c 100644 --- a/src/compiler/glsl/builtin_variables.cpp +++ b/src/compiler/glsl/builtin_variables.cpp @@ -341,6 +341,7 @@ per_vertex_accumulator::add_field(int slot, const glsl_type *type, this->fields[this->num_fields].memory_coherent = 0; this->fields[this->num_fields].memory_volatile = 0; this->fields[this->num_fields].memory_restrict = 0; + this->fields[this->num_fields].image_format = 0; this->fields[this->num_fields].explicit_xfb_buffer = 0; this->fields[this->num_fields].xfb_buffer = -1; this->fields[this->num_fields].xfb_stride = -1; |