now we have UBOs/GLSL450 we can use the same shaders for every backend
[demo] / shaders / debug.f.glsl
1 #version 450
2
3 out vec4 color;
4
5 void main()
6 {
7         color = vec4(1.0, 0.0, 1.0, 1.0);
8 }