diff options
author | Samuel Iglesias Gonsálvez <[email protected]> | 2015-11-16 11:59:18 +0100 |
---|---|---|
committer | Samuel Iglesias Gonsálvez <[email protected]> | 2015-11-17 10:36:42 +0100 |
commit | 91eefe850531adf7e1ed527e4b5bcb4a1f8c5d63 (patch) | |
tree | c322a7fce2f9c955bd74c0b2c95e1d21d43a5e58 /src/glsl/ir.cpp | |
parent | 58954e4daa5e874771e1a33320a4009249f2429a (diff) |
glsl: initialize data.precision value in ir_variable constructor
Signed-off-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/glsl/ir.cpp')
-rw-r--r-- | src/glsl/ir.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ir.cpp b/src/glsl/ir.cpp index 8933b230177..8b5ba71fbba 100644 --- a/src/glsl/ir.cpp +++ b/src/glsl/ir.cpp @@ -1676,6 +1676,7 @@ ir_variable::ir_variable(const struct glsl_type *type, const char *name, this->data.interpolation = INTERP_QUALIFIER_NONE; this->data.max_array_access = 0; this->data.atomic.offset = 0; + this->data.precision = GLSL_PRECISION_NONE; this->data.image_read_only = false; this->data.image_write_only = false; this->data.image_coherent = false; |