1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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