Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
889ac20408cad9c384da1532f941fc93a82e7f5b
/
.
/
Test
/
spv.specTexture.frag
blob: 7fd89f5edcc982f3917bde91c4f6b30599fc6762 [
file
] [
log
] [
blame
]
#version 450
layout
(
constant_id
=
1
)
const
int
offs
=
0
;
layout
(
binding
=
0
)
uniform sampler2D tex
;
layout
(
location
=
0
)
out
vec4 color_out
;
void
main
(
void
)
{
color_out
=
textureLodOffset
(
tex
,
vec2
(
0.0
,
0.0
),
0.0
,
ivec2
(
offs
,
offs
));
}