HomeSort by relevance Sort by last modified time
    Searched refs:m_hdc (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextWin.cpp 67 : m_hdc(0)
76 m_hdc = CreateCompatibleDC(hdc);
77 SelectObject(m_hdc, m_bitmap);
83 SetGraphicsMode(m_hdc, GM_ADVANCED);
91 DeleteDC(m_hdc);
97 return new WindowsBitmap(m_data->m_hdc, size);
103 if (mayCreateBitmap && (!m_data->m_hdc || inTransparencyLayer())) {
115 HDC bitmapDC = ::CreateCompatibleDC(m_data->m_hdc);
135 return m_data->m_hdc;
140 if (!m_hdc)
    [all...]
LocalWindowsContext.h 43 m_hdc = m_graphicsContext->getWindowsContext(m_rect, m_supportAlphaBlend, m_mayCreateBitmap);
48 m_graphicsContext->releaseWindowsContext(m_hdc, m_rect, m_supportAlphaBlend, m_mayCreateBitmap);
51 HDC hdc() const { return m_hdc; }
55 HDC m_hdc; member in class:WebCore::LocalWindowsContext
GraphicsContextCairoWin.cpp 82 m_data->m_hdc = dc;
125 bool createdBitmap = mayCreateBitmap && (!m_data->m_hdc || inTransparencyLayer());
162 m_hdc = cairo_win32_surface_get_dc(surface);
164 SetGraphicsMode(m_hdc, GM_ADVANCED); // We need this call for themes to honor world transforms.
169 cairo_surface_t* surface = cairo_win32_surface_create(m_hdc);
GraphicsContextCGWin.cpp 79 m_data->m_hdc = hdc;
92 bool createdBitmap = mayCreateBitmap && (!m_data->m_hdc || inTransparencyLayer());
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 86 HDC m_hdc; member in class:WebCore::__anon16204::TransparencyAwareFontPainter
103 , m_hdc(0)
168 m_hdc = skia::BeginPlatformPaint(m_transparency.platformContext()->canvas());
169 SetTextColor(m_hdc, skia::SkColorToCOLORREF(color));
170 SetBkMode(m_hdc, TRANSPARENT);
210 // m_hdc so we can restore it.
229 if (m_hdc)
230 m_oldFont = ::SelectObject(m_hdc, m_font->platformData().hfont());
235 if (m_useGDI && m_hdc)
236 ::SelectObject(m_hdc, m_oldFont)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextPlatformPrivateCairo.h 58 , m_hdc(0)
109 HDC m_hdc; member in class:WebCore::GraphicsContextPlatformPrivate
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextPlatformPrivateCG.h 46 , m_hdc(0)
90 HDC m_hdc; member in class:WebCore::GraphicsContextPlatformPrivate
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.h 111 HDC get() const { return m_hdc; }
117 if (m_hdc)
118 m_bitmap->releaseDC(m_hdc, m_key);
123 m_hdc = bmp ? bmp->getDC(&m_key) : 0;
126 HDC m_hdc; member in class:WebCore::SharedBitmap::DCHolder
  /external/webkit/Source/WebCore/platform/wx/wxcode/win/
scrollbar_render.cpp 85 m_hdc = m_graphics->GetHDC();
89 m_hdc = GetHdcOf(*dc);
96 m_graphics->ReleaseHDC(m_hdc);
100 operator HDC() const { return m_hdc; }
103 HDC m_hdc; member in class:GraphicsHDC
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 107 HDC getDC(){ return m_hdc;};
115 HDC m_hdc; member in class:SrfcInfo
121 m_hdc(NULL),
130 m_hdc = GetDC(wnd);
138 m_hdc = s_wglExtProcs->wglGetPbufferDCARB(pb);
144 ReleaseDC(m_hwnd,m_hdc);
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 491 HDC hdc() const { return m_hdc; }
500 HDC m_hdc; member in class:WebCore::GraphicsContext::WindowsBitmap

Completed in 94 milliseconds