summaryrefslogtreecommitdiff
path: root/render/rastshade.c
blob: 7e7f82ce2c5f0d69029132d931df9cf4c3213aeb (plain)
1
2
3
4
5
6
7
8
9
10
#include <fitz.h>

fz_error *
fz_rendershade(fz_shade *shade, fz_matrix ctm, fz_colorspace *dsts, fz_pixmap *dstp, int over)
{
	if (!over)
		fz_clearpixmap(dstp);
	return nil;
}