Tech ENABLE_GLBEGIN_GLEND_REMOVAL - 1st installment - Selection bounding box

This commit is contained in:
enricoturri1966 2022-01-18 10:42:46 +01:00
parent 8be67bc4d6
commit 22f38235ea
8 changed files with 201 additions and 19 deletions

View file

@ -0,0 +1,8 @@
#version 110
uniform vec4 uniform_color;
void main()
{
gl_FragColor = uniform_color;
}

View file

@ -0,0 +1,6 @@
#version 110
void main()
{
gl_Position = ftransform();
}