summaryrefslogtreecommitdiff
path: root/fitzdraw/archsparc.c
blob: a1e54b034a0783130568178e98cd49aa90b0f698 (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_accelerate(void)
{
#  ifdef HAVE_VIS
	if (fz_cpuflags & HAVE_VIS)
	{
	}
#  endif
}
#endif