summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_setup.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-14 16:18:00 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-14 16:18:00 +0100
commit871d39ec8c168fa58d8758013e99da63fa58111d (patch)
treeb57a16a3fe6bd124b9ee350e7d9fb0f0e681a386 /src/gallium/drivers/softpipe/sp_setup.h
parent8cbda9f1088718e5dbb97b9a6ddcc43737f94351 (diff)
softpipe: calculate determinant for all triangles, don't rely on draw module to do it
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_setup.h')
-rw-r--r--src/gallium/drivers/softpipe/sp_setup.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/softpipe/sp_setup.h b/src/gallium/drivers/softpipe/sp_setup.h
index 3133fc2a3d..d54f334428 100644
--- a/src/gallium/drivers/softpipe/sp_setup.h
+++ b/src/gallium/drivers/softpipe/sp_setup.h
@@ -30,11 +30,11 @@
struct setup_context;
struct softpipe_context;
-void setup_tri( struct setup_context *setup,
- float det,
- const float (*v0)[4],
- const float (*v1)[4],
- const float (*v2)[4] );
+void
+setup_tri( struct setup_context *setup,
+ const float (*v0)[4],
+ const float (*v1)[4],
+ const float (*v2)[4] );
void
setup_line(struct setup_context *setup,