WebGLRenderingContext: deleteProgram() 方法
基线 广泛可用
此功能已十分成熟,可在许多设备和浏览器版本上运行。它自 2015 年 7 月.
报告反馈
语法
WebGLRenderingContext.deleteProgram()
是 WebGL API 中用于删除给定 WebGLProgram
对象的方法。如果程序已被删除,此方法无效。deleteProgram(program)
js
参数
-
program
要删除的 WebGLProgram
对象。
返回值
示例
无 (undefined
).
WebGLRenderingContext.deleteProgram()
是 WebGL API 中用于删除给定 WebGLProgram
对象的方法。如果程序已被删除,此方法无效。const canvas = document.getElementById("canvas");
const gl = canvas.getContext("webgl");
const program = gl.createProgram();
// …
gl.deleteProgram(program);
规范
删除程序 |
---|
规范 # 5.14.9 |
浏览器兼容性
WebGL 规范