From 8f0a331040fc6fa700ab2c5f96061844a2289599 Mon Sep 17 00:00:00 2001 From: Jon TURNEY Date: Wed, 29 Jun 2011 12:43:11 +0100 Subject: [PATCH] i915g: Move definition of M_PI in i915_fpc_translate.c Move defintion of M_PI (for the benefit of which do not define it), to before the first use of it Signed-off-by: Jon TURNEY Reviewed-by: Brian Paul --- src/gallium/drivers/i915/i915_fpc_translate.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/gallium/drivers/i915/i915_fpc_translate.c b/src/gallium/drivers/i915/i915_fpc_translate.c index ab09d56ec77..93fe453e9df 100644 --- a/src/gallium/drivers/i915/i915_fpc_translate.c +++ b/src/gallium/drivers/i915/i915_fpc_translate.c @@ -41,6 +41,9 @@ #include "draw/draw_vertex.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif /** * Simple pass-through fragment shader to use when we don't have @@ -442,11 +445,6 @@ emit_simple_arith_swap2(struct i915_fp_compile *p, emit_simple_arith(p, &inst2, opcode, numArgs, fs); } - -#ifndef M_PI -#define M_PI 3.14159265358979323846 -#endif - /* * Translate TGSI instruction to i915 instruction. * -- 2.11.0