添加纯OpenGL实现demo

This commit is contained in:
2025-12-19 01:07:59 +08:00
parent d4975da9a5
commit 47e6dc7244
10 changed files with 9606 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#version 330 core
layout(location = 0) in vec2 aPos;
void main() {
gl_Position = vec4(aPos, 0.0, 1.0);
}