From 66e78922f88c657bfa8b482142528c516af54345 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 7 Jun 2016 23:50:01 +0900 Subject: [PATCH] graphics: Fix a comment --- image.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/image.go b/image.go index 86617f535..798fd9368 100644 --- a/image.go +++ b/image.go @@ -170,8 +170,7 @@ func (i *Image) Fill(clr color.Color) error { // ColorM: Identity matrix (that changes no colors) // CompositeMode: CompositeModeSourceOver (regular alpha blending) // -// Be careful that this method is potentially slow. -// It would be better if you could call this method fewer times. +// Note that this function returns immediately and actual drawing is done lazily. // // This function is concurrent-safe. func (i *Image) DrawImage(image *Image, options *DrawImageOptions) error {