Texture_anisotropy_supported - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Notation
Description
Gets whether or not anisotropic filtering is supported by the present hardware, and returns the result.
Parameters
- none This function has no parameters.
Return Values
Returns boolean (true or false) whether or not anisotropic filtering is available.
Example Call
supported = texture_anisotropy_supported();
if (supported) {
// anisotropic filtering is supported
} else {
// anisotropic filtering is not supported
}
Demonstrates testing whether or not anisotropic filtering is available. NOTOC