summaryrefslogtreecommitdiff
path: root/render/rastppc.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/rastppc.c')
-rw-r--r--render/rastppc.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/render/rastppc.c b/render/rastppc.c
new file mode 100644
index 00000000..f26e5b66
--- /dev/null
+++ b/render/rastppc.c
@@ -0,0 +1,21 @@
+/*
+PowerPC specific render optims live here
+*/
+#include <fitz.h>
+
+#ifdef HAVE_ALTIVEC
+
+#endif /* HAVE_ALTIVEC */
+
+#if defined (ARCH_PPC)
+void
+fz_accelrastfuncs(fz_rastfuncs *tab)
+{
+# ifdef HAVE_ALTIVEC
+ if (fz_cpuflags & HAVE_ALTIVEC)
+ {
+ }
+# endif
+}
+#endif
+