From c05efa8d7ae464235cf83d7c0956e42dc6974103 Mon Sep 17 00:00:00 2001 From: julieng Date: Sat, 2 Oct 2021 17:20:14 +0200 Subject: move *.html to *.md --- files/fr/web/api/webgltexture/index.md | 72 ++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 files/fr/web/api/webgltexture/index.md (limited to 'files/fr/web/api/webgltexture/index.md') diff --git a/files/fr/web/api/webgltexture/index.md b/files/fr/web/api/webgltexture/index.md new file mode 100644 index 0000000000..c80a2f6998 --- /dev/null +++ b/files/fr/web/api/webgltexture/index.md @@ -0,0 +1,72 @@ +--- +title: WebGLTexture +slug: Web/API/WebGLTexture +tags: + - API + - Reference + - WebGL +translation_of: Web/API/WebGLTexture +--- +
{{APIRef("WebGL")}}
+ +

L'interface WebGLTexture fait partie de l'API WebGL et représente un objet de texture opaque fournissant un stockage et un état pour les opérations de texturation.

+ +

Description

+ +

L'objet WebGLTexture ne définit aucune méthode ou propriété propre, et son contenu n'est pas directement accessible. Lors du travail avec des objets WebGLTexture, les méthodes suivantes du {{domxref("WebGLRenderingContext")}} sont utiles :

+ + + +

Exemples

+ +

Création d'une texture

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

Spécifications

+ + + + + + + + + + + + + + +
SpécificationStatutCommentaire
{{SpecName('WebGL', "#5.9", "WebGLTexture")}}{{Spec2('WebGL')}}Définition initiale.
+ +

Compatibilité des navigateurs

+ +

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

+ +

Voir aussi

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