diff options
author | Brian Paul <[email protected]> | 2009-02-07 13:01:53 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-02-07 13:01:53 -0700 |
commit | 96d230e107abcf4c105e6e7c871124f246763222 (patch) | |
tree | da23cc0d2875915dead159c015fc09c9b0803884 /src/gallium/drivers/cell/ppu/cell_gen_fragment.c | |
parent | 830e320e2ad9a3918d867d8233c25bb2c54fa55a (diff) |
cell: compile fix: alpha.ref is now alpha.ref_value
Diffstat (limited to 'src/gallium/drivers/cell/ppu/cell_gen_fragment.c')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_gen_fragment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_gen_fragment.c b/src/gallium/drivers/cell/ppu/cell_gen_fragment.c index 9bdc71b676e..66d4b3b6a31 100644 --- a/src/gallium/drivers/cell/ppu/cell_gen_fragment.c +++ b/src/gallium/drivers/cell/ppu/cell_gen_fragment.c @@ -161,7 +161,7 @@ gen_alpha_test(const struct pipe_depth_stencil_alpha_state *dsa, if ((dsa->alpha.func != PIPE_FUNC_NEVER) && (dsa->alpha.func != PIPE_FUNC_ALWAYS)) { /* load/splat the alpha reference float value */ - spe_load_float(f, ref_reg, dsa->alpha.ref); + spe_load_float(f, ref_reg, dsa->alpha.ref_value); } /* emit code to do the alpha comparison, updating 'mask' */ |