aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleTextureDomain.cpp
diff options
context:
space:
mode:
authorGravatar reed <reed@chromium.org>2015-07-16 06:10:02 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-16 06:10:02 -0700
commit6fb0b6779e40ce05c20cf279f0ecff31fa3cd60d (patch)
treebd36f1f0315eae23db39853f1a17917cc680fc20 /samplecode/SampleTextureDomain.cpp
parent18a240d15ca132fab01ba179bd1165d6a182f1cf (diff)
guard to remove DrawBitmapRectFlags
Diffstat (limited to 'samplecode/SampleTextureDomain.cpp')
-rw-r--r--samplecode/SampleTextureDomain.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/samplecode/SampleTextureDomain.cpp b/samplecode/SampleTextureDomain.cpp
index 2794a06956..c798f42922 100644
--- a/samplecode/SampleTextureDomain.cpp
+++ b/samplecode/SampleTextureDomain.cpp
@@ -53,7 +53,7 @@ protected:
// the constrained texture domain.
srcRect.setXYWH(1, 1, 3, 3);
dstRect.setXYWH(5, 5, 305, 305);
- canvas->drawBitmapRectToRect(fBM, &srcRect, dstRect, &paint);
+ canvas->drawBitmapRect(fBM, &srcRect, dstRect, &paint);
// Test that bitmap draws across separate devices also respect
// the constrainted texture domain.
@@ -64,8 +64,7 @@ protected:
srcRect.setXYWH(1, 1, 3, 3);
dstRect.setXYWH(1, 1, 3, 3);
- surface->getCanvas()->drawBitmapRectToRect(fBM, &srcRect, dstRect,
- &paint);
+ surface->getCanvas()->drawBitmapRect(fBM, &srcRect, dstRect, &paint);
SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
@@ -98,7 +97,7 @@ protected:
dstRect.setXYWH(-150, -150, 300, 300);
canvas->translate(550, 550);
canvas->rotate(45);
- canvas->drawBitmapRectToRect(fBM, NULL, dstRect, &paint);
+ canvas->drawBitmapRect(fBM, dstRect, &paint);
}
private:
typedef SkView INHERITED;