Bump to OPENRNDR 0.3.44-rc.2

This commit is contained in:
Edwin Jakobs
2020-07-13 11:45:13 +02:00
parent 5223ee0035
commit 62f6cd6098
33 changed files with 843 additions and 21 deletions

View File

@@ -0,0 +1,11 @@
#version 430 core
out vec4 o_color;
in vec3 va_position;
in vec3 va_normal;
in vec4 v_addedProperty;
void main() {
o_color = v_addedProperty;
}