Draft triangle pipeline in iced_glow

This commit is contained in:
Héctor Ramón Jiménez 2020-05-21 19:07:33 +02:00
parent d54f17c6aa
commit 60dcfc354e
6 changed files with 301 additions and 52 deletions

View file

@ -0,0 +1,8 @@
#version 450
layout(location = 0) in vec4 i_Color;
layout(location = 0) out vec4 o_Color;
void main() {
o_Color = i_Color;
}