Difference between revisions of "Texture:isReadable"

m (0.11.0 -> 11.0)
m (Fixed typo in description)
 
Line 18: Line 18:
 
* [[love.graphics.newCanvas]]
 
* [[love.graphics.newCanvas]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Gets whether the Texture can be drawn sent to a Shader.}}
+
{{#set:Description=Gets whether the Texture can be drawn and sent to a Shader.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|Texture:isReadable}}
 
{{i18n|Texture:isReadable}}

Latest revision as of 17:38, 17 July 2021

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

Gets whether the Texture can be drawn and sent to a Shader.

Canvases created with stencil and/or depth PixelFormats are not readable by default, unless readable=true is specified in the settings table passed into love.graphics.newCanvas.

Non-readable Canvases can still be rendered to.

Function

Synopsis

readable = Texture:isReadable( )

Arguments

None.

Returns

boolean readable
Whether the Texture is readable.

See Also

Other Languages