Sign in
ara-mdk
/
people
/
jessebarker
/
glmark2
/
4e668272c2dac465afce05c3c057c7f9493a5e6c
/
.
/
data
/
shaders
/
terrain-luminance.frag
blob: 596862ff888686b715a497bf99f72b2a0d960dfa [
file
] [
log
] [
blame
]
uniform sampler2D tDiffuse
;
varying vec2 vUv
;
void
main
()
{
vec4 texel
=
texture2D
(
tDiffuse
,
vUv
);
vec3 luma
=
vec3
(
0.299
,
0.587
,
0.114
);
float
v
=
dot
(
texel
.
xyz
,
luma
);
gl_FragColor
=
vec4
(
v
,
v
,
v
,
texel
.
w
);
}