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/rastsparc.c | |
parent | e8696b4046767fcbfc05056c13f919fdeff65158 (diff) | |
download | mupdf-6c9bcc6f41bb738c216fc810246f60576d9ec6e4.tar.xz |
cpu dependent skeleton
Diffstat (limited to 'render/rastsparc.c')
-rw-r--r-- | render/rastsparc.c | 21 |
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 + |