fix golint for gc.go

This commit is contained in:
Stani 2015-07-08 00:42:00 +02:00
parent 8c8e0b1760
commit dbf591ab97
1 changed files with 4 additions and 0 deletions

4
gc.go
View File

@ -8,13 +8,17 @@ import (
"image/color"
)
// FillRule defines the type for fill rules
type FillRule int
const (
// FillRuleEvenOdd defines the even odd filling rule
FillRuleEvenOdd FillRule = iota
// FillRuleWinding defines the non zero winding rule
FillRuleWinding
)
// GraphicContext describes the interface for the various backends (images, pdf, opengl, ...)
type GraphicContext interface {
Path
// Create a new path