]> Cypherpunks repositories - gostls13.git/commitdiff
fix build: update exp/draw/draw_test.go
authorRobert Griesemer <gri@golang.org>
Tue, 10 Aug 2010 17:11:28 +0000 (10:11 -0700)
committerRobert Griesemer <gri@golang.org>
Tue, 10 Aug 2010 17:11:28 +0000 (10:11 -0700)
R=nigeltao
CC=golang-dev
https://golang.org/cl/1962041

src/pkg/exp/draw/draw_test.go

index 5b503f8de6ae211f6e463df1adcde346162293ed..03a4b018efc75ee2ec41e770725a7ec6138e9c73 100644 (file)
@@ -137,7 +137,7 @@ loop:
                        continue
                }
                // Draw the same combination onto the actual dst using the optimized DrawMask implementation.
-               DrawMask(dst, Rect(b.Min.X, b.Min.Y, b.Max.X, b.Max.Y), test.src, ZP, test.mask, ZP, test.op)
+               DrawMask(dst, image.Rect(b.Min.X, b.Min.Y, b.Max.X, b.Max.Y), test.src, image.ZP, test.mask, image.ZP, test.op)
                // Check that the resultant pixel at (8, 8) matches what we expect
                // (the expected value can be verified by hand).
                if !eq(dst.At(8, 8), test.expected) {
@@ -164,7 +164,7 @@ func TestIssue836(t *testing.T) {
        b.Set(1, 0, image.RGBAColor{0, 0, 5, 5})
        b.Set(0, 1, image.RGBAColor{0, 5, 0, 5})
        b.Set(1, 1, image.RGBAColor{5, 0, 0, 5})
-       Draw(a, Rect(0, 0, 1, 1), b, Pt(1, 1))
+       Draw(a, image.Rect(0, 0, 1, 1), b, image.Pt(1, 1))
        if !eq(image.RGBAColor{5, 0, 0, 5}, a.At(0, 0)) {
                t.Errorf("Issue 836: want %v got %v", image.RGBAColor{5, 0, 0, 5}, a.At(0, 0))
        }