WebGPU 中消失的 VAO
作者:互联网
文章目录
1 VAO 是 OpenGL 技术中提出来的
参考:
https://www.khronos.org/opengl/wiki/Tutorial2:_VAOs,VBOs,Vertex_and_Fragment_Shaders(C/_SDL)
其中有一段文字记录了 VAO 是什么:
A Vertex Array Object (VAO) is an object which contains one or more Vertex Buffer Objects and is designed to store the information for a complete rendered object. In our example this is a diamond consisting of four vertices as well as a color for each vertex.
VAO 记录的是多个(一组) VBO 的 gl.bindBuffer 和 gl.vertexAttri
标签:object,VAO,OpenGL,WebGPU,消失,Vertex,gl 来源: https://blog.csdn.net/cRGBc/article/details/122843795