diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-05-09 08:56:01 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-05-09 08:56:01 +0100 |
commit | 36e1bc865b421be8919ce7d26eb4ae593a885372 (patch) | |
tree | 37dbf40f6d377a4613a6d29abd3234cc5c51822e /src/gallium/drivers/softpipe | |
parent | 47f639a62989cea4b3b14cd73bb39de85acec8ea (diff) | |
parent | b514f5f3ba4c9cf6c39cbcdf5bf0d2d8efb8d19b (diff) |
Merge branch 'gallium-0.1' into gallium-tex-surfaces
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_setup.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_setup.c b/src/gallium/drivers/softpipe/sp_setup.c index df7be01fcd..5370d85275 100644 --- a/src/gallium/drivers/softpipe/sp_setup.c +++ b/src/gallium/drivers/softpipe/sp_setup.c @@ -717,7 +717,7 @@ void setup_tri( struct setup_context *setup, const float (*v1)[4], const float (*v2)[4] ) { - float det = calc_det(v0, v1, v2); + float det; #if DEBUG_VERTS debug_printf("Setup triangle:\n"); @@ -728,7 +728,8 @@ void setup_tri( struct setup_context *setup, if (setup->softpipe->no_rast) return; - + + det = calc_det(v0, v1, v2); /* debug_printf("%s\n", __FUNCTION__ ); */ |