https://github.com/sylvainthery/procedural_micro_patterns
Revision a26bd38e4abcbfd6bf58e9a5fa424d9ceb959960 authored by Sylvain Thery on 02 December 2022, 14:10:09 UTC, committed by Sylvain Thery on 02 December 2022, 14:10:09 UTC
1 parent 24ff6ff
Tip revision: a26bd38e4abcbfd6bf58e9a5fa424d9ceb959960 authored by Sylvain Thery on 02 December 2022, 14:10:09 UTC
update README
update README
Tip revision: a26bd38
implicit_quad.vert
#version 300 es
void main()
{
uint id = uint(gl_VertexID);
gl_Position = vec4(4.0*vec2(id%2u,id/2u)-1.0, 0, 1);
}

Computing file changes ...