From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/api/webgltexture/index.html | 72 +++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 files/zh-cn/web/api/webgltexture/index.html (limited to 'files/zh-cn/web/api/webgltexture') diff --git a/files/zh-cn/web/api/webgltexture/index.html b/files/zh-cn/web/api/webgltexture/index.html new file mode 100644 index 0000000000..5187d4a762 --- /dev/null +++ b/files/zh-cn/web/api/webgltexture/index.html @@ -0,0 +1,72 @@ +--- +title: WebGLTexture +slug: Web/API/WebGLTexture +tags: + - API + - Reference + - WebGL +translation_of: Web/API/WebGLTexture +--- +
WebGLTexture接口是WebGL API的一部分,为不透明的纹理对象提供储存和状态等纹理操作。
+ +

描述

+ +

WebGLTexture对象自身未定义任何属性或方法, 其内容无法被直接访问。当使用WebGLTexture对象时, {{domxref("WebGLRenderingContext")}} 里的这些方法会很有用:

+ + + +

例子

+ +

创建一个纹理

+ +
var canvas = document.getElementById('canvas');
+var gl = canvas.getContext('webgl');
+var texture = gl.createTexture();
+
+ +

说明

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('WebGL', "#5.9", "WebGLTexture")}}{{Spec2('WebGL')}}Initial definition.
+ +

浏览器兼容性

+ + + +

{{Compat("api.WebGLTexture")}}

+ +

See also

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