raylib/shaders/glsl100/template.fs

23 lines
486 B
Forth
Raw Normal View History

#version 100
precision mediump float;
2016-05-18 13:04:27 +03:00
// Input vertex attributes (from vertex shader)
varying vec2 fragTexCoord;
2016-05-18 13:04:27 +03:00
varying vec4 fragColor;
2016-05-18 13:04:27 +03:00
// Input uniform values
uniform sampler2D texture0;
2016-06-03 18:30:09 +03:00
uniform vec4 colDiffuse;
// NOTE: Add here your custom variables
void main()
{
2016-05-18 13:04:27 +03:00
// Texel color fetching from texture sampler
vec4 texelColor = texture2D(texture0, fragTexCoord);
// NOTE: Implement here your fragment shader code
2016-06-03 18:30:09 +03:00
gl_FragColor = texelColor*colDiffuse;
}