From 6c9bcc6f41bb738c216fc810246f60576d9ec6e4 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 26 Nov 2004 03:20:37 +0100 Subject: cpu dependent skeleton --- render/rastppc.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 render/rastppc.c (limited to 'render/rastppc.c') 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 + +#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 + -- cgit v1.2.3