r300-gallium: Move maths from r300_state to r300_state_inlines.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Sat, 28 Feb 2009 19:20:26 +0000 (11:20 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Sat, 28 Feb 2009 19:22:40 +0000 (11:22 -0800)
src/gallium/drivers/r300/r300_state.c
src/gallium/drivers/r300/r300_state_inlines.h

index 693f3c1c5843e20ed6ca2fcb758cca010ebe7229..6e64ad2dc354b4e10e207fa6130620a082cda1ae 100644 (file)
@@ -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
index 361443a692375abf38f4afeb435338eaa421ecb3..e12540535de3df99c8bddff268baafb2a76605d7 100644 (file)
 
 #include "r300_reg.h"
 
+/* Some maths. These should probably find their way to u_math, if needed. */
+
+static INLINE int pack_float_16_6x(float f) {
+    return ((int)(f * 6.0) & 0xffff);
+}
+
 /* Blend state. */
 
 static INLINE uint32_t r300_translate_blend_function(int blend_func)