Home
last modified time | relevance | path

Searched refs:pBrush (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fxge/win32/
Dwin32_int.h40 void GdipCreateBrush(FX_DWORD fill_argb, void** pBrush);
41 void GdipDeleteBrush(void* pBrush);
Dfx_win32_gdipext.cpp622 void CGdiplusExt::GdipCreateBrush(FX_DWORD fill_argb, void** pBrush) in GdipCreateBrush() argument
625 CallFunc(GdipCreateSolidFill)((ARGB)fill_argb, (GpSolidFill**)pBrush); in GdipCreateBrush()
627 void CGdiplusExt::GdipDeleteBrush(void* pBrush) in GdipDeleteBrush() argument
630 CallFunc(GdipDeleteBrush)((GpSolidFill*)pBrush); in GdipDeleteBrush()
966 GpBrush* pBrush = _GdipCreateBrush(fill_argb); in DrawPath() local
968 CallFunc(GdipFillPath)(pGraphics, pBrush, pGpPath); in DrawPath()
969 CallFunc(GdipDeleteBrush)(pBrush); in DrawPath()