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

Unified Diff: tests/html/canvasrenderingcontext2d_test.dart

Issue 12774014: Update drawImage to create more fast paths. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/canvasrenderingcontext2d_test.dart
diff --git a/tests/html/canvasrenderingcontext2d_test.dart b/tests/html/canvasrenderingcontext2d_test.dart
index 5069680c13f950c588af93882428942f5e7f9e1c..4c32b8366ff6412a01a015bfc34c1f36a771a4b9 100644
--- a/tests/html/canvasrenderingcontext2d_test.dart
+++ b/tests/html/canvasrenderingcontext2d_test.dart
@@ -282,7 +282,7 @@ main() {
var img = new ImageElement();
img.onLoad.listen(expectAsync1((_) {
- context.drawImageAtScale(img, new Rect(50, 50, 20, 20));
+ context.drawImageToRect(img, new Rect(50, 50, 20, 20));
expectPixelFilled(50, 50);
expectPixelFilled(55, 55);
@@ -312,7 +312,7 @@ main() {
// This will take a 6x6 square from the first canvas from position 2,2
// and then scale it to a 20x20 square and place it to the second canvas
// at 50,50.
- context.drawImageAtScale(img, new Rect(50, 50, 20, 20),
+ context.drawImageToRect(img, new Rect(50, 50, 20, 20),
sourceRect: new Rect(2, 2, 6, 6));
checkPixel(readPixel(50, 50), [255, 0, 0, 255]);
@@ -424,7 +424,7 @@ main() {
// var video = new VideoElement();
//
// video.onLoadedData.listen(expectAsync1((_) {
-// context.drawImageAtScale(video, new Rect(50, 50, 20, 20));
+// context.drawImageToRect(video, new Rect(50, 50, 20, 20));
//
// expectPixelFilled(50, 50);
// expectPixelFilled(55, 55);
@@ -456,7 +456,7 @@ main() {
// var video = new VideoElement();
//
// video.onLoadedData.listen(expectAsync1((_) {
-// context.drawImageAtScale(video, new Rect(50, 50, 20, 20),
+// context.drawImageToRect(video, new Rect(50, 50, 20, 20),
// sourceRect: new Rect(2, 2, 6, 6));
//
// expectPixelFilled(50, 50);
@@ -498,7 +498,7 @@ main() {
});
test('drawImage from canvas element with 5 params', () {
// Draw an image to the canvas from a canvas element.
- context.drawImageAtScale(otherCanvas, new Rect(50, 50, 20, 20));
+ context.drawImageToRect(otherCanvas, new Rect(50, 50, 20, 20));
expectPixelFilled(50, 50);
expectPixelFilled(55, 55);
@@ -513,7 +513,7 @@ main() {
// Draw an image to the canvas from a canvas element.
otherContext.fillStyle = "blue";
otherContext.fillRect(5, 5, 5, 5);
- context.drawImageAtScale(otherCanvas, new Rect(50, 50, 20, 20),
+ context.drawImageToRect(otherCanvas, new Rect(50, 50, 20, 20),
sourceRect: new Rect(2, 2, 6, 6));
checkPixel(readPixel(50, 50), [255, 0, 0, 255]);
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698