随笔分类 - Opengl
摘要:一,下载Virtual Studio Community 2017 https://my.visualstudio.com/Downloads/Featured?mkt=zh-cn 二,下载GLFW(32-bits Windows binaries) https://www.glfw.org/dow
阅读全文
摘要:https://cstsinghua.github.io/2018/07/12/openGL%E5%AD%A6%E4%B9%A0%E8%B7%AF%E5%BE%84/
阅读全文
摘要:转载自:http://lists.apple.com/archives/mac-opengl/2011/Jan/msg00010.html Subject: Premultiplied alpha and GL_ONE vs. raw and GL_SRC_ALPHA From: Zack Morr
阅读全文
摘要:工具:CMake、VS2015 安装官网安装:https://learnopengl-cn.readthedocs.io/zh/latest/
阅读全文
摘要:创建VBO 创建VBO需要3个步骤: 使用glGenBuffers()生成新缓存对象。 使用glBindBuffer()绑定缓存对象。 使用glBufferData()将顶点数据拷贝到缓存对象中。 1.glGenBuffers 官方解释:generate buffer object names意思是
阅读全文