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

  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 65 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect) = 0;
69 return beginPaint(IntRect(0, 0, size().width(), size().height()));
TextureMapperNode.cpp 454 GraphicsContext context(m_texture->beginPaint(dirtyRect));
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.h 65 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect, bool opaque) = 0;
TextureMapperGL.cpp 229 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect);
468 PlatformGraphicsContext* BitmapTextureGL::beginPaint(const IntRect& dirtyRect)
472 return m_buffer->beginPaint(dirtyRect, m_opaque);
504 GraphicsContext context(beginPaint(IntRect(0, 0, m_textureSize.width(), m_textureSize.height())));
  /external/webkit/Source/WebCore/platform/graphics/qt/
TextureMapperQt.h 35 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect);
TextureMapperQt.cpp 50 PlatformGraphicsContext* BitmapTextureQt::beginPaint(const IntRect& dirtyRect)
188 virtual PlatformGraphicsContext* beginPaint(const IntRect& rect, bool opaque)
  /external/webkit/Source/WebCore/plugins/win/
PluginViewWin.cpp 134 // The code used to hook BeginPaint/EndPaint originally came from
139 static BYTE* beginPaint;
170 : "a" (beginPaintSysCall), "g" (lpPaint), "g" (hWnd), "m" (beginPaint)
175 // Call through to the original BeginPaint.
179 __asm call beginPaint
240 /* Disassembly of BeginPaint()
278 // we hook into BeginPaint/EndPaint to allow their normal WM_PAINT handling
281 hook("user32.dll", "BeginPaint", beginPaintSysCall, beginPaint, reinterpret_cast<const void *>(reinterpret_cast<ptrdiff_t>(hookedBeginPaint)));
403 // BeginPaint/EndPaint to make the plugin draw into the given HDC
    [all...]

Completed in 155 milliseconds