Partially working ellipse shader

This commit is contained in:
2021-03-10 03:29:10 +01:00
parent bfbd0b6fef
commit cddf7d1f8f
12 changed files with 229 additions and 172 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ uniform mat4 worldMat;
void main()
{
gl_Position = worldMat * vec4(position.xyz,1);
gl_Position = worldMat * vec4(position,1);
vColor = color;
vRad = rad;
}