diff options
author | Keith Whitwell <[email protected]> | 2010-08-27 11:03:58 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-08-27 13:08:55 +0100 |
commit | aea6b415deffd7613d67dc85876afab151b7460e (patch) | |
tree | ed7c3a7d2a400f1ba547b1e7285f453292619a78 /src/gallium/drivers/llvmpipe/lp_rast.h | |
parent | 29ec116e8f21c65250f1083830b82ff59859496d (diff) |
llvmpipe: eliminate tri->dx, tri->dy values
Use an internal struct for line setup information.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_rast.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.h b/src/gallium/drivers/llvmpipe/lp_rast.h index 37b4fdc31e8..b4564ef33bd 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.h +++ b/src/gallium/drivers/llvmpipe/lp_rast.h @@ -116,11 +116,6 @@ struct lp_rast_triangle { /* inputs for the shader */ struct lp_rast_shader_inputs inputs; - /* XXX: temporarily use these additional fields for line - * coefficient setup - */ - float dx, dy; - #ifdef DEBUG float v[3][2]; #endif |