From: Ian Romanick Date: Fri, 11 Jun 2010 19:30:28 +0000 (-0700) Subject: ir_constant_visitor: Handle constant swizzles X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c2ba6190921be014fecaca0a5627ecc72fa7b2a1;p=mesa.git ir_constant_visitor: Handle constant swizzles --- diff --git a/ir_constant_expression.cpp b/ir_constant_expression.cpp index a7c4fe6382e..781166a8a26 100644 --- a/ir_constant_expression.cpp +++ b/ir_constant_expression.cpp @@ -538,8 +538,33 @@ ir_constant_visitor::visit(ir_texture *ir) void ir_constant_visitor::visit(ir_swizzle *ir) { - (void) ir; - value = NULL; + ir_constant *v = ir->val->constant_expression_value(); + + this->value = NULL; + + if (v != NULL) { + union { + float f[4]; + unsigned u[4]; + bool b[4]; + } data; + + const unsigned swiz_idx[4] = { + ir->mask.x, ir->mask.y, ir->mask.z, ir->mask.w + }; + + for (unsigned i = 0; i < ir->mask.num_components; i++) { + switch (v->type->base_type) { + case GLSL_TYPE_UINT: + case GLSL_TYPE_INT: data.u[i] = v->value.u[swiz_idx[i]]; break; + case GLSL_TYPE_FLOAT: data.f[i] = v->value.f[swiz_idx[i]]; break; + case GLSL_TYPE_BOOL: data.b[i] = v->value.b[swiz_idx[i]]; break; + default: assert(!"Should not get here."); break; + } + } + + this->value = new ir_constant(ir->type, &data); + } }