mesa,glsl: Move round_to_even() from glsl to mesa/main (v2)
authorChad Versace <chad.versace@linux.intel.com>
Thu, 17 Jan 2013 03:49:40 +0000 (19:49 -0800)
committerChad Versace <chad.versace@linux.intel.com>
Fri, 25 Jan 2013 05:24:07 +0000 (21:24 -0800)
Move round_to_even's definition to mesa/main so that _mesa_float_to_half()
can use it in order to eliminate rounding bias.

In additon to moving the fuction definition, prefix its name with "_mesa",
just as all other functions in mesa/main are prefixed.

v2: Fix Android build.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
src/glsl/Makefile.am
src/glsl/builtin_compiler/Makefile.am
src/glsl/ir_constant_expression.cpp
src/mesa/Android.libmesa_glsl_utils.mk
src/mesa/main/imports.c
src/mesa/main/imports.h

index 058d8aed38d18ab8e4ec27ba627d3bc200aaaf35..d0e5cd1d05e80636a6648f2c700716617c283cb5 100644 (file)
@@ -52,6 +52,7 @@ check_PROGRAMS =                                      \
 
 tests_uniform_initializer_test_SOURCES =               \
        $(top_srcdir)/src/mesa/main/hash_table.c        \
+       $(top_srcdir)/src/mesa/main/imports.c           \
        $(top_srcdir)/src/mesa/program/prog_hash_table.c\
        $(top_srcdir)/src/mesa/program/symbol_table.c   \
        tests/copy_constant_to_storage_tests.cpp        \
@@ -100,6 +101,7 @@ endif
 
 glsl_test_SOURCES = \
        $(top_srcdir)/src/mesa/main/hash_table.c \
+       $(top_srcdir)/src/mesa/main/imports.c \
        $(top_srcdir)/src/mesa/program/prog_hash_table.c \
        $(top_srcdir)/src/mesa/program/symbol_table.c \
        $(GLSL_SRCDIR)/standalone_scaffolding.cpp \
index 1a863b228dfb65b98194a309765ffee9ef93a480..976640822d89b2bf3cdbebc708f67d4c484d2dc2 100644 (file)
@@ -55,6 +55,7 @@ libglslcore_la_SOURCES =                              \
 
 builtin_compiler_SOURCES = \
        $(top_srcdir)/src/mesa/main/hash_table.c        \
+       $(top_srcdir)/src/mesa/main/imports.c           \
        $(top_srcdir)/src/mesa/program/prog_hash_table.c\
        $(top_srcdir)/src/mesa/program/symbol_table.c   \
        $(BUILTIN_COMPILER_CXX_FILES)                   \
index 17b54b923a4918b6dcb2be2b889c49326c4baff2..76780909a431b0247a2aa89e54608fb46c67b96f 100644 (file)
 #include "glsl_types.h"
 #include "program/hash_table.h"
 
-/* Using C99 rounding functions for roundToEven() implementation is
- * difficult, because round(), rint, and nearbyint() are affected by
- * fesetenv(), which the application may have done for its own
- * purposes.  Mesa's IROUND macro is close to what we want, but it
- * rounds away from 0 on n + 0.5.
- */
-static int
-round_to_even(float val)
-{
-   int rounded = IROUND(val);
-
-   if (val - floor(val) == 0.5) {
-      if (rounded % 2 != 0)
-        rounded += val > 0 ? -1 : 1;
-   }
-
-   return rounded;
-}
-
 static float
 dot(ir_constant *op0, ir_constant *op1)
 {
@@ -279,7 +260,7 @@ ir_expression::constant_expression_value(struct hash_table *variable_context)
    case ir_unop_round_even:
       assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
       for (unsigned c = 0; c < op[0]->type->components(); c++) {
-        data.f[c] = round_to_even(op[0]->value.f[c]);
+        data.f[c] = _mesa_round_to_even(op[0]->value.f[c]);
       }
       break;
 
index 9c5f3493cbd6dbb7f0176229c12894090d0833ec..47f2e151b40dc1836c53ca49a37373ac8c2cedac 100644 (file)
@@ -35,10 +35,13 @@ include $(CLEAR_VARS)
 
 LOCAL_MODULE := libmesa_glsl_utils
 
-LOCAL_C_INCLUDES := $(MESA_TOP)/src/glsl
+LOCAL_C_INCLUDES := \
+       $(MESA_TOP)/src/glsl \
+       $(MESA_TOP)/src/mapi
 
 LOCAL_SRC_FILES := \
        main/hash_table.c \
+       main/imports.c \
        program/prog_hash_table.c \
        program/symbol_table.c
 
@@ -54,10 +57,13 @@ include $(CLEAR_VARS)
 LOCAL_MODULE := libmesa_glsl_utils
 LOCAL_IS_HOST_MODULE := true
 
-LOCAL_C_INCLUDES := $(MESA_TOP)/src/glsl
+LOCAL_C_INCLUDES := \
+       $(MESA_TOP)/src/glsl \
+       $(MESA_TOP)/src/mapi
 
 LOCAL_SRC_FILES := \
        main/hash_table.c \
+       main/imports.c \
        program/prog_hash_table.c \
        program/symbol_table.c
 
index 76f835e0ec3e4be6063b7d8036266c1971ff6003..26c91dce5356d5ff98587e9452225b07df425b5e 100644 (file)
@@ -314,6 +314,26 @@ _mesa_bitcount_64(uint64_t n)
 #endif
 
 
+/* Using C99 rounding functions for roundToEven() implementation is
+ * difficult, because round(), rint, and nearbyint() are affected by
+ * fesetenv(), which the application may have done for its own
+ * purposes.  Mesa's IROUND macro is close to what we want, but it
+ * rounds away from 0 on n + 0.5.
+ */
+int
+_mesa_round_to_even(float val)
+{
+   int rounded = IROUND(val);
+
+   if (val - floor(val) == 0.5) {
+      if (rounded % 2 != 0)
+         rounded += val > 0 ? -1 : 1;
+   }
+
+   return rounded;
+}
+
+
 /**
  * Convert a 4-byte float to a 2-byte half float.
  * Based on code from:
index 8446ea2a3e8128dac9f31edf6cb2cc1e78f24843..4b783818b2fac2329c44579d13090931e0c96458 100644 (file)
@@ -548,6 +548,9 @@ _mesa_fls(unsigned int n)
 #endif
 }
 
+extern int
+_mesa_round_to_even(float val);
+
 extern GLhalfARB
 _mesa_float_to_half(float f);