NAME

META_SETPOLYFILLMODE

NEAREST API CALL

#include <windows.h>
int SetPolyFillMode(
	HDC hdc,
	INT fillmode
	);

DESCRIPTION

U16 Value
0 FillMode
SetPolyFillMode sets polygon filling to either ALTERNATE or WINDING.
ALTERNATE is equivalent to X's EvenOddRule, and
WINDING is equivalent to WindingRule
The default is ALTERNATE, and fills the polygon in the intuitive manner, im not too sure what the hell WINDING means.

back