void setFill (const FillType& newFillType)
 {
     if (fillType != newFillType)
     {
         fillType = newFillType;
         clearFill();
     }
 }
void Direct2DLowLevelGraphicsContext::SavedState::setFill (const FillType& newFillType)
{
    if (fillType != newFillType)
    {
        fillType = newFillType;
        clearFill();
    }
}
 ~SavedState()
 {
     clearClip();
     clearFont();
     clearFill();
     clearPathClip();
     clearImageClip();
     complexClipLayer = 0;
     bitmapMaskLayer = 0;
 }
Direct2DLowLevelGraphicsContext::SavedState::~SavedState()
{
    clearClip();
    clearFont();
    clearFill();
    clearPathClip();
    clearImageClip();
    complexClipLayer = 0;
    bitmapMaskLayer = 0;
}