OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:screen_dc
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/gfx/
color_profile_win.cc
15
HDC
screen_dc
= GetDC(NULL);
local
19
BOOL res = GetICMProfile(
screen_dc
, &path_len, path);
20
ReleaseDC(NULL,
screen_dc
);
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
spyware.cc
54
HDC
screen_dc
= ::GetDC(NULL);
local
55
COLORREF pixel_color = ::GetPixel(
screen_dc
, 0, 0);
59
if (::GetPixel(
screen_dc
, x, y) != pixel_color) {
/external/chromium_org/content/browser/renderer_host/
backing_store_win.cc
58
HDC
screen_dc
= ::GetDC(NULL);
local
59
color_depth_ = ::GetDeviceCaps(
screen_dc
, BITSPIXEL);
65
hdc_ = CreateCompatibleDC(
screen_dc
);
66
ReleaseDC(NULL,
screen_dc
);
Completed in 71 milliseconds