Sign in
fuchsia
/
third_party
/
glslang
/
refs/heads/sandbox/liyl/SDK-candidate-2-withEnumFix
/
.
/
Test
/
spv.texture.sampler.transform.frag
blob: 872d9b04d26cc12c8bccc5a0fa7da41208520b90 [
file
] [
log
] [
blame
] [
edit
]
#version 440
uniform sampler smp
;
uniform texture2D tex
;
in
vec2 coord
;
out
vec4 color
;
void
main
()
{
color
=
texture
(
sampler2D
(
tex
,
smp
),
coord
);
}