glsl: Introduce a new "const_in" variable mode.
This annotation is for an "in" function parameter for which it is only legal to pass constant expressions. The only known example of this, currently, is the textureOffset functions. This should never be used for globals.
This commit is contained in:
@@ -122,7 +122,7 @@ ir_constant_folding_visitor::visit_enter(ir_call *ir)
|
||||
ir_rvalue *param_rval = (ir_rvalue *)iter.get();
|
||||
ir_variable *sig_param = (ir_variable *)sig_iter.get();
|
||||
|
||||
if (sig_param->mode == ir_var_in) {
|
||||
if (sig_param->mode == ir_var_in || sig_param->mode == ir_var_const_in) {
|
||||
ir_rvalue *new_param = param_rval;
|
||||
|
||||
handle_rvalue(&new_param);
|
||||
|
Reference in New Issue
Block a user