mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
parent
0660c4ea8a
commit
4c5f019db3
@ -3966,3 +3966,15 @@ func TestImageColorMScale(t *testing.T) {
|
||||
t.Errorf("got: %v, want: %v", got, want)
|
||||
}
|
||||
}
|
||||
|
||||
// Issue #2428
|
||||
func TestImageSetAndSubImage(t *testing.T) {
|
||||
const w, h = 16, 16
|
||||
img := ebiten.NewImage(w, h)
|
||||
img.Set(1, 1, color.RGBA{0xff, 0, 0, 0xff})
|
||||
got := img.SubImage(image.Rect(0, 0, w, h)).At(1, 1).(color.RGBA)
|
||||
want := color.RGBA{0xff, 0, 0, 0xff}
|
||||
if got != want {
|
||||
t.Errorf("got: %v, want: %v", got, want)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user