Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Unified Diff: src/gpu/GrOvalRenderer.cpp

Issue 19449002: Replace all instances of GrRect with SkRect. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/GrInOrderDrawBuffer.cpp ('k') | src/gpu/GrPath.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrOvalRenderer.cpp
diff --git a/src/gpu/GrOvalRenderer.cpp b/src/gpu/GrOvalRenderer.cpp
index 85526dc6b3af49f3fe48be98cb473dba1b37848a..6ea922c28b3322591e23cfb512bae5e1fbb088c7 100644
--- a/src/gpu/GrOvalRenderer.cpp
+++ b/src/gpu/GrOvalRenderer.cpp
@@ -291,7 +291,7 @@ void GrOvalRenderer::reset() {
}
bool GrOvalRenderer::drawOval(GrDrawTarget* target, const GrContext* context, bool useAA,
- const GrRect& oval, const SkStrokeRec& stroke)
+ const SkRect& oval, const SkStrokeRec& stroke)
{
if (!useAA) {
return false;
@@ -329,7 +329,7 @@ extern const GrVertexAttrib gCircleVertexAttribs[] = {
void GrOvalRenderer::drawCircle(GrDrawTarget* target,
bool useAA,
- const GrRect& circle,
+ const SkRect& circle,
const SkStrokeRec& stroke)
{
GrDrawState* drawState = target->drawState();
@@ -432,7 +432,7 @@ extern const GrVertexAttrib gEllipseVertexAttribs[] = {
bool GrOvalRenderer::drawEllipse(GrDrawTarget* target,
bool useAA,
- const GrRect& ellipse,
+ const SkRect& ellipse,
const SkStrokeRec& stroke)
{
GrDrawState* drawState = target->drawState();
« no previous file with comments | « src/gpu/GrInOrderDrawBuffer.cpp ('k') | src/gpu/GrPath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698