summaryrefslogtreecommitdiff
path: root/render/rastsparc.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2004-11-26 03:20:37 +0100
committerTor Andersson <tor@ghostscript.com>2004-11-26 03:20:37 +0100
commit6c9bcc6f41bb738c216fc810246f60576d9ec6e4 (patch)
treea98834bbc2491c417743760d2869d1c066962b16 /render/rastsparc.c
parente8696b4046767fcbfc05056c13f919fdeff65158 (diff)
downloadmupdf-6c9bcc6f41bb738c216fc810246f60576d9ec6e4.tar.xz
cpu dependent skeleton
Diffstat (limited to 'render/rastsparc.c')
-rw-r--r--render/rastsparc.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/render/rastsparc.c b/render/rastsparc.c
new file mode 100644
index 00000000..c18db9a5
--- /dev/null
+++ b/render/rastsparc.c
@@ -0,0 +1,21 @@
+/*
+SPARC specific render optims live here
+*/
+#include <fitz.h>
+
+#ifdef HAVE_VIS
+
+#endif
+
+#if defined (ARCH_SPARC)
+void
+fz_accelrastfuncs(fz_rastfuncs *tab)
+{
+# ifdef HAVE_VIS
+ if (fz_cpuflags & HAVE_VIS)
+ {
+ }
+# endif
+}
+#endif
+