diff options
author | Keith Whitwell <[email protected]> | 2008-04-14 16:18:00 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-14 16:18:00 +0100 |
commit | 871d39ec8c168fa58d8758013e99da63fa58111d (patch) | |
tree | b57a16a3fe6bd124b9ee350e7d9fb0f0e681a386 /src/gallium/drivers/softpipe/sp_setup.h | |
parent | 8cbda9f1088718e5dbb97b9a6ddcc43737f94351 (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.h | 10 |
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 3133fc2a3d5..d54f3344288 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, |