Texture_mipmapping_supported - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Gets whether or not mipmap filtering is supported by the present hardware, and returns the result.

Parameters

Parameter Description
none This function has no parameters.

Return Values

boolean: Returns whether or not mipmap filtering is available.

Example Call

// Demonstrates testing whether or not mipmap filtering is available.
supported = texture_mipmapping_supported();
if (supported) {
  // mipmap filtering is supported
} else {
  // mipmap filtering is not supported
}

NOTOC