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