pixman: Branch 'master'

Vladimir Vukicevic vladimir at kemper.freedesktop.org
Tue Mar 25 11:47:09 PDT 2008


 pixman/pixman-pict.c |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 11cfd5d1bb9d1ea89f9d82bf6f447e577d673816
Author: Vladimir Vukicevic <vladimir at pobox.com>
Date:   Tue Mar 25 11:45:56 2008 -0700

    Only define pixman_have_sse() as function if USE_SSE2 is also defined
    
    .. otherwise it's already a macro evaluating to FALSE.

diff --git a/pixman/pixman-pict.c b/pixman/pixman-pict.c
index 366c444..8976ff2 100644
--- a/pixman/pixman-pict.c
+++ b/pixman/pixman-pict.c
@@ -1949,6 +1949,7 @@ pixman_have_mmx (void)
     return mmx_present;
 }
 
+#ifdef USE_SSE2
 pixman_bool_t
 pixman_have_sse (void)
 {
@@ -1964,5 +1965,7 @@ pixman_have_sse (void)
 
     return sse_present;
 }
+#endif
+
 #endif /* __amd64__ */
 #endif


More information about the xorg-commit mailing list