Texture_get_interpolation - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Gets whether or not linear texture interpolation is enabled and returns the result.
Parameters
Parameter | Description |
---|---|
none | this function has no parameters |
Return Values
boolean: Returns whether or not texture interpolation is enabled.
Example Call
// demonstrates checking if texture interpolation is enabled
if (texture_get_interpolation()) {
// is enabled
} else {
// is not enabled
}
NOTOC