From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../api/webgl_lose_context/losecontext/index.html | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 files/zh-cn/web/api/webgl_lose_context/losecontext/index.html (limited to 'files/zh-cn/web/api/webgl_lose_context/losecontext') diff --git a/files/zh-cn/web/api/webgl_lose_context/losecontext/index.html b/files/zh-cn/web/api/webgl_lose_context/losecontext/index.html new file mode 100644 index 0000000000..596b72ac30 --- /dev/null +++ b/files/zh-cn/web/api/webgl_lose_context/losecontext/index.html @@ -0,0 +1,66 @@ +--- +title: WEBGL_lose_context.loseContext() +slug: Web/API/WEBGL_lose_context/loseContext +tags: + - API + - Method + - Reference + - WebGL + - WebGL extension +translation_of: Web/API/WEBGL_lose_context/loseContext +--- +
{{APIRef("WebGL")}}
+ +

WEBGL_lose_context.loseContext()属于 WebGL API, 一般用来模拟 {{domxref("WebGLRenderingContext")}} 的上下文丢失。

+ +

这个方法会触发WebGL规范中上下文丢失的相关事件。通过这个方法丢失的上下文可以通过 {{domxref("WEBGL_lose_context.restoreContext()")}} 恢复。

+ +

语法

+ +
gl.getExtension('WEBGL_lose_context').loseContext();
+ +

示例

+ +

你可以用这个方法模拟 webglcontextlost 事件:

+ +
var canvas = document.getElementById('canvas');
+var gl = canvas.getContext('webgl');
+
+canvas.addEventListener('webglcontextlost', function(e) {
+  console.log(e);
+}, false);
+
+gl.getExtension('WEBGL_lose_context').loseContext();
+
+// webglcontextlost事件被触发。
+
+ +

规范

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('WEBGL_lose_context', "", "WEBGL_lose_context.loseContext")}}{{Spec2('WEBGL_lose_context')}}Initial definition.
+ +

浏览器兼容性

+ + + +

{{Compat("api.WEBGL_lose_context.loseContext")}}

+ +

相关链接

+ + -- cgit v1.2.3-54-g00ecf