Sha256: 3876d723212a6fdd282e74b111edce523d368580d6e43fce11a19439a9ba2cae
Contents?: true
Size: 503 Bytes
Versions: 3
Compression:
Stored size: 503 Bytes
Contents
" \n\ #ifdef GL_ES \n\ precision lowp float; \n\ #endif \n\ \n\ varying vec4 v_fragmentColor; \n\ varying vec2 v_texCoord; \n\ uniform sampler2D u_texture; \n\ \n\ void main() \n\ { \n\ gl_FragColor = vec4( v_fragmentColor.rgb, // RGB from uniform \n\ v_fragmentColor.a * texture2D(u_texture, v_texCoord).a // A from texture & uniform \n\ ); \n\ } \n\ ";
Version data entries
3 entries across 3 versions & 1 rubygems