Available since LÖVE 11.0 |
This function is not supported in earlier versions. |
Sets the comparison mode used when sampling from a depth texture in a shader.
Depth texture comparison modes are advanced low-level functionality typically used with shadow mapping in 3D.
When using a depth texture with a comparison mode set in a shader, it must be declared as a sampler2DShadow
and used in a GLSL 3 Shader. The result of accessing the texture in the shader will return a float between 0 and 1, proportional to the number of samples (up to 4 samples will be used if bilinear filtering is enabled) that passed the test set by the comparison operation.
Depth texture comparison can only be used with readable depth-formatted Canvases.
Texture:setDepthSampleMode( compare )
CompareMode compare
Nothing.
Disables depth texture comparison functionality for this texture.
Texture:setDepthSampleMode( )
None.
Nothing.