Difference between revisions of "love.graphics.getDefaultImageFilter"

(Added love.graphics.getDefaultImageFilter.)
 
m
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=function}}
+
{{newinoldin|[[0.8.0]]|080|[[0.9.0]]|090|type=function|text=It has been renamed to [[love.graphics.getDefaultFilter]]}}
 
Returns the default scaling filters.
 
Returns the default scaling filters.
 
== Function ==
 
== Function ==
Line 13: Line 13:
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 +
* [[love.graphics.setDefaultImageFilter]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Returns the default scaling filters.}}
 
{{#set:Description=Returns the default scaling filters.}}
 
{{#set:Since=080}}
 
{{#set:Since=080}}
 +
{{#set:Sub-Category=State}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.getDefaultImageFilter}}
 
{{i18n|love.graphics.getDefaultImageFilter}}

Latest revision as of 18:18, 27 December 2015

Available since LÖVE 0.8.0 and removed in LÖVE 0.9.0
It has been renamed to love.graphics.getDefaultFilter.

Returns the default scaling filters.

Function

Synopsis

min, mag = love.graphics.getDefaultImageFilter( )

Arguments

None.

Returns

FilterMode min
Filter mode used when scaling the image down.
FilterMode mag
Filter mode used when scaling the image up.

See Also


Other Languages