2020-06-29 00:41:58 -04:00
|
|
|
package d2interface
|
2020-01-31 23:18:11 -05:00
|
|
|
|
2020-04-11 14:56:47 -04:00
|
|
|
// Filter represents the type of texture filter to be used when an image is magnified or minified.
|
2020-01-31 23:18:11 -05:00
|
|
|
type Filter int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// FilterDefault represents the default filter.
|
|
|
|
FilterDefault Filter = 0
|
|
|
|
|
|
|
|
// FilterNearest represents nearest (crisp-edged) filter
|
2020-02-01 21:51:49 -05:00
|
|
|
FilterNearest = Filter(1)
|
2020-01-31 23:18:11 -05:00
|
|
|
|
|
|
|
// FilterLinear represents linear filter
|
2020-02-01 21:51:49 -05:00
|
|
|
FilterLinear = Filter(2)
|
2020-01-31 23:18:11 -05:00
|
|
|
)
|