此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

WebGLActiveInfo

基线 广泛可用 *

自 2015年7月 起,此特性已在主流浏览器中得到支持,可在大多数设备和浏览器版本中正常使用。

* 此特性的某些部分的支持程度可能有所不同。

WebGLActiveInfoWebGL API 的一部分,并且代表了调用 WebGLRenderingContext.getActiveAttrib()WebGLRenderingContext.getActiveUniform() 这两个方法后传回的信息。

属性值

WebGLActiveInfo.name

请求变量的只读名称。

WebGLActiveInfo.size

请求变量的只读尺寸。

WebGLActiveInfo.type

请求变量的只读类型。

示例

WebGLActiveInfo 对象可以通过以下方式返回:

js
WebGLActiveInfo? getActiveAttrib(WebGLProgram? program, GLuint index);
WebGLActiveInfo? getActiveUniform(WebGLProgram? program, GLuint index);
WebGLActiveInfo? getTransformFeedbackVarying(WebGLProgram? program, GLuint index)

规范

规范
WebGL Specification
# 5.11

浏览器兼容性

另请参见