Home | History | Annotate | Download | only in ports

Lines Matching refs:fDC

418         fDC = 0;
426 if (fDC) {
427 DeleteDC(fDC);
442 HDC fDC;
455 // a separate fDC here?
456 if (0 == fDC) {
457 fDC = CreateCompatibleDC(0);
458 if (0 == fDC) {
461 SetGraphicsMode(fDC, GM_ADVANCED);
462 SetBkMode(fDC, TRANSPARENT);
463 SetTextAlign(fDC, TA_LEFT | TA_BASELINE);
464 SelectObject(fDC, fFont);
467 SkDEBUGCODE(COLORREF prev =) SetTextColor(fDC, color);
500 fBM = CreateDIBSection(fDC, &info, DIB_RGB_COLORS, &fBits, 0, 0);
504 SelectObject(fDC, fBM);
515 SetWorldTransform(fDC, &xform);
518 BOOL ret = ExtTextOutW(fDC, 0, 0, ETO_GLYPH_INDEX, NULL, reinterpret_cast<LPCWSTR>(&glyphID), 1, NULL);