diff options
-rw-r--r-- | ir.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -240,6 +240,9 @@ ir_variable::ir_variable(const struct glsl_type *type, const char *name) { this->type = type; this->name = name; + + if (type && type->base_type == GLSL_TYPE_SAMPLER) + this->read_only = true; } |