rendering-textured-cube.frag 164 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 uniform sampler2D uTexture; varying mediump vec2 vTexCoord; void main() { mediump vec4 texColor = texture2D( uTexture, vTexCoord ); gl_FragColor = texColor; }