文章分类 - OpenGL
摘要:OpenGL基本图元的版本支持情况 序号 基本图元 2.1 3.3 4.5 1 GL_POINTS ✔ ✔ ✔ 2 GL_LINES ✔ ✔ ✔ 3 GL_LINE_STRIP ✔ ✔ ✔ 4 GL_LINE_LOOP ✔ ✔ ✔ 5 GL_TRIANGLES ✔ ✔ ✔ 6 GL_TRIANGLE
阅读全文
摘要:1 #include <GL/glew.h> 2 #include <GLFW/glfw3.h> 3 #include <iostream> 4 5 const GLchar* vertexShaderSource = "#version 460 core\n" 6 "layout (locatio
阅读全文