1
0

Finally finished vulkan to draw

This commit is contained in:
Niklas Birk
2020-03-30 18:39:57 +02:00
parent d5b566c2b6
commit c99023f81c
5 changed files with 327 additions and 96 deletions

View File

@ -8,5 +8,6 @@ layout(location = 0) out vec3 colV;
void main(void)
{
colV = colIn;
gl_PointSize = 1.0f;
gl_Position = vec4(pos, 1);
}