Display: bring in ray-casting code

This commit is contained in:
Aaron Fenyes 2024-09-14 11:46:24 -07:00
parent 49655a8d62
commit cd18d594e0
5 changed files with 583 additions and 6 deletions

View file

@ -0,0 +1,7 @@
#version 300 es
in vec4 position;
void main() {
gl_Position = position;
}