pixman: Branch 'master'

Siarhei Siamashka siamashka at kemper.freedesktop.org
Sun Jul 1 13:18:38 PDT 2012


 pixman/pixman-private.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b0855f095aba8e0c98d1fd1863b278fc72a4dd2c
Author: Siarhei Siamashka <siarhei.siamashka at gmail.com>
Date:   Sun Jul 1 23:00:34 2012 +0300

    Change default bilinear interpolation precision to 7 bits
    
    This improves performance for the current SSE2 code. Further
    reduction to 4 bits may be considered later if it proves
    to allow additional speedup.

diff --git a/pixman/pixman-private.h b/pixman/pixman-private.h
index 22be9a2..0c27798 100644
--- a/pixman/pixman-private.h
+++ b/pixman/pixman-private.h
@@ -6,7 +6,7 @@
  */
 
 /* bilinear interpolation precision (must be <= 8) */
-#define BILINEAR_INTERPOLATION_BITS 8
+#define BILINEAR_INTERPOLATION_BITS 7
 #define BILINEAR_INTERPOLATION_RANGE (1 << BILINEAR_INTERPOLATION_BITS)
 
 /*


More information about the xorg-commit mailing list