IMDraw: change default point color to (1, 1, 1, 1) (was (0, 0, 0, 0))

This commit is contained in:
faiface 2017-05-06 22:57:55 +02:00
parent ec4f5e3663
commit b333cd2e0b
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ func (imd *IMDraw) Clear() {
func (imd *IMDraw) Reset() {
imd.points = nil
imd.opts = point{}
imd.Color(pixel.Alpha(1))
imd.Precision(64)
}