repo.or.cz
/
glslang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bump github/codeql-action from 3.27.1 to 3.27.4
[glslang.git]
/
Test
/
spv.ext.textureShadowLod.error.frag
blob
ef6ec21d444e30798a12287614bbe287a39cd2a3
1
#version 450
2
3
layout(binding = 0) uniform sampler2DArrayShadow s2da;
4
5
layout(location = 0) out vec4 c_out;
6
7
layout(location = 0) in vec4 tc;
8
9
void main()
10
{
11
float c = textureLod(s2da, tc, 0);
12
c_out = vec4(c);
13
}