cell: compile fix: alpha.ref is now alpha.ref_value
authorBrian Paul <brianp@vmware.com>
Sat, 7 Feb 2009 20:01:53 +0000 (13:01 -0700)
committerBrian Paul <brianp@vmware.com>
Sat, 7 Feb 2009 20:01:53 +0000 (13:01 -0700)
src/gallium/drivers/cell/ppu/cell_gen_fragment.c
src/gallium/drivers/cell/spu/spu_per_fragment_op.c

index 9bdc71b676e68cf24d66600d140d205e08d4bc6f..66d4b3b6a31b348f9f0b28ebe92c199f2f17482a 100644 (file)
@@ -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' */
index 683664e8a4e90fc2aff9582704cd49b6116af2e4..eba9f95cf1f3e17b282b6b6f36fe1bc1182e21ce 100644 (file)
@@ -85,7 +85,7 @@ spu_fallback_fragment_ops(uint x, uint y,
     * Do alpha test
     */
    if (spu.depth_stencil_alpha.alpha.enabled) {
-      vector float ref = spu_splats(spu.depth_stencil_alpha.alpha.ref);
+      vector float ref = spu_splats(spu.depth_stencil_alpha.alpha.ref_value);
       vector unsigned int amask;
 
       switch (spu.depth_stencil_alpha.alpha.func) {