summaryrefslogtreecommitdiff
path: root/fitzdraw/archsparc.c
blob: b78e5a4d40c3ab5d70bf536d1efa5f5160aa5750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
SPARC specific render optims live here
*/
#include "fitz-base.h"
#include "fitz-world.h"
#include "fitz-draw.h"

#ifdef HAVE_VIS

#endif

#if defined (ARCH_SPARC)
void
fz_accelerate(void)
{
#  ifdef HAVE_VIS
	if (fz_cpuflags & HAVE_VIS)
	{
	}
#  endif
}
#endif