{{newin|[[0.10.0]]|100|type=function}}
Gets the current stencil test configuration.

When stencil testing is enabled, the geometry of everything that is drawn afterward will be clipped / stencilled out based on a comparison between the arguments of this function and the stencil value of each pixel that the geometry touches. The stencil values of pixels are affected via [[love.graphics.stencil]].

Each [[Canvas]] has its own per-pixel stencil values.
== Function ==
=== Synopsis ===
<source lang="lua">
comparemode, comparevalue = love.graphics.getStencilTest( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|CompareMode|comparemode|The type of comparison that is made for each pixel. Will be "always" if stencil testing is disabled.}}
{{param|number|comparevalue|The value used when comparing with the stencil value of each pixel.}}

== See Also ==
* [[parent::love.graphics]]
* [[love.graphics.setStencilTest]]
* [[love.graphics.stencil]]
[[Category:Functions]]
{{#set:Description=Gets the current stencil test configuration.}}
{{#set:Sub-Category=State}}
== Other Languages ==
{{i18n|love.graphics.getStencilTest}}