WebGLRenderingContext: createTexture()-Methode

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Hinweis: Dieses Feature ist verfügbar in Web Workers.

Die WebGLRenderingContext.createTexture()-Methode der WebGL API erstellt und initialisiert ein WebGLTexture-Objekt.

Syntax

js
createTexture()

Parameter

Keine.

Rückgabewert

Ein WebGLTexture-Objekt, an das Bilder gebunden werden können.

Beispiele

Erstellen einer Textur

js
const canvas = document.getElementById("canvas");
const gl = canvas.getContext("webgl");
const texture = gl.createTexture();

Spezifikationen

Specification
WebGL Specification
# 5.14.8

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch