This commit is contained in:
sam 2024-09-02 12:40:30 +12:00
parent 5968ca324e
commit 8720b2db3b

View file

@ -1,23 +0,0 @@
@vs vs
in vec4 pos;
in vec4 color0;
out vec4 color;
void main() {
gl_Position = pos;
color = color0;
}
@end
@fs fs
in vec4 color;
out vec4 frag_color;
void main() {
frag_color = color;
}
@end
@program simple vs fs