Index: src/gpu/gl/GrGLPath.cpp |
diff --git a/src/gpu/gl/GrGLPath.cpp b/src/gpu/gl/GrGLPath.cpp |
index 6f158cdea9bc9ee4470c89d2fe10ba89e52b2a22..930ec4a8f67b1938403a96ff965793f3a70239e8 100644 |
--- a/src/gpu/gl/GrGLPath.cpp |
+++ b/src/gpu/gl/GrGLPath.cpp |
@@ -85,7 +85,7 @@ void GrGLPath::InitPathObject(GrGpuGL* gpu, |
GrGLuint pathID, |
const SkPath& skPath, |
const SkStrokeRec& stroke) { |
- GrGLPathRendering* pr = gpu->pathRendering(); |
+ GrGLPathRendering* pr = gpu->glPathRendering(); |
SkSTArray<16, GrGLubyte, true> pathCommands; |
SkSTArray<16, SkPoint, true> pathPoints; |
@@ -121,7 +121,7 @@ void GrGLPath::InitPathObject(GrGpuGL* gpu, |
GrGLPath::GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke) |
: INHERITED(gpu, kIsWrapped, path, stroke), |
- fPathID(gpu->pathRendering()->genPaths(1)) { |
+ fPathID(gpu->glPathRendering()->genPaths(1)) { |
SkASSERT(!path.isEmpty()); |
InitPathObject(gpu, fPathID, fSkPath, stroke); |
@@ -138,7 +138,7 @@ GrGLPath::~GrGLPath() { |
void GrGLPath::onRelease() { |
if (0 != fPathID && !this->isWrapped()) { |
- static_cast<GrGpuGL*>(this->getGpu())->pathRendering()->deletePaths(fPathID, 1); |
+ static_cast<GrGpuGL*>(this->getGpu())->glPathRendering()->deletePaths(fPathID, 1); |
fPathID = 0; |
} |