Available since LÖVE 11.0
|
This enum is not supported in earlier versions.
|
Controls whether a Canvas has mipmaps, and its behaviour when it does.
Constants
- none
- The Canvas has no mipmaps.
- manual
- The Canvas has mipmaps. love.graphics.setCanvas can be used to render to a specific mipmap level, or Canvas:generateMipmaps can (re-)compute all mipmap levels based on the base level.
- auto
- The Canvas has mipmaps, and all mipmap levels will automatically be recomputed when switching away from the Canvas with love.graphics.setCanvas.
See Also