now we have UBOs/GLSL450 we can use the same shaders for every backend
[demo] / vk_shaders / sky.f.glsl
diff --git a/vk_shaders/sky.f.glsl b/vk_shaders/sky.f.glsl
deleted file mode 100644 (file)
index 07d63d2..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#version 450
-
-layout(binding = 0) uniform samplerCube stex;
-
-layout (location = 0) in vec3 normal;
-layout (location = 0) out vec4 color;
-
-void main()
-{
-       vec4 texel = texture(stex, normalize(normal));
-
-       color.rgb = texel.rgb;
-       color.a = 1.0;
-}