OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_doubleBufferDC
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebKit/wince/
WebView.h
96
OwnPtr<HDC>
m_doubleBufferDC
;
WebView.cpp
260
if (!
m_doubleBufferDC
) {
264
m_doubleBufferDC
= adoptPtr(CreateCompatibleDC(hDC));
266
SelectObject(
m_doubleBufferDC
.get(), m_doubleBufferBitmap.get());
269
paint(
m_doubleBufferDC
.get(), clipRect);
271
BitBlt(hDC, clipRect.x(), clipRect.y(), clipRect.width(), clipRect.height(),
m_doubleBufferDC
.get(), clipRect.x(), clipRect.y(), SRCCOPY);
Completed in 255 milliseconds