Home | History | Annotate | Download | only in ports

Lines Matching refs:fDC

433         fDC = 0;
441 if (fDC) {
442 DeleteDC(fDC);
457 HDC fDC;
470 // a separate fDC here?
471 if (0 == fDC) {
472 fDC = CreateCompatibleDC(0);
473 if (0 == fDC) {
476 SetGraphicsMode(fDC, GM_ADVANCED);
477 SetBkMode(fDC, TRANSPARENT);
478 SetTextAlign(fDC, TA_LEFT | TA_BASELINE);
479 SelectObject(fDC, fFont);
482 SkDEBUGCODE(COLORREF prev =) SetTextColor(fDC, color);
515 fBM = CreateDIBSection(fDC, &info, DIB_RGB_COLORS, &fBits, 0, 0);
519 SelectObject(fDC, fBM);
530 SetWorldTransform(fDC, &xform);
533 BOOL ret = ExtTextOutW(fDC, 0, 0, ETO_GLYPH_INDEX, NULL, reinterpret_cast<LPCWSTR>(&glyphID), 1, NULL);