Home | History | Annotate | Download | only in ports

Lines Matching refs:fDC

434         fDC = 0;
442 if (fDC) {
443 DeleteDC(fDC);
458 HDC fDC;
471 // a separate fDC here?
472 if (0 == fDC) {
473 fDC = CreateCompatibleDC(0);
474 if (0 == fDC) {
477 SetGraphicsMode(fDC, GM_ADVANCED);
478 SetBkMode(fDC, TRANSPARENT);
479 SetTextAlign(fDC, TA_LEFT | TA_BASELINE);
480 SelectObject(fDC, fFont);
483 SkDEBUGCODE(COLORREF prev =) SetTextColor(fDC, color);
516 fBM = CreateDIBSection(fDC, &info, DIB_RGB_COLORS, &fBits, 0, 0);
520 SelectObject(fDC, fBM);
531 SetWorldTransform(fDC, &xform);
534 BOOL ret = ExtTextOutW(fDC, 0, 0, ETO_GLYPH_INDEX, NULL, reinterpret_cast<LPCWSTR>(&glyphID), 1, NULL);