From 972eea89db4f9acee51232e56925e5075cc87583 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 2 Aug 2018 00:42:43 +0900 Subject: [PATCH] affine: Fix some functions in GeoM test Fixes #657 --- image_test.go | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/image_test.go b/image_test.go index 121aa941c..976b00d39 100644 --- a/image_test.go +++ b/image_test.go @@ -861,3 +861,51 @@ func TestSprites(t *testing.T) { } } } + +func TestMipmap(t *testing.T) { + ceilDiv := func(x, y int) int { + return int(math.Ceil(float64(x) / float64(y))) + } + + src, _, err := openEbitenImage() + if err != nil { + t.Fatal(err) + return + } + w, h := src.Size() + + l1, _ := NewImage(ceilDiv(w, 2), ceilDiv(h, 2), FilterDefault) + op := &DrawImageOptions{} + op.GeoM.Scale(1/2.0, 1/2.0) + op.Filter = FilterLinear + l1.DrawImage(src, op) + + l1w, l1h := l1.Size() + l2, _ := NewImage(ceilDiv(l1w, 2), ceilDiv(l1h, 2), FilterDefault) + op = &DrawImageOptions{} + op.GeoM.Scale(1/2.0, 1/2.0) + op.Filter = FilterLinear + l2.DrawImage(l1, op) + + gotDst, _ := NewImage(w, h, FilterDefault) + op = &DrawImageOptions{} + op.GeoM.Scale(1/5.0, 1/5.0) + op.Filter = FilterLinear + gotDst.DrawImage(src, op) + + wantDst, _ := NewImage(w, h, FilterDefault) + op = &DrawImageOptions{} + op.GeoM.Scale(4.0/5.0, 4.0/5.0) + op.Filter = FilterLinear + wantDst.DrawImage(l2, op) + + for j := 0; j < h; j++ { + for i := 0; i < h; i++ { + got := gotDst.At(i, j).(color.RGBA) + want := wantDst.At(i, j).(color.RGBA) + if !sameColors(got, want, 1) { + t.Errorf("At(%d, %d): got: %#v, want: %#v", i, j, got, want) + } + } + } +}