WebGLShaderPrecisionFormat - Web API 接口参考 编辑
WebGLShaderPrecisionFormat 接口是WebGL API 的一部分,它表示通过调用
WebGLRenderingContext.getShaderPrecisionFormat()
返回信息的信息。属性
WebGLShaderPrecisionFormat.rangeMin
- 以2为底的最小值的绝对值的对数。
WebGLShaderPrecisionFormat.rangeMax
- 可以表示的最大值的绝对值的底数为2的对数。
WebGLShaderPrecisionFormat.precision
- 可以表示的精度位的数目。对于整数类型,这个值总是0。
示例
WebGLShaderPrecisionFormat
对象通过WebGLRenderingContext.getShaderPrecisionFormat()
方法来返回。
var canvas = document.getElementById('canvas');
var gl = canvas.getContext('webgl');
gl.getShaderPrecisionFormat(gl.VERTEX_SHADER, gl.MEDIUM_FLOAT);
// WebGLShaderPrecisionFormat { rangeMin: 127, rangeMax: 127, precision: 23 }
规格
规格 | 状态 | 注释 |
---|---|---|
WebGL 1.0 WebGLShaderPrecisionFormat | Recommendation | Initial definition. |
浏览器兼容性
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论