WebGLActiveInfo: type Eigenschaft

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 schreibgeschützte WebGLActiveInfo.type-Eigenschaft repräsentiert den Typ der angeforderten Daten, die durch Aufrufen der Methoden getActiveAttrib() oder getActiveUniform() zurückgegeben werden.

Beispiele

js
const activeAttrib = gl.getActiveAttrib(program, index);
activeAttrib.type;

const activeUniform = gl.getActiveUniform(program, index);
activeUniform.type;

Spezifikationen

Specification
WebGL Specification
# DOM-WebGLActiveInfo-type

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch