diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-26 03:20:37 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-26 03:20:37 +0100 |
commit | 6c9bcc6f41bb738c216fc810246f60576d9ec6e4 (patch) | |
tree | a98834bbc2491c417743760d2869d1c066962b16 /render/rastppc.c | |
parent | e8696b4046767fcbfc05056c13f919fdeff65158 (diff) | |
download | mupdf-6c9bcc6f41bb738c216fc810246f60576d9ec6e4.tar.xz |
cpu dependent skeleton
Diffstat (limited to 'render/rastppc.c')
-rw-r--r-- | render/rastppc.c | 21 |
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 + |