OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sourcedc
(Results
1 - 1
of
1
) sorted by null
/external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp
223
HDC
sourceDC
= CreateCompatibleDC(0);
230
HGDIOBJ oldSource = SelectObject(
sourceDC
, coreBitmap);
233
BitBlt(compatibleDC, 0, 0, image->width(), image->height(),
sourceDC
, 0, 0, SRCCOPY);
235
SelectObject(
sourceDC
, oldSource);
239
DeleteDC(
sourceDC
);
Completed in 34 milliseconds