blob: 8242d0739b184d90e2d4e7811e53abce20c01b4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
---
title: WebGLRenderingContext.getAttribLocation()
slug: Web/API/WebGLRenderingContext/getAttribLocation
tags:
- API
- Méthode
- Reference
- WebGL
- WebGLRenderingContext
translation_of: Web/API/WebGLRenderingContext/getAttribLocation
---
{{APIRef("WebGL")}}
La méthode **`WebGLRenderingContext.getAttribLocation()`** de l'[API WebGL](/fr-FR/docs/Web/API/WebGL_API) retourne l'emplacement d'une variable d'attribut dans le {{domxref("WebGLProgram")}} indiqué.
## Syntaxe
GLint gl.getAttribLocation(programme, nom);
### Paramètres
- programme
- : Un {{domxref("WebGLProgram")}} contenant la variable d'attribut.
- nom
- : Un {{domxref("DOMString")}} indiquant le nom de la variable d'attribut dont l'emplacement est à retourner.
### Valeur retournée
Un nombre {{domxref("GLint")}} indiquant l'emplacement du nom de la variable si trouvé. Retourne -1 sinon.
## Exemples
```js
gl.getAttribLocation(programme, 'vColor');
```
## Spécifications
| Spécification | Statut | Commentaire |
| -------------------------------------------------------------------------------------------------------- | ------------------------------------ | -------------------------------- |
| {{SpecName('WebGL', "#5.14.10", "getAttribLocation")}} | {{Spec2('WebGL')}} | Définition initiale. |
| {{SpecName('OpenGL ES 2.0', "glGetAttribLocation.xml", "glGetAttribLocation")}} | {{Spec2('OpenGL ES 2.0')}} | Page principale de l'API OpenGL. |
## Compatibilité des navigateurs
{{Compat("api.WebGLRenderingContext.getAttribLocation")}}
## Voir aussi
- {{domxref("WebGLRenderingContext.getUniformLocation()")}}
|