OES_vertex_array_object - Web API 接口参考 编辑
拓展OES_vertex_array_object是WebGL API的一部分,它提供了顶点数组对象 (VAOs) 可以用来封装顶点数组的状态。These objects keep pointers to vertex data and provide names for different sets of vertex data.
WebGL extensions are available using the WebGLRenderingContext.getExtension()
method. 更多详细信息, 参见 Using Extensions in the WebGL tutorial.
Availability: 此拓展只在WebGL1中有效。在WebGL2当中, 这些功能可以被直接使用,且去掉了前缀 "OES
"。
常量
这个拓展提供了一个新的常量, 它可以在gl.getParameter()
当中作为一个参数传递:
ext.VERTEX_ARRAY_BINDING_OES
- 当作为
gl.getParameter()
中的pname
参数传递时,返回一个WebGLVertexArrayObject
对象 。
函数
这个拓展提供了四个新的函数。
ext.createVertexArrayOES()
创建一个新的
WebGLVertexArrayObject
。ext.deleteVertexArrayOES()
删除一个给定的
WebGLVertexArrayObject
。ext.isVertexArrayOES()
如果参数是一个
WebGLVertexArrayObject
则返回true
。ext.bindVertexArrayOES()
绑定一个给定的
WebGLVertexArrayObject
到缓冲区。
Examples
var oes_vao_ext = gl.getExtension('OES_vertex_array_object');
var vao = oes_vao_ext.createVertexArrayOES();
oes_vao_ext.bindVertexArrayOES(vao);
// ...
// calls to bindBuffer or vertexAttribPointer
// which will be "recorded" in the VAO
// ...
Specifications
Specification | Status | Comment |
---|---|---|
OES_vertex_array_object OES_vertex_array_object | Recommendation | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论