Difference between revisions of "CompressedData:getMipmapCount"

(Created page)
 
m
Line 13: Line 13:
  
 
== Notes ==
 
== Notes ==
Mipmap filtering cannot be activated for an [[Image]] created from a CompressedData which does not have enough mipmap levels to go down to 1x1. For example, a 256x256 image created from a CompressedData should have 8 mipmap levels or [[(Image):setMipmapFilter|Image:setMipmapFilter]] will error.
+
Mipmap filtering cannot be activated for an [[Image]] created from a CompressedData which does not have enough mipmap levels to go down to 1x1. For example, a 256x256 image created from a CompressedData should have 8 mipmap levels or [[(Image):setMipmapFilter|Image:setMipmapFilter]] will error. Most tools which can create compressed textures are able to automatically generate mipmaps for them in the same file.
  
 
== See Also ==
 
== See Also ==

Revision as of 04:08, 18 August 2013

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Gets the number of mipmap levels in the CompressedData. The base mipmap level (original image) is included in the count.

Function

Synopsis

mipmaps = CompressedData:getMipmapCount( )

Arguments

None.

Returns

number mipmaps
The number of mipmap levels stored in the CompressedData.

Notes

Mipmap filtering cannot be activated for an Image created from a CompressedData which does not have enough mipmap levels to go down to 1x1. For example, a 256x256 image created from a CompressedData should have 8 mipmap levels or Image:setMipmapFilter will error. Most tools which can create compressed textures are able to automatically generate mipmaps for them in the same file.

See Also

Other Languages