Searched defs:vertexAttrib2fv (Results 1 - 1 of 1) sorted by relevance

/external/libgdx/backends/gdx-backends-gwt/src/com/google/gwt/webgl/client/
H A DWebGLRenderingContext.java1127 public final void vertexAttrib2fv (int indx, Float32Array values) { method in class:WebGLRenderingContext
1128 this.vertexAttrib2fv(indx, (JavaScriptObject)values);
1131 public final void vertexAttrib2fv (int indx, float[] values) { method in class:WebGLRenderingContext
1132 this.vertexAttrib2fv(indx, toJsArray(values));
1135 private final native void vertexAttrib2fv (int indx, JavaScriptObject values) /*-{ method in class:WebGLRenderingContext
1136 this.vertexAttrib2fv(indx, values);

Completed in 67 milliseconds