HomeSort by relevance Sort by last modified time
    Searched defs:platformContext (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/WebKit2/Shared/
WebGraphicsContext.h 51 CGContextRef platformContext() { return m_platformContext.get(); }
53 cairo_t* platformContext() { return m_platformContext.get(); }
  /external/webkit/Source/WebCore/platform/graphics/cairo/
FontCairo.cpp 78 cairo_t* context = graphicsContext->platformContext()->cr();
111 PlatformContextCairo* platformContext = context->platformContext();
114 cairo_t* cr = platformContext->cr();
GraphicsContextPlatformPrivateCairo.h 53 : platformContext(newPlatformContext)
101 PlatformContextCairo* platformContext;
120 GraphicsContextPlatformPrivateToplevel(PlatformContextCairo* platformContext)
121 : GraphicsContextPlatformPrivate(platformContext)
127 delete platformContext;
GraphicsContextCairo.cpp 152 cairo_t* cairoContext = context->platformContext()->cr();
209 void GraphicsContext::platformInit(PlatformContextCairo* platformContext)
211 m_data = new GraphicsContextPlatformPrivate(platformContext);
212 if (platformContext)
213 m_data->syncContext(platformContext->cr());
225 cairo_t* cr = platformContext()->cr();
231 PlatformContextCairo* GraphicsContext::platformContext() const
233 return m_data->platformContext;
238 platformContext()->save();
252 platformContext()->restore()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
TransparencyWin.h 148 PlatformGraphicsContext* platformContext() const { return m_drawContext ? m_drawContext->platformContext() : 0; }
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 75 PlatformGraphicsContext* GraphicsContext::platformContext() const
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 62 PlatformGraphicsContext* GraphicsContext::platformContext() const
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsContextAndroid.cpp 58 GraphicsContextPlatformPrivate(PlatformGraphicsContext* platformContext)
59 : m_context(platformContext) { }
70 // Non-owning pointer to the PlatformContext.
79 PlatformGraphicsContext* pgc = gc->platformContext();
135 platformContext()->save();
142 platformContext()->restore();
162 platformContext()->drawRect(rect);
172 platformContext()->drawLine(point1, point2);
181 platformContext()->drawLineForText(pt, width);
191 platformContext()->drawLineForTextChecking(pt, width, style)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 260 if (context->platformContext()->getTextDrawingMode() != TextModeFill)
271 if (!context->platformContext()->isNativeFontRenderingAllowed())
281 PlatformContextSkia* platformContext,
289 SkCanvas* canvas = platformContext->canvas();
290 if (!platformContext->isNativeFontRenderingAllowed()) {
360 PlatformContextSkia* platformContext = context->platformContext();
361 TextDrawingModeFlags textMode = platformContext->getTextDrawingMode();
365 platformContext->setupPaintForFilling(&paint);
367 if (!platformContext->isNativeFontRenderingAllowed())
    [all...]
GraphicsContextSkia.cpp 226 setPaintingDisabled(!gc || !platformContext()->canvas());
234 PlatformGraphicsContext* GraphicsContext::platformContext() const
247 if (platformContext()->useGPU())
248 platformContext()->gpuCanvas()->save();
251 platformContext()->save();
259 if (platformContext()->useGPU())
260 platformContext()->gpuCanvas()->restore();
263 platformContext()->restore();
275 platformContext()->canvas()->saveLayerAlpha(
286 platformContext()->canvas()->restore()
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebMediaPlayerClientImpl.cpp 443 // Since we're accessing platformContext() directly we have to manually
447 PlatformGraphicsContext* platformContext = context->platformContext();
448 WebCanvas* canvas = platformContext->canvas();
450 canvas->saveLayerAlpha(0, platformContext->getNormalizedAlpha());
456 m_webMediaPlayer->paint(context->platformContext(), rect);
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 434 PlatformGraphicsContext* platformContext = m_texture->beginPaintMedia();
435 GraphicsContext context(platformContext);
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 136 PlatformGraphicsContext* GraphicsContext::platformContext() const
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 131 CGContextRef GraphicsContext::platformContext() const
142 CGContextSaveGState(platformContext());
150 CGContextRestoreGState(platformContext());
163 CGContextRef context = platformContext();
238 CGContextRef context = platformContext();
319 CGContextRef context = platformContext();
420 CGContextRef context = platformContext();
441 CGContextRef context = platformContext();
456 CGContextRef cgContext = platformContext();
471 CGContextRef cgContext = platformContext();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 285 PlatformGraphicsContext* GraphicsContext::platformContext() const
292 const QTransform& matrix = platformContext()->combinedTransform();
909 QPainter* painter = platformContext();
    [all...]

Completed in 358 milliseconds