[SDK][INCLUDE] Implement Gdiplus::Pen (#2207)

CORE-16585
This commit is contained in:
Katayama Hirofumi MZ 2019-12-31 17:11:38 +09:00 committed by GitHub
parent e797499dee
commit ad2c15524d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 139 additions and 54 deletions

View file

@ -1437,6 +1437,13 @@ class CustomLineCap : public GdiplusBase
CustomLineCap(const CustomLineCap &);
CustomLineCap &
operator=(const CustomLineCap &);
// get native
friend inline GpCustomLineCap *&
getNat(const CustomLineCap *cap)
{
return const_cast<CustomLineCap *>(cap)->nativeCap;
}
};
inline TextureBrush::TextureBrush(Image *image, WrapMode wrapMode, const RectF &dstRect)