efficient opengl rendering

This commit is contained in:
2023-05-16 06:31:13 +00:00
parent 0b6566ff8b
commit d662d9e2fa
20 changed files with 459 additions and 422 deletions

View File

@@ -4,4 +4,15 @@
#define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h>
struct uv_n {
unsigned short u;
unsigned short v;
};
struct st_n {
struct uv_n s;
struct uv_n t;
};
#endif