- 09 May, 2011 3 commits
-
-
Robert Griesemer authored
When traversing parameter lists (e.g. for type checking), we want the invariant that all identifers have associated objects (even _ idents), so that we can associate a type with each object. R=rsc CC=golang-dev https://golang.org/cl/4490042
-
Rob Pike authored
Had bit test wrong on transparency; no excuses. R=nigeltao CC=golang-dev https://golang.org/cl/4526044
-
Rob Pike authored
At least, as I understand it. The spec is unclear about what happens with a local color map. R=nigeltao, r2 CC=golang-dev https://golang.org/cl/4515045
-
- 08 May, 2011 6 commits
-
-
Rob Pike authored
Fixes #1786. R=gri, adg CC=golang-dev https://golang.org/cl/4517043
-
Rob Pike authored
Fixes #1788. R=rsc, adg CC=golang-dev https://golang.org/cl/4519042
-
Alex Brainman authored
R=golang-dev, r, r2 CC=golang-dev https://golang.org/cl/4471046
-
Alex Brainman authored
This change fixes generation of "shadow" variables for bool parameters. Before the change, it was naming all bool variables with the same name of _p0. Now it calls them _p0, _p1, ... So the code could compile. R=golang-dev, r CC=golang-dev https://golang.org/cl/4479047
-
Rob Pike authored
It's incomplete but sufficient to decode 8-bit GIFs without interlacing or transparency. More to come. I'll put in more tests as the feature set grows. R=nigeltao, r2 CC=golang-dev https://golang.org/cl/4522041
-
Nigel Tao authored
instead of returning an error. For example, http://www.w3.org/Graphics/GIF/spec-gif89a.txt explicitly says that GIF encoders can use a full table as is, without needing to send a clear code. R=r, dsymonds, nigeltao_gnome, r2 CC=golang-dev https://golang.org/cl/4518041
-
- 07 May, 2011 2 commits
-
-
Anschel Schaffer-Cohen authored
Fixes #1785. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4496042
-
Joe Poirier authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/4492043
-
- 06 May, 2011 5 commits
-
-
Roger Peppe authored
This means that the -x flag can work, which could enable support for other languages (e.g. objective-C). R=iant, rsc CC=golang-dev https://golang.org/cl/4476049
-
Dmitry Chestnykh authored
R=adg, rsc1, rsc CC=golang-dev https://golang.org/cl/4491041
-
Albert Strasheim authored
R=rsc CC=golang-dev https://golang.org/cl/4396050
-
David Symonds authored
R=adg CC=golang-dev https://golang.org/cl/4485046
-
Alex Brainman authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/4477046
-
- 05 May, 2011 6 commits
-
-
Adam Langley authored
The verified chains are the chains that were actually verified. R=bradfitz CC=golang-dev https://golang.org/cl/4462046
-
Adam Langley authored
The SPKI will probably be used for identifying public keys in future HSTS specs. R=bradfitz CC=golang-dev https://golang.org/cl/4485044
-
Roger Peppe authored
R=nigeltao, r CC=golang-dev https://golang.org/cl/4471045
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/4462043
-
Benny Siegert authored
The current iteration can decode 8-bit images in grayscale, paletted, RGB, RGBA and NRGBA mode. LZW compression is implemented but does not work on my test images. Deflate (i.e. zlib) compression with or without a horizontal predictor is supported. R=nigeltao, nigeltao_gnome CC=golang-dev, mpl https://golang.org/cl/4240051
-
Dmitry Chestnykh authored
Encoder now writes tRNS chunk for non-opaque paletted images. CL includes new test images (basn3a08-trns.[ps]ng). R=nigeltao, rsc, r CC=golang-dev https://golang.org/cl/4432078
-
- 04 May, 2011 7 commits
-
-
Ross Light authored
R=rsc, bradfitz CC=golang-dev https://golang.org/cl/4436074
-
Nigel Tao authored
On my laptop, I had an 800x600 jpeg and an 800x600 png (with transparency). I timed how long it took to draw each image onto an equivalently sized, zeroed RGBA image. Previously, the jpeg took 75ms and the png took 70ms, going through the medium-fast path, i.e. func drawRGBA in draw.go. After this CL, the jpeg took 14ms, and the png took 21ms with the Over operator and 12ms with the Src operator. It's only a rough estimate basd on one image file, but it should give an idea of the order of magnitude of improvement. R=rsc, r CC=adg, golang-dev https://golang.org/cl/4468044
-
Russ Cox authored
R=adg CC=golang-dev https://golang.org/cl/4468043
-
Russ Cox authored
R=adg CC=golang-dev https://golang.org/cl/4471041
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4463042
-
Alex Brainman authored
R=golang-dev, bradfitzwork CC=golang-dev https://golang.org/cl/4466041
-
Alex Brainman authored
The file is called gotest.exe now. R=golang-dev, r CC=golang-dev https://golang.org/cl/4444090
-
- 03 May, 2011 11 commits
-
-
Brad Fitzpatrick authored
Should prevent failures on slow machines, such as: http://godashboard.appspot.com/log/47b5cae591b7ad8908704e327f3b9b41945d7d5fecfc0c8c945d5545ece1a813 Verified the change (on a fast machine) by removing the existing sleep, in which case the race happens ~50% of the time with GOMAXPROCS > 1, but recovers gracefully with retries. R=rsc CC=golang-dev https://golang.org/cl/4441089
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/4431088
-
Russ Cox authored
R=r, r2 CC=golang-dev https://golang.org/cl/4435083
-
Russ Cox authored
R=golang-dev, r, adg, r2 CC=golang-dev https://golang.org/cl/4457049
-
Robert Griesemer authored
R=iant, iant2 CC=golang-dev https://golang.org/cl/4453058
-
Russ Cox authored
Note that if you are working on the upcoming release branch you have to point your extension path to a copy of lib/codereview/codereview.py that won't change as the repository flips between release-branch and default branch. This warning should only apply to this one branch and only to rsc, but you never know. R=adg CC=golang-dev https://golang.org/cl/4446076
-
Russ Cox authored
Fixes #1748. R=golang-dev, r CC=golang-dev https://golang.org/cl/4444087
-
Brad Fitzpatrick authored
Fixes #1350 R=rsc, bradfitzwork CC=golang-dev https://golang.org/cl/4432089
-
Gustavo Niemeyer authored
Fixes #1771. R=adg, rsc1 CC=golang-dev https://golang.org/cl/4437089
-
Russ Cox authored
$ file $GOROOT/bin/{godoc,goyacc} /home/rsc/g/go/bin/godoc: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), not strpped /home/rsc/g/go/bin/goyacc: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped $ Fixes #1758. R=iant CC=golang-dev https://golang.org/cl/4428079
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4435081
-