This commit is contained in:
2023-03-20 15:09:43 +00:00
parent 7ba374c1fd
commit 695f849f77
7 changed files with 146 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#version 450 core
layout (location = 0) in vec4 poss;
layout (location = 1) in vec4 texAngXX;
out vec2 vTexAng;
void main()
{
gl_Position = poss;
vTexAng = texAngXX.xy;
}