diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-06-04 15:58:45 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-06-04 15:58:45 +0200 |
commit | 7ee19483ed81a885f464d4e93f4eefb3d4037d30 (patch) | |
tree | e4d3faf561e694ae0cc7873381450db6a011ab5a /raster/archsparc.c | |
parent | af699a4657e103bd8fa72356eb3abebf221fe93a (diff) | |
download | mupdf-7ee19483ed81a885f464d4e93f4eefb3d4037d30.tar.xz |
new world order
Diffstat (limited to 'raster/archsparc.c')
-rw-r--r-- | raster/archsparc.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/raster/archsparc.c b/raster/archsparc.c new file mode 100644 index 00000000..32e142c3 --- /dev/null +++ b/raster/archsparc.c @@ -0,0 +1,21 @@ +/* +SPARC specific render optims live here +*/ +#include <fitz.h> + +#ifdef HAVE_VIS + +#endif + +#if defined (ARCH_SPARC) +void +fz_accelerate(void) +{ +# ifdef HAVE_VIS + if (fz_cpuflags & HAVE_VIS) + { + } +# endif +} +#endif + |