mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
60e6fcb7ac
* 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
16 lines
351 B
Go
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
|
|
)
|