summaryrefslogtreecommitdiff
path: root/render/rastppc.c
blob: f26e5b666a7ecee9a4f1b836e2936dd94f314397 (plain)
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