Skip to content

Commit

Permalink
change default MinFilter to MinLinear
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal committed Mar 26, 2019
1 parent 1a8237d commit 8193dfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,12 @@ func (m *MagFilter) MarshalJSON() ([]byte, error) {
type MinFilter uint16

const (
// MinLinear corresponds to a linear minification filter.
MinLinear MinFilter = iota
// MinNearestMipMapLinear corresponds to a nearest mipmap linear minification filter.
MinNearestMipMapLinear MinFilter = iota
MinNearestMipMapLinear
// MinNearest corresponds to a nearest minification filter.
MinNearest
// MinLinear corresponds to a linear minification filter.
MinLinear
// MinNearestMipMapNearest corresponds to a nearest mipmap nearest minification filter.
MinNearestMipMapNearest
// MinLinearMipMapNearest corresponds to a linear mipmap nearest minification filter.
Expand Down

0 comments on commit 8193dfa

Please sign in to comment.