1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-16 04:25:23 +00:00
OpenDiablo2/d2common/d2enum/filter.go
dk 60e6fcb7ac
moving enumerations out of d2interface (#552)
* moved filter constants back to d2enum

* moving key and mouse button enums into d2enum

* moving render type enum into d2enum

* moving input even priority enums into d2enum

* moving terminal enums into d2enum
2020-07-06 21:26:08 -04:00

16 lines
351 B
Go

package d2enum
// Filter represents the type of texture filter to be used when an image is magnified or minified.
type Filter int
const (
// FilterDefault represents the default filter.
FilterDefault Filter = iota
// FilterNearest represents nearest (crisp-edged) filter
FilterNearest
// FilterLinear represents linear filter
FilterLinear
)