1
0

vulkan shader

This commit is contained in:
Niklas Birk
2020-03-18 14:07:11 +01:00
parent 0382508e9e
commit 7ab2e09d48
4 changed files with 23 additions and 9 deletions

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);
}