vulkan shader

This commit is contained in:
Niklas Birk
2020-03-31 15:09:08 +02:00
parent 0382508e9e
commit 7ab2e09d48
4 changed files with 23 additions and 9 deletions
+9
View File
@@ -0,0 +1,9 @@
#version 460
layout(location = 0) in vec3 colV;
layout(location = 0) out vec4 colOut;
void main(void)
{
colOut = vec4(colV, 1);
}