From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../getattriblocation/index.html | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 files/ja/web/api/webglrenderingcontext/getattriblocation/index.html (limited to 'files/ja/web/api/webglrenderingcontext/getattriblocation') diff --git a/files/ja/web/api/webglrenderingcontext/getattriblocation/index.html b/files/ja/web/api/webglrenderingcontext/getattriblocation/index.html new file mode 100644 index 0000000000..f11ff51400 --- /dev/null +++ b/files/ja/web/api/webglrenderingcontext/getattriblocation/index.html @@ -0,0 +1,65 @@ +--- +title: WebGLRenderingContext.getAttribLocation() +slug: Web/API/WebGLRenderingContext/getAttribLocation +translation_of: Web/API/WebGLRenderingContext/getAttribLocation +--- +
{{APIRef("WebGL")}}
+ +

WebGL API の WebGLRenderingContext.getAttribLocation()メソッドは指定された{{domxref("WebGLProgram")}}内の属性の場所を返します。

+ +

構文

+ +
GLint gl.getAttribLocation(program, name);
+
+ +

引数

+ +
+
program
+
属性の変数を含む{{domxref("WebGLProgram")}}
+
name
+
場所を取得する属性の変数名を指定する{{domxref("DOMString")}}
+
+ +

返り値

+ +

見つかった場合、変数名の場所を示す{{domxref("GLint")}}番号を、それ以外の場合は-1を返します。

+ +

+ +
gl.getAttribLocation(program, 'vColor');
+
+ +

仕様策定状況

+ + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('WebGL', "#5.14.10", "getAttribLocation")}}{{Spec2('WebGL')}}初回定義
{{SpecName('OpenGL ES 2.0', "glGetAttribLocation.xml", "glGetAttribLocation")}}{{Spec2('OpenGL ES 2.0')}}OpenGL API のマニュアルページ
+ +

ブラウザーの対応

+ + + +

{{Compat("api.WebGLRenderingContext.getAttribLocation")}}

+ +

関連項目

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