ir_to_mesa: Fill in some uninitialized fields that sometimes contained junk.

This commit is contained in:
Eric Anholt
2010-07-07 11:38:55 -07:00
parent d674ebcee0
commit 8bb15c1ed5

View File

@@ -192,11 +192,11 @@ ir_to_mesa_src_reg ir_to_mesa_undef = {
}; };
ir_to_mesa_dst_reg ir_to_mesa_undef_dst = { ir_to_mesa_dst_reg ir_to_mesa_undef_dst = {
PROGRAM_UNDEFINED, 0, SWIZZLE_NOOP PROGRAM_UNDEFINED, 0, SWIZZLE_NOOP, COND_TR
}; };
ir_to_mesa_dst_reg ir_to_mesa_address_reg = { ir_to_mesa_dst_reg ir_to_mesa_address_reg = {
PROGRAM_ADDRESS, 0, WRITEMASK_X PROGRAM_ADDRESS, 0, WRITEMASK_X, COND_TR
}; };
static int swizzle_for_size(int size) static int swizzle_for_size(int size)
@@ -375,6 +375,8 @@ ir_to_mesa_visitor::src_reg_for_float(float val)
src_reg.file = PROGRAM_CONSTANT; src_reg.file = PROGRAM_CONSTANT;
src_reg.index = _mesa_add_unnamed_constant(this->prog->Parameters, src_reg.index = _mesa_add_unnamed_constant(this->prog->Parameters,
&val, 1, &src_reg.swizzle); &val, 1, &src_reg.swizzle);
src_reg.reladdr = GL_FALSE;
src_reg.negate = 0;
return src_reg; return src_reg;
} }