WebGL2RenderingContext:getTransformFeedbackVarying() 方法

基线 广泛可用

此功能已得到很好的建立,并且可以在许多设备和浏览器版本中使用。它自以下时间起在浏览器中可用 2021 年 9 月.

WebGL2RenderingContext.getTransformFeedbackVarying() 方法是 WebGL 2 API 的一部分,它返回来自 WebGLTransformFeedback 缓冲区的变化变量的信息。

语法

js
getTransformFeedbackVarying(program, index)

参数

program

一个 WebGLProgram

index

一个 GLuint,指定要检索其信息的变量的索引。

返回值

一个 WebGLActiveInfo 对象。

示例

js
activeInfo = gl.getTransformFeedbackVarying(program, 0);

规范

规范
WebGL 2.0 规范
# 3.7.15

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅