HomeSort by relevance Sort by last modified time
    Searched refs:GrPath (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/skia/src/gpu/
GrPath.h 17 class GrPath : public GrGpuResource {
19 SK_DECLARE_INST_COUNT(GrPath);
24 GrPath(GrGpu* gpu, bool isWrapped, const SkPath& skPath, const SkStrokeRec& stroke)
GrPathRendering.h 17 class GrPath;
72 virtual GrPath* createPath(const SkPath&, const SkStrokeRec&) = 0;
114 virtual void stencilPath(const GrPath*, SkPath::FillType) = 0;
115 virtual void drawPath(const GrPath*, SkPath::FillType) = 0;
GrStencilAndCoverPathRenderer.cpp 14 #include "GrPath.h"
54 static GrPath* get_gr_path(GrGpu* gpu, const SkPath& skPath, const SkStrokeRec& stroke) {
56 GrResourceKey resourceKey = GrPath::ComputeKey(skPath, stroke);
57 SkAutoTUnref<GrPath> path(static_cast<GrPath*>(ctx->findAndRefCachedResource(resourceKey)));
69 SkAutoTUnref<GrPath> p(get_gr_path(fGpu, path, stroke));
83 SkAutoTUnref<GrPath> p(get_gr_path(fGpu, path, stroke));
GrInOrderDrawBuffer.h 16 #include "GrPath.h"
117 StencilPath(const GrPath* path) : fPath(path) {}
119 const GrPath* path() const { return fPath.get(); }
124 GrPendingIOResource<const GrPath, GrIORef::kRead_IOType> fPath;
128 DrawPath(const GrPath* path) : fPath(path) {}
130 const GrPath* path() const { return fPath.get(); }
136 GrPendingIOResource<const GrPath, GrIORef::kRead_IOType> fPath;
204 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
205 virtual void onDrawPath(const GrPath*, SkPath::FillType,
256 StencilPath* recordStencilPath(const GrPath*);
    [all...]
GrPath.cpp 8 #include "GrPath.h"
16 GrResourceKey GrPath::ComputeKey(const SkPath& path, const SkStrokeRec& stroke) {
28 uint64_t GrPath::ComputeStrokeKey(const SkStrokeRec& stroke) {
GrStencilAndCoverTextContext.h 17 class GrPath;
GrDrawTarget.h 29 class GrPath;
320 void stencilPath(const GrPath*, SkPath::FillType fill);
326 void drawPath(const GrPath*, SkPath::FillType fill);
493 void executeDrawPath(const GrPath* path, SkPath::FillType fill,
    [all...]
GrGpu.h 18 class GrPath;
473 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
474 virtual void onDrawPath(const GrPath*, SkPath::FillType,
GrGpu.cpp 342 void GrGpu::onStencilPath(const GrPath* path, SkPath::FillType fill) {
354 void GrGpu::onDrawPath(const GrPath* path, SkPath::FillType fill,
GrInOrderDrawBuffer.cpp 361 void GrInOrderDrawBuffer::onStencilPath(const GrPath* path, SkPath::FillType fill) {
371 void GrInOrderDrawBuffer::onDrawPath(const GrPath* path,
    [all...]
GrStencilAndCoverTextContext.cpp 11 #include "GrPath.h"
227 keyData[1] = GrPath::ComputeStrokeKey(stroke);
GrDrawTarget.cpp 14 #include "GrPath.h"
529 void GrDrawTarget::stencilPath(const GrPath* path, SkPath::FillType fill) {
537 void GrDrawTarget::drawPath(const GrPath* path, SkPath::FillType fill) {
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLPath.h 12 #include "../GrPath.h"
23 class GrGLPath : public GrPath {
44 typedef GrPath INHERITED;
GrGLPathRendering.h 36 virtual GrPath* createPath(const SkPath&, const SkStrokeRec&) SK_OVERRIDE;
42 virtual void stencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
43 virtual void drawPath(const GrPath*, SkPath::FillType) SK_OVERRIDE;
GrGLPathRendering.cpp 95 GrPath* GrGLPathRendering::createPath(const SkPath& inPath, const SkStrokeRec& stroke) {
155 void GrGLPathRendering::stencilPath(const GrPath* path, SkPath::FillType fill) {
169 void GrGLPathRendering::drawPath(const GrPath* path, SkPath::FillType fill) {
  /external/chromium_org/third_party/skia/include/gpu/
GrContext.h 34 class GrPath;
    [all...]
  /external/chromium_org/skia/
skia_library.target.darwin-arm.mk 351 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.darwin-arm64.mk 351 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.darwin-mips.mk 351 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.darwin-mips64.mk 351 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.darwin-x86.mk 352 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.darwin-x86_64.mk 352 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.linux-arm.mk 351 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.linux-arm64.mk 351 third_party/skia/src/gpu/GrPath.cpp \
skia_library.target.linux-mips.mk 351 third_party/skia/src/gpu/GrPath.cpp \

Completed in 411 milliseconds

1 2