HomeSort by relevance Sort by last modified time
    Searched full:graphicscontext (Results 176 - 200 of 580) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/platform/wince/
DragImageWinCE.cpp 25 #include "GraphicsContext.h"
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarPart.cpp 162 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const IntRect& rect)
169 if (graphicsContext->paintingDisabled())
173 PaintInfo paintInfo(graphicsContext, rect, PaintPhaseBlockBackground, false, 0, 0);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMasker.cpp 29 #include "GraphicsContext.h"
83 bool RenderSVGResourceMasker::applyResource(RenderObject* object, RenderStyle*, GraphicsContext*& context, unsigned short resourceMode)
112 GraphicsContext* maskImageContext = maskerData->maskImage->context();
132 GraphicsContext* maskImageContext = maskerData->maskImage->context();
RenderSVGResourceClipper.cpp 29 #include "GraphicsContext.h"
94 bool RenderSVGResourceClipper::applyResource(RenderObject* object, RenderStyle*, GraphicsContext*& context, unsigned short resourceMode)
107 bool RenderSVGResourceClipper::pathOnlyClipping(GraphicsContext* context, const FloatRect& objectBoundingBox)
159 const FloatRect& repaintRect, GraphicsContext* context)
182 GraphicsContext* maskContext = clipperData->clipMaskImage->context();
216 GraphicsContext* maskContext = clipperData->clipMaskImage->context();
  /external/webkit/Source/WebKit/android/plugins/
PluginViewBridgeAndroid.cpp 31 void PluginViewBridgeAndroid::draw(GraphicsContext* gc,
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.h 40 class GraphicsContext;
52 virtual void draw(WebCore::GraphicsContext&) = 0;
75 virtual void draw(WebCore::GraphicsContext&);
93 virtual void draw(WebCore::GraphicsContext&);
  /external/webkit/Source/WebKit2/Shared/API/c/cg/
WKGraphicsContextCG.h 36 WK_EXPORT CGContextRef WKGraphicsContextGetCGContext(WKGraphicsContextRef graphicsContext);
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
FindIndicatorWindow.mm 31 #import <WebCore/GraphicsContext.h>
58 GraphicsContext graphicsContext(static_cast<CGContextRef>([[NSGraphicsContext currentContext] graphicsPort]));
60 _findIndicator->draw(graphicsContext, enclosingIntRect(rect));
  /external/webkit/Source/WebKit2/UIProcess/mac/
BackingStoreMac.mm 33 #import <WebCore/GraphicsContext.h>
104 GraphicsContext graphicsContext(context);
112 bitmap->paint(graphicsContext, updateRect.location(), srcRect);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.cpp 173 void LayerTreeHostCA::paintContents(const GraphicsLayer* graphicsLayer, GraphicsContext& graphicsContext, GraphicsLayerPaintingPhase, const IntRect& clipRect)
176 m_webPage->drawRect(graphicsContext, clipRect);
181 m_webPage->drawPageOverlay(graphicsContext, clipRect);
  /external/webkit/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 37 #include "GraphicsContext.h"
60 void drawOutlinedQuad(GraphicsContext& context, const FloatQuad& quad, const Color& fillColor)
85 void drawOutlinedQuadWithClip(GraphicsContext& context, const FloatQuad& quad, const FloatQuad& clipQuad, const Color& fillColor)
94 void drawHighlightForBox(GraphicsContext& context, const FloatQuad& contentQuad, const FloatQuad& paddingQuad, const FloatQuad& borderQuad, const FloatQuad& marginQuad)
111 void drawHighlightForLineBoxesOrSVGRenderer(GraphicsContext& context, const Vector<FloatQuad>& lineBoxQuads)
125 void drawElementTitle(GraphicsContext& context, Node* node, const IntRect& boundingBox, const IntRect& anchorBox, const FloatRect& overlayRect, WebCore::Settings* settings)
215 void DrawNodeHighlight(GraphicsContext& context, Node* node)
  /external/webkit/Source/WebCore/page/mac/
FrameMac.mm 38 #import "GraphicsContext.h"
269 GraphicsContext graphicsContext((CGContextRef)[[NSGraphicsContext currentContext] graphicsPort]);
270 graphicsContext.save();
271 graphicsContext.translate(-rect.origin.x, -rect.origin.y);
272 m_view->paintContents(&graphicsContext, IntRect(rect));
273 graphicsContext.restore();
  /external/webkit/Source/WebCore/platform/gtk/
WidgetRenderingContext.cpp 34 #include "GraphicsContext.h"
69 WidgetRenderingContext::WidgetRenderingContext(GraphicsContext* graphicsContext, const IntRect& targetRect)
70 : m_graphicsContext(graphicsContext)
79 if (!theme->m_themePartsHaveRGBAColormap && graphicsContext->gdkWindow()) {
80 m_paintRect = graphicsContext->getCTM().mapRect(targetRect);
81 m_target = graphicsContext->gdkWindow();
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 227 class GraphicsContext {
228 WTF_MAKE_NONCOPYABLE(GraphicsContext); WTF_MAKE_FAST_ALLOCATED;
230 GraphicsContext(PlatformGraphicsContext*);
231 ~GraphicsContext();
302 /** platform-specific factory method to return a bitmap graphicscontext,
307 static GraphicsContext* createOffscreenContext(int width, int height);
469 GraphicsContext(HDC, bool hasAlpha = false); // FIXME: To be removed.
477 // FIXME: This is a layering violation. GraphicsContext shouldn't know
479 // to be passed as a parameter alongside the GraphicsContext, but doing
531 GraphicsContext(cairo_t*)
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasStyle.cpp 36 #include "GraphicsContext.h"
230 void CanvasStyle::applyStrokeColor(GraphicsContext* context)
239 // FIXME: Do this through platform-independent GraphicsContext API.
267 void CanvasStyle::applyFillColor(GraphicsContext* context)
276 // FIXME: Do this through platform-independent GraphicsContext API.
  /external/webkit/Source/WebCore/platform/graphics/cg/
PathCG.cpp 34 #include "GraphicsContext.h"
146 GraphicsContext gc(context);
178 GraphicsContext graphicsContext(context);
179 applier->strokeStyle(&graphicsContext);
ImageBufferCG.cpp 33 #include "GraphicsContext.h"
156 m_context.set(new GraphicsContext(cgContext.get()));
171 GraphicsContext* ImageBuffer::context() const
200 void ImageBuffer::draw(GraphicsContext* destContext, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect,
219 void ImageBuffer::drawPattern(GraphicsContext* destContext, const FloatRect& srcRect, const AffineTransform& patternTransform,
237 void ImageBuffer::clip(GraphicsContext* contextToClip, const FloatRect& rect) const
GradientCG.cpp 106 void Gradient::fill(GraphicsContext* context, const FloatRect& rect)
112 void Gradient::paint(GraphicsContext* context)
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 35 #include "GraphicsContext.h"
87 m_context.set(new GraphicsContext(&m_data.m_platformContext));
101 GraphicsContext* ImageBuffer::context() const
117 void ImageBuffer::clip(GraphicsContext* context, const FloatRect& maskRect) const
122 void ImageBuffer::draw(GraphicsContext* context, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect,
130 void ImageBuffer::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform,
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontWinCE.cpp 38 #include "GraphicsContext.h"
65 void Font::drawGlyphs(GraphicsContext* graphicsContext, const SimpleFontData* fontData, const GlyphBuffer& glyphBuffer,
68 graphicsContext->drawText(fontData, glyphBuffer, from, numGlyphs, point);
208 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point,
238 void Font::drawEmphasisMarksForComplexText(GraphicsContext* /* context */, const TextRun& /* run */, const AtomicString& /* mark */, const FloatPoint& /* point */, int /* from */, int /* to */) const
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 31 #include "GraphicsContext.h"
102 static void drawLineForBoxSide(GraphicsContext* graphicsContext, int x1, int y1,
107 graphicsContext->setFillColor(color, graphicsContext->fillColorSpace());
111 bool wasAntialiased = graphicsContext->shouldAntialias();
112 graphicsContext->setShouldAntialias(antialias);
113 graphicsContext->drawRect(IntRect(x1, y1, x2 - x1, y2 - y1));
114 graphicsContext->setShouldAntialias(wasAntialiased);
145 graphicsContext->drawConvexPolygon(4, quad, antialias)
    [all...]
  /external/webkit/Source/WebCore/page/win/
FrameCGWin.cpp 42 static void drawRectIntoContext(IntRect rect, FrameView* view, GraphicsContext* gc)
70 GraphicsContext gc(context);
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.h 81 virtual void paint(GraphicsContext*, const IntRect&);
82 virtual void paintCurrentFrameInContext(GraphicsContext*, const IntRect&);
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
MediaPlayerPrivateGStreamer.h 41 class GraphicsContext;
106 void paint(GraphicsContext*, const IntRect&);
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IconGtk.cpp 33 #include "GraphicsContext.h"
114 void Icon::paint(GraphicsContext* context, const IntRect& rect)

Completed in 335 milliseconds

1 2 3 4 5 6 78 91011>>