Home
last modified time | relevance | path

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

/reactos/base/applications/mspaint/
H A Dselectionmodel.h45 …void DrawSelection(HDC hDCImage, COLORREF crBg, BOOL bBgTransparent, const CRect& rc, HBITMAP hbm);
47 void DrawSelection(HDC hDCImage, COLORREF crBg, BOOL bBgTransparent) in DrawSelection() argument
49 return DrawSelection(hDCImage, crBg, bBgTransparent, m_rc); in DrawSelection()
52 void DrawSelection(HDC hDCImage, COLORREF crBg, BOOL bBgTransparent, const CRect& rc) in DrawSelection() argument
54 return DrawSelection(hDCImage, crBg, bBgTransparent, rc, m_hbmColor); in DrawSelection()
H A Dselectionmodel.cpp62 SelectionModel::DrawSelection(HDC hDCImage, COLORREF crBg, BOOL bBgTransparent, const CRect& rc, in DrawSelection() argument
72 COLORREF keyColor = (bBgTransparent ? crBg : CLR_INVALID); in DrawSelection()