Sign in
cobalt
/
cobalt
/
2a8c847d785c1602f60915c8e0112e0aec6a15a5
/
.
/
src
/
cobalt
/
renderer
/
glimp_shaders
/
glsl
/
fragment_position_and_texcoord.glsl
blob: ca7ad4ee0953277e6c00678e9e88b10d3d951fe4 [
file
] [
log
] [
blame
]
precision mediump
float
;
varying vec2 v_tex_coord
;
uniform sampler2D tex
;
void
main
()
{
gl_FragColor
=
texture2D
(
tex
,
v_tex_coord
);
}