Changed the OpenGL part and the GLSL shaders to use UBO and
[demo] / vk_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 }