diff options
author | Corbin Simpson <MostAwesomeDude@gmail.com> | 2009-02-28 11:20:26 -0800 |
---|---|---|
committer | Corbin Simpson <MostAwesomeDude@gmail.com> | 2009-02-28 11:22:40 -0800 |
commit | 2b7d39da1f5445e1b0beb3b8b1ef9004e684c600 (patch) | |
tree | 1aa01ca5bc591c5ffea72d04a9677a11c7f52e5d /src/gallium/drivers/r300/r300_state.c | |
parent | 23682dc6299ff624405eec4ea61fa504d71764c6 (diff) |
r300-gallium: Move maths from r300_state to r300_state_inlines.
Diffstat (limited to 'src/gallium/drivers/r300/r300_state.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_state.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c index 693f3c1c58..6e64ad2dc3 100644 --- a/src/gallium/drivers/r300/r300_state.c +++ b/src/gallium/drivers/r300/r300_state.c @@ -318,10 +318,6 @@ static void r300_set_polygon_stipple(struct pipe_context* pipe, /* XXX */ } -static INLINE int pack_float_16_6x(float f) { - return ((int)(f * 6.0) & 0xffff); -} - /* Create a new rasterizer state based on the CSO rasterizer state. * * This is a very large chunk of state, and covers most of the graphics |