graphics: Remove imageImpl.filter

This commit is contained in:
Hajime Hoshi 2016-09-04 01:08:33 +09:00
parent b8b7e97511
commit 99b7e85d3d

View File

@ -31,7 +31,6 @@ type imageImpl struct {
disposed bool disposed bool
width int width int
height int height int
filter Filter
restorable *restorable.Image restorable *restorable.Image
volatile bool volatile bool
screen bool screen bool
@ -46,7 +45,6 @@ func newImageImpl(width, height int, filter Filter, volatile bool) (*imageImpl,
i := &imageImpl{ i := &imageImpl{
width: width, width: width,
height: height, height: height,
filter: filter,
restorable: img, restorable: img,
volatile: volatile, volatile: volatile,
} }
@ -78,7 +76,6 @@ func newImageImplFromImage(source image.Image, filter Filter) (*imageImpl, error
i := &imageImpl{ i := &imageImpl{
width: w, width: w,
height: h, height: h,
filter: filter,
restorable: img, restorable: img,
} }
i.restorable.ReplacePixels(p) i.restorable.ReplacePixels(p)