NAME
META_SETPOLYFILLMODE
NEAREST API CALL
#include <windows.h>
int SetPolyFillMode(
HDC hdc,
INT fillmode
);
DESCRIPTION
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