mirror of
https://github.com/bevyengine/bevy
synced 2025-01-25 19:35:19 +00:00
13 lines
319 B
GLSL
13 lines
319 B
GLSL
|
|
||
|
Texture2D g_shadowTex;
|
||
|
SamplerState g_shadowSampler;
|
||
|
SamplerComparisonState g_shadowSamplerComp;
|
||
|
|
||
|
float4 main() : SV_Target0
|
||
|
{
|
||
|
g_shadowTex.SampleCmp(g_shadowSamplerComp, float2(0,0), 0); // OK
|
||
|
g_shadowTex.SampleCmp(g_shadowSampler, float2(0,0), 0); // ERROR (should be comparison sampler)
|
||
|
|
||
|
return 0;
|
||
|
}
|