ir_constant_visitor: Use 'union ir_constant_data' instead of open-coded version

This commit is contained in:
Ian Romanick
2010-06-11 15:49:49 -07:00
parent be1d2bfdea
commit 0bb70a30d5

View File

@@ -558,11 +558,7 @@ ir_constant_visitor::visit(ir_swizzle *ir)
this->value = NULL;
if (v != NULL) {
union {
float f[4];
unsigned u[4];
bool b[4];
} data;
ir_constant_data data;
const unsigned swiz_idx[4] = {
ir->mask.x, ir->mask.y, ir->mask.z, ir->mask.w
@@ -615,10 +611,7 @@ ir_constant_visitor::visit(ir_dereference_array *ir)
*/
const unsigned mat_idx = column * column_type->vector_elements;
union {
unsigned u[4];
float f[4];
} data;
ir_constant_data data;
switch (column_type->base_type) {
case GLSL_TYPE_UINT: