1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-28 06:06:29 -04:00
OpenDiablo2/d2common/d2interface/filter.go
Gürkan Kaymak ae6bfb839e
Lint fixes for the following packages (#505)
* fixed lint issues of the package d2core/d2inventory

* fixed lint issues of the d2script package

* fixed lint issues of the d2common/d2interface package

* fixed lint issues of the d2common/d2resource package

* fixed lint issues of the d2core/d2term package

* fixed conflict errors
2020-06-30 17:04:41 -04:00

16 lines
356 B
Go

package d2interface
// 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
)