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,16 @@
#version 430 core
layout(vertices = 4) out; // 4 points per patch
in vec3 va_position[];
out vec3 cva_position[];
void main() {
cva_position[gl_InvocationID] = va_position[gl_InvocationID];
if(gl_InvocationID == 0) { // levels only need to be set once per patch
gl_TessLevelOuter[0] = 1; // we're only tessellating one line
gl_TessLevelOuter[1] = 4; // tessellate the line into 100 segments
}
}