LearnOpenGL
无
天亮就睡觉
这个作者很懒,什么都没留下…
展开
-
LeranOpenGL-着色器
#include <glad/glad.h> #include <GLFW/glfw3.h> #include <iostream> using namespace std; const int SCR_WIDTH = 800; const int SCR_HEIGHT = 600; const char* vertexShaderSource = "#ve...原创 2020-03-15 20:46:09 · 155 阅读 · 0 评论 -
LearnOpenGL-三角形
#include <glad/glad.h> #include <GLFW/glfw3.h> #include <iostream> using namespace std; const int SCR_WIDTH = 800; const int SCR_HEIGHT = 600; const char* vertexShaderSource = "#v...原创 2020-03-13 19:50:38 · 173 阅读 · 1 评论 -
LearnOpenGL-窗口
#include <glad/glad.h> #include <GLFW/glfw3.h> #include <iostream> using namespace std; //窗口回调函数 void Framebuffer_size_callback(GLFWwindow* window, int width, int height) { glVi...原创 2020-03-09 20:47:51 · 125 阅读 · 0 评论