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