Difference between revisions of "love.graphics.setDefaultFilter"

(Created page with "{{newin|0.9.0|090|type=function|text=It has been renamed from love.graphics.setDefaultImageFilter}} Sets the default scaling filters used with Images, Canvases, a...")
 
m (Fixed function name in the synopsis)
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.graphics.setDefaultImageFilter( min, mag, anisotropy )
+
love.graphics.setDefaultFilter( min, mag, anisotropy )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===

Revision as of 07:23, 29 July 2013

Available since LÖVE 0.9.0
It has been renamed from love.graphics.setDefaultImageFilter.

Sets the default scaling filters used with Images, Canvases, and Fonts.

Function

Synopsis

love.graphics.setDefaultFilter( min, mag, anisotropy )

Arguments

FilterMode min
Filter mode used when scaling the image down.
FilterMode mag
Filter mode used when scaling the image up.
number anisotropy (1)
Maximum amount of Anisotropic Filtering used.

Returns

Nothing.

Notes

This function does not apply retroactively to loaded images.

See Also


Other Languages