Lines Matching refs:mInteropHDC
281 HDC mInteropHDC; member
598 mInteropHDC(NULL), in DWriteContext()
945 if (mInteropHDC != NULL) in SetDrawingMode()
948 mInteropHDC = NULL; in SetDrawingMode()
965 if (mInteropHDC != NULL) in SetDrawingMode()
968 mInteropHDC = NULL; in SetDrawingMode()
985 if (mInteropHDC == NULL) in SetDrawingMode()
986 hr = mGDIRT->GetDC(D2D1_DC_INITIALIZE_MODE_COPY, &mInteropHDC); in SetDrawingMode()
1013 HGDIOBJ hOldFont = ::SelectObject(mInteropHDC, hFont); in DrawText()
1014 ::SetTextColor(mInteropHDC, color); in DrawText()
1015 ::SetBkMode(mInteropHDC, ::GetBkMode(mHDC)); in DrawText()
1016 ::ExtTextOutW(mInteropHDC, x, y, fuOptions, lprc, text, len, lpDx); in DrawText()
1017 ::SelectObject(mInteropHDC, hOldFont); in DrawText()
1052 ::FillRect(mInteropHDC, rc, hbr); in FillRect()
1073 HGDIOBJ old_pen = ::SelectObject(mInteropHDC, HGDIOBJ(hpen)); in DrawLine()
1074 ::MoveToEx(mInteropHDC, x1, y1, NULL); in DrawLine()
1075 ::LineTo(mInteropHDC, x2, y2); in DrawLine()
1076 ::SelectObject(mInteropHDC, old_pen); in DrawLine()
1096 ::SetPixel(mInteropHDC, x, y, color); in SetPixel()