Home
last modified time | relevance | path

Searched refs:pathID (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/gpu/gl/
DGrGLPath.cpp99 inline bool init_path_object_for_general_path(GrGLGpu* gpu, GrGLuint pathID, in init_path_object_for_general_path() argument
188 PathCommands(pathID, pathCommands.count(), pathCommands.begin(), in init_path_object_for_general_path()
211 bool GrGLPath::InitPathObjectPathDataCheckingDegenerates(GrGLGpu* gpu, GrGLuint pathID, in InitPathObjectPathDataCheckingDegenerates() argument
213 return init_path_object_for_general_path<true>(gpu, pathID, skPath); in InitPathObjectPathDataCheckingDegenerates()
217 GrGLuint pathID, in InitPathObjectPathData() argument
246 GR_GL_CALL(gpu->glInterface(), PathCommands(pathID, pathCommands.count(), &pathCommands[0], in InitPathObjectPathData()
252 SkAssertResult(init_path_object_for_general_path<false>(gpu, pathID, skPath)); in InitPathObjectPathData()
255 void GrGLPath::InitPathObjectStroke(GrGLGpu* gpu, GrGLuint pathID, const SkStrokeRec& stroke) { in InitPathObjectStroke() argument
258 PathParameterf(pathID, GR_GL_PATH_STROKE_WIDTH, SkScalarToFloat(stroke.getWidth()))); in InitPathObjectStroke()
260 PathParameterf(pathID, GR_GL_PATH_MITER_LIMIT, SkScalarToFloat(stroke.getMiter()))); in InitPathObjectStroke()
[all …]
DGrGLPath.h26 GrGLuint pathID,
29 GrGLuint pathID,
31 static void InitPathObjectStroke(GrGLGpu*, GrGLuint pathID, const SkStrokeRec&);
33 static void InitPathObjectEmptyPath(GrGLGpu*, GrGLuint pathID);
37 GrGLuint pathID() const { return fPathID; } in pathID() function
DGrGLPathRendering.cpp140 GL_CALL(StencilFillPath(glPath->pathID(), fillMode, writeMask)); in onStencilPath()
143 GL_CALL(StencilStrokePath(glPath->pathID(), 0xffff, writeMask)); in onStencilPath()
165 GL_CALL(StencilFillPath(glPath->pathID(), fillMode, writeMask)); in onDrawPath()
167 GL_CALL(StencilThenCoverStrokePath(glPath->pathID(), 0xffff, writeMask, in onDrawPath()
170 GL_CALL(StencilThenCoverFillPath(glPath->pathID(), fillMode, writeMask, in onDrawPath()
/external/skia/src/core/
DSkPictureRecord.cpp361 int pathID = this->addPathToHeap(path); in onClipPath() local
362 this->recordClipPath(pathID, op, kSoft_ClipEdgeStyle == edgeStyle); in onClipPath()
366 size_t SkPictureRecord::recordClipPath(int pathID, SkClipOp op, bool doAA) { in recordClipPath() argument
375 this->addInt(pathID); in recordClipPath()
DSkPictureRecord.h223 size_t recordClipPath(int pathID, SkClipOp op, bool doAA);
/external/skia/src/svg/
DSkSVGDevice.cpp773 SkString pathID = fResourceBucket->addPath(); in drawTextOnPath() local
778 pathElement.addAttribute("id", pathID); in drawTextOnPath()
793 textPathElement.addAttribute("xlink:href", SkStringPrintf("#%s", pathID.c_str())); in drawTextOnPath()