graphics: Extend the range to 4000 in TestImageStretch (#611)

This commit is contained in:
Hajime Hoshi 2018-09-28 01:13:11 +09:00
parent 161eaa1544
commit 1a703ae34b

View File

@ -812,7 +812,7 @@ func TestImageStretch(t *testing.T) {
img0.ReplacePixels(pix)
// TODO: 4096 doesn't pass on MacBook Pro (#611).
const h = 2048
const h = 4000
img1, _ := NewImage(16, h, FilterDefault)
for i := 1; i < h; i++ {
img1.Clear()