#include <glad/glad.h> #include <GLFW/glfw3.h> #include <iostream> using namespace std; const float triangle[]{ -0.5f, -0.5f, 0.0f, // 左下 0.5f, -0.5f, 0.0f, // 右下 0.0f, 0.5f, 0.0f // 正上 }; int screen_width = 1280; int screen_height = 720; int main() ...