HomeSort by relevance Sort by last modified time
    Searched refs:fPathID (Results 1 - 6 of 6) sorted by null

  /external/skia/src/gpu/gl/
GrGLPath.h 27 GrGLuint pathID() const { return fPathID; }
37 GrGLuint fPathID;
GrGLPath.cpp 92 fPathID = gpu->createGLPathObject();
114 GL_CALL(PathCommands(fPathID,
119 GL_CALL(PathParameterf(fPathID, GR_GL_PATH_STROKE_WIDTH, SkScalarToFloat(stroke.getWidth())));
120 GL_CALL(PathParameterf(fPathID, GR_GL_PATH_MITER_LIMIT, SkScalarToFloat(stroke.getMiter())));
122 GL_CALL(PathParameteri(fPathID, GR_GL_PATH_JOIN_STYLE, join));
124 GL_CALL(PathParameteri(fPathID, GR_GL_PATH_INITIAL_END_CAP, cap));
125 GL_CALL(PathParameteri(fPathID, GR_GL_PATH_TERMINAL_END_CAP, cap));
137 if (0 != fPathID && !this->isWrapped()) {
138 static_cast<GrGpuGL*>(this->getGpu())->deleteGLPathObject(fPathID);
139 fPathID = 0
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLPath.h 32 GrGLuint pathID() const { return fPathID; }
42 GrGLuint fPathID;
GrGLPath.cpp 135 fPathID(gpu->glPathRendering()->genPaths(1)) {
137 InitPathObject(gpu, fPathID, fSkPath, stroke);
151 if (0 != fPathID && !this->isWrapped()) {
152 static_cast<GrGpuGL*>(this->getGpu())->glPathRendering()->deletePaths(fPathID, 1);
153 fPathID = 0;
160 fPathID = 0;
  /external/skia/src/core/
SkMatrixClipStateMgr.cpp 20 newClip->fGeom.fPathID = pathID;
84 offset = mgr->getPicRecord()->recordClipPath(curClip.fGeom.fPathID, curClip.fOp,
SkMatrixClipStateMgr.h 168 int fPathID;

Completed in 73 milliseconds