WebGLRenderingContext: deleteTexture() 方法
基线 广泛可用
此功能已很好地建立,并在许多设备和浏览器版本上都能正常工作。它从 2015 年 7 月.
报告反馈
语法
WebGL API 的
WebGLRenderingContext.deleteTexture()
方法会删除给定的 WebGLTexture
对象。如果纹理已删除,则此方法无效。deleteTexture(texture)
js
参数
-
texture
要删除的 WebGLTexture
对象。
返回值
示例
无 (undefined
).
WebGL API 的
WebGLRenderingContext.deleteTexture()
方法会删除给定的 WebGLTexture
对象。如果纹理已删除,则此方法无效。const canvas = document.getElementById("canvas");
const gl = canvas.getContext("webgl");
const texture = gl.createTexture();
// …
gl.deleteTexture(texture);
规范
删除纹理 |
---|
规范 # 5.14.8 |
浏览器兼容性
WebGL 规范