void CanvasGdiplus::FillRectInt(const Brush& brush,
     int x, int y, int w, int h)
 {
     Gdiplus::Graphics* current = GetCurrentGraphics();
     current->FillRectangle(brush.GetNativeBrush(), x, y, w, h);
 }