Index: src/gpu/GrDrawTarget.h |
diff --git a/src/gpu/GrDrawTarget.h b/src/gpu/GrDrawTarget.h |
index 5b26ff5d5695ed3f7e447b1470deb22dea1db865..03e3e415b168295d0459ef39845e1ac0fbc7a744 100644 |
--- a/src/gpu/GrDrawTarget.h |
+++ b/src/gpu/GrDrawTarget.h |
@@ -601,8 +601,8 @@ public: |
bool succeeded() const { return NULL != fTarget; } |
void* vertices() const { SkASSERT(this->succeeded()); return fVertices; } |
void* indices() const { SkASSERT(this->succeeded()); return fIndices; } |
- GrPoint* positions() const { |
- return static_cast<GrPoint*>(this->vertices()); |
+ SkPoint* positions() const { |
+ return static_cast<SkPoint*>(this->vertices()); |
} |
private: |