This commit is contained in:
Lars Hoogestraat 2021-01-10 13:30:02 +01:00
parent fd7c59452f
commit e3e5c8c224
1 changed files with 2 additions and 2 deletions

View File

@ -21,10 +21,10 @@ type RGB565 struct {
Rect image.Rectangle Rect image.Rectangle
} }
//Model is the Model for RGB565 colors. // Model is the model for RGB565 colors.
var Model = color.ModelFunc(rgb565Model) var Model = color.ModelFunc(rgb565Model)
//Color represents a RGB565 color. // Color represents a RGB565 color.
type Color struct { type Color struct {
RGB565 uint16 RGB565 uint16
} }