Searched defs:pathToFill (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DGraphicsContextAndroid.cpp596 void GraphicsContext::fillPath(const Path& pathToFill) argument
602 platformContext()->fillPath(pathToFill, fillRule());
H A DGraphicsOperation.h450 FillPath(const Path& pathToFill, WindRule fillRule) argument
451 : m_path(pathToFill), m_fillRule(fillRule) {}
H A DPlatformGraphicsContextSkia.cpp479 void PlatformGraphicsContextSkia::fillPath(const Path& pathToFill, WindRule fillRule) argument
481 SkPath* path = pathToFill.platformPath();
H A DPlatformGraphicsContextRecording.cpp869 void PlatformGraphicsContextRecording::fillPath(const Path& pathToFill, WindRule fillRule) argument
871 appendDrawingOperation(NEW_OP(FillPath)(pathToFill, fillRule), pathToFill.boundingRect());
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp731 void GraphicsContext::fillPath(const Path& pathToFill) argument
739 platformContext()->gpuCanvas()->fillPath(pathToFill);
743 SkPath path = *pathToFill.platformPath();

Completed in 128 milliseconds