Sketch a point rendering pipeline

This commit is contained in:
Aaron Fenyes 2025-04-21 20:35:17 -07:00
parent 3590b1ad4e
commit 23f395331a
5 changed files with 116 additions and 37 deletions

9
app-proto/src/point.frag Normal file
View file

@ -0,0 +1,9 @@
#version 300 es
precision highp float;
out vec4 outColor;
void main() {
outColor = vec4(vec3(1.), 1.);
}