Update comment

This commit is contained in:
Hajime Hoshi 2015-01-05 23:55:40 +09:00
parent f631653681
commit b69c526613

View File

@ -173,6 +173,9 @@ func (i *Image) Fill(clr color.Color) (err error) {
// (i.e. the whole source image)
// GeoM: Identity matrix
// ColorM: Identity matrix (that changes no colors)
//
// Be careful that this method is potentially slow.
// It would be better if you could call this method fewer times.
func (i *Image) DrawImage(image *Image, options *DrawImageOptions) (err error) {
return i.drawImage(image.inner, options)
}