Mesa (softpipe-opt): softpipe: remove unused variable in shade_quad

Keith Whitwell keithw at kemper.freedesktop.org
Tue Aug 11 16:08:58 UTC 2009


Module: Mesa
Branch: softpipe-opt
Commit: 572c2fb5bb6cec71ef42e93416251a6a6c183de0
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=572c2fb5bb6cec71ef42e93416251a6a6c183de0

Author: Keith Whitwell <keithw at vmware.com>
Date:   Thu Jul 30 11:34:36 2009 +0100

softpipe: remove unused variable in shade_quad

---

 src/gallium/drivers/softpipe/sp_quad_fs.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_quad_fs.c b/src/gallium/drivers/softpipe/sp_quad_fs.c
index 56a8f55..e1bc071 100644
--- a/src/gallium/drivers/softpipe/sp_quad_fs.c
+++ b/src/gallium/drivers/softpipe/sp_quad_fs.c
@@ -74,7 +74,6 @@ shade_quad(struct quad_stage *qs, struct quad_header *quad)
    struct quad_shade_stage *qss = quad_shade_stage( qs );
    struct softpipe_context *softpipe = qs->softpipe;
    struct tgsi_exec_machine *machine = qss->machine;
-   boolean z_written;
 
    /* run shader */
    quad->inout.mask &= softpipe->fs->run( softpipe->fs, machine, quad );
@@ -82,7 +81,6 @@ shade_quad(struct quad_stage *qs, struct quad_header *quad)
       return FALSE;
 
    /* store outputs */
-   z_written = FALSE;
    {
       const ubyte *sem_name = softpipe->fs->info.output_semantic_name;
       const ubyte *sem_index = softpipe->fs->info.output_semantic_index;
@@ -104,7 +102,6 @@ shade_quad(struct quad_stage *qs, struct quad_header *quad)
                for (j = 0; j < 4; j++) {
                   quad->output.depth[j] = machine->Outputs[0].xyzw[2].f[j];
                }
-               z_written = TRUE;
             }
             break;
          }




More information about the mesa-commit mailing list