mirror of https://github.com/mode777/rayjs.git
21 lines
383 B
Forth
21 lines
383 B
Forth
|
#version 100
|
||
|
|
||
|
precision mediump float;
|
||
|
|
||
|
// Input vertex attributes (from vertex shader)
|
||
|
varying vec2 fragTexCoord;
|
||
|
varying vec4 fragColor;
|
||
|
|
||
|
// Input uniform values
|
||
|
uniform sampler2D texture0;
|
||
|
uniform vec4 colDiffuse;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 texelColor = texture2D(texture0, fragTexCoord);
|
||
|
|
||
|
if (texelColor.a == 0.0) discard;
|
||
|
|
||
|
gl_FragColor = texelColor*fragColor*colDiffuse;
|
||
|
}
|