shareable: Refactoring

This commit is contained in:
Hajime Hoshi 2020-11-14 13:15:42 +09:00
parent d179dab314
commit 257d747f7d

View File

@ -285,6 +285,7 @@ func TestExtend(t *testing.T) {
const w0, h0 = 100, 100 const w0, h0 = 100, 100
img0 := NewImage(w0, h0) img0 := NewImage(w0, h0)
defer img0.MarkDisposed() defer img0.MarkDisposed()
p0 := make([]byte, 4*w0*h0) p0 := make([]byte, 4*w0*h0)
for i := 0; i < w0*h0; i++ { for i := 0; i < w0*h0; i++ {
p0[4*i] = byte(i) p0[4*i] = byte(i)
@ -293,7 +294,6 @@ func TestExtend(t *testing.T) {
p0[4*i+3] = byte(i) p0[4*i+3] = byte(i)
} }
img0.ReplacePixels(p0) img0.ReplacePixels(p0)
defer img0.MarkDisposed()
const w1, h1 = minImageSizeForTesting + 1, 100 const w1, h1 = minImageSizeForTesting + 1, 100
img1 := NewImage(w1, h1) img1 := NewImage(w1, h1)