aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/GrGLPath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/gl/GrGLPath.cpp')
-rw-r--r--src/gpu/gl/GrGLPath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/gl/GrGLPath.cpp b/src/gpu/gl/GrGLPath.cpp
index 7bf7df0741..c5a4425dcd 100644
--- a/src/gpu/gl/GrGLPath.cpp
+++ b/src/gpu/gl/GrGLPath.cpp
@@ -78,11 +78,11 @@ GrGLPath::GrGLPath(GrGpuGL* gpu, const SkPath& path) : INHERITED(gpu, kIsWrapped
path.getPoints(&pathPoints[0], pointCnt);
path.getVerbs(&pathCommands[0], verbCnt);
- GR_DEBUGCODE(int numPts = 0);
+ SkDEBUGCODE(int numPts = 0);
for (int i = 0; i < verbCnt; ++i) {
SkPath::Verb v = static_cast<SkPath::Verb>(pathCommands[i]);
pathCommands[i] = verb_to_gl_path_cmd(v);
- GR_DEBUGCODE(numPts += num_pts(v));
+ SkDEBUGCODE(numPts += num_pts(v));
}
SkASSERT(pathPoints.count() == numPts);