TextureMinFilter

Texture minifying function.

Entries

Link copied to clipboard

Returns the value of the texture pixel that is nearest (in taxicab metric) to the center of the fragment being textured.

Link copied to clipboard

Returns the weighted average of the four texture pixels that are closest to the center of the fragment being textured.

Link copied to clipboard

Finds the mipmap most closely matching the size of the fragment being textured and uses the NEAREST function to calculate a texture value.

Link copied to clipboard

Finds the mipmap most closely matching the size of the fragment being textured and uses the LINEAR function to calculate a texture value.

Link copied to clipboard

Finds the two mipmaps most closely matching the size of the fragment being textured, uses the NEAREST function to calculate a texture value from each mipmap, and returns a weighted average of those two values.

Link copied to clipboard

Finds the two mipmaps most closely matching the size of the fragment being textured, uses the LINEAR function to calculate a texture value from each mipmap, and returns a weighted average of those two values.

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.

Properties

Link copied to clipboard
Link copied to clipboard