parent
3787b6947f
commit
ffefbcd9f3
10 changed files with 213 additions and 0 deletions
13
Test/spv.ext.texture_shadow_lod.error.frag
Normal file
13
Test/spv.ext.texture_shadow_lod.error.frag
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#version 450
|
||||
|
||||
layout(binding = 0) uniform sampler2DArrayShadow s2da;
|
||||
|
||||
layout(location = 0) out vec4 c_out;
|
||||
|
||||
layout(location = 0) in vec4 tc;
|
||||
|
||||
void main()
|
||||
{
|
||||
float c = textureLod(s2da, tc, 0);
|
||||
c_out = vec4(c);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue