Rename pixman-fast-path.h to pixman-inlines.h
authorSøren Sandmann Pedersen <ssp@redhat.com>
Fri, 11 Mar 2011 21:07:24 +0000 (16:07 -0500)
committerSøren Sandmann Pedersen <ssp@redhat.com>
Sat, 20 Aug 2011 00:01:36 +0000 (20:01 -0400)
It is not really specific to pixman-fast-path.c.

pixman/Makefile.am
pixman/pixman-arm-common.h
pixman/pixman-arm-simd.c
pixman/pixman-fast-path.c
pixman/pixman-inlines.h [moved from pixman/pixman-fast-path.h with 100% similarity]
pixman/pixman-noop.c
pixman/pixman-sse2.c
test/scaling-helpers-test.c

index 1e20bb0..44e6b17 100644 (file)
@@ -22,7 +22,6 @@ libpixman_1_la_SOURCES =                      \
        pixman.c                                \
        pixman-noop.c                           \
        pixman-fast-path.c                      \
-       pixman-fast-path.h                      \
        pixman-solid-fill.c                     \
        pixman-conical-gradient.c               \
        pixman-linear-gradient.c                \
@@ -32,6 +31,7 @@ libpixman_1_la_SOURCES =                      \
        pixman-edge.c                           \
        pixman-edge-accessors.c                 \
        pixman-edge-imp.h                       \
+       pixman-inlines.h                        \
        pixman-trap.c                           \
        pixman-timer.c                          \
        pixman-matrix.c
index f1d212c..f56264e 100644 (file)
@@ -26,7 +26,7 @@
 #ifndef PIXMAN_ARM_COMMON_H
 #define PIXMAN_ARM_COMMON_H
 
-#include "pixman-fast-path.h"
+#include "pixman-inlines.h"
 
 /* Define some macros which can expand into proxy functions between
  * ARM assembly optimized functions and the rest of pixman fast path API.
index a66f8df..3d19bfa 100644 (file)
@@ -29,7 +29,7 @@
 
 #include "pixman-private.h"
 #include "pixman-arm-common.h"
-#include "pixman-fast-path.h"
+#include "pixman-inlines.h"
 
 #if 0 /* This code was moved to 'pixman-arm-simd-asm.S' */
 
index 9a6919e..bbdc8e8 100644 (file)
@@ -30,7 +30,7 @@
 #include <stdlib.h>
 #include "pixman-private.h"
 #include "pixman-combine32.h"
-#include "pixman-fast-path.h"
+#include "pixman-inlines.h"
 
 static force_inline uint32_t
 fetch_24 (uint8_t *a)
index 4f8c3a1..906a491 100644 (file)
@@ -28,7 +28,7 @@
 #include <stdlib.h>
 #include "pixman-private.h"
 #include "pixman-combine32.h"
-#include "pixman-fast-path.h"
+#include "pixman-inlines.h"
 
 static void
 noop_composite (pixman_implementation_t *imp,
index 3d51c2f..6689c53 100644 (file)
@@ -34,7 +34,7 @@
 #include <emmintrin.h> /* for SSE2 intrinsics */
 #include "pixman-private.h"
 #include "pixman-combine32.h"
-#include "pixman-fast-path.h"
+#include "pixman-inlines.h"
 
 static __m128i mask_0080;
 static __m128i mask_00ff;
index c186138..a38cac5 100644 (file)
@@ -4,7 +4,7 @@
 #include <stdio.h>
 #include <assert.h>
 #include "utils.h"
-#include "pixman-fast-path.h"
+#include "pixman-inlines.h"
 
 /* A trivial reference implementation for
  * 'bilinear_pad_repeat_get_scanline_bounds'