diff options
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 + |