--- 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();

说明

Specification Status Comment
{{SpecName('WebGL', "#5.9", "WebGLTexture")}} {{Spec2('WebGL')}} Initial definition.

浏览器兼容性

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

See also