aboutsummaryrefslogtreecommitdiff
path: root/shaders/water.frag
blob: 8a0dd0b7c165ece2069ecef949662c76bd2c06d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
#version 150
#extension GL_ARB_explicit_attrib_location : enable
#extension GL_ARB_explicit_uniform_location : enable

layout(location = 0) out vec4 frag_color ;

void main() {
    frag_color = vec4(0.0,0.3,0.7,0.5) ;
}