summaryrefslogtreecommitdiff
path: root/fitzdraw/archsparc.c
blob: 55bffa98917367785cd22288d8c846486454ed7d (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_tree.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