From 03c3eb783234467ed1c5ae4855792ea1bd17eeaf Mon Sep 17 00:00:00 2001 From: nfnt Date: Tue, 12 May 2015 15:47:43 +0200 Subject: [PATCH] Mention optimized access for image.NRGBA, image.NRGBA64 in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea145d8..2aefa75 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ func main() { Caveats ------- -* Optimized access routines are used for `image.RGBA`, `image.RGBA64`, `image.YCbCr`, `image.Gray`, and `image.Gray16` types. All other image types are accessed in a generic way that will result in slow processing speed. +* Optimized access routines are used for `image.RGBA`, `image.NRGBA`, `image.RGBA64`, `image.NRGBA64`, `image.YCbCr`, `image.Gray`, and `image.Gray16` types. All other image types are accessed in a generic way that will result in slow processing speed. * JPEG images are stored in `image.YCbCr`. This image format stores data in a way that will decrease processing speed. A resize may be up to 2 times slower than with `image.RGBA`.