mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- Contains latest raylib 2.0 examples. Only converted a few of them to test out bindings. - Need some sort of script to auto convert them across.
24 lines
528 B
GLSL
24 lines
528 B
GLSL
#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;
|
|
|
|
// NOTE: Add here your custom variables
|
|
uniform vec2 resolution = vec2(800, 450);
|
|
|
|
void main()
|
|
{
|
|
// Texel color fetching from texture sampler
|
|
vec4 texelColor = texture2D(texture0, fragTexCoord);
|
|
|
|
// NOTE: Implement here your fragment shader code
|
|
|
|
gl_FragColor = texelColor*colDiffuse;
|
|
} |