summaryrefslogtreecommitdiff
path: root/src/image
Commit message (Collapse)AuthorAgeFilesLines
* image/jpeg: handle Read returning n > 0, err != nil in d.fillRuss Cox2014-11-222-0/+49
| | | | | | | | | Fixes issue 9127. LGTM=r R=bradfitz, r CC=golang-codereviews, nigeltao https://codereview.appspot.com/178120043
* image/gif: don't let the per-frame transparent index modify the globalNigel Tao2014-09-222-10/+61
| | | | | | | | | | | palette. Fixes issue 7993. LGTM=r R=r CC=golang-codereviews, james.jdunne https://codereview.appspot.com/138600043
* image/gif: fix GIF encoding of sub-images.Nigel Tao2014-09-182-4/+37
| | | | | | | | | | | | benchmark old ns/op new ns/op delta BenchmarkEncode 8641055 8646829 +0.07% Fixes issue 7792. LGTM=r R=r CC=dbathgate, golang-codereviews https://codereview.appspot.com/147730043
* image/jpeg: reject invalid Ta and Td values.Nigel Tao2014-09-151-0/+6
| | | | | | | | | Fixes issue 8693. LGTM=crawshaw R=crawshaw CC=golang-codereviews https://codereview.appspot.com/141470043
* build: move package sources from src/pkg to srcRuss Cox2014-09-08113-0/+12229
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.