Java com.google.gwt.corp.webgl.client WebGLFloatArray fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.corp.webgl.client WebGLFloatArray fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.corp.webgl.client WebGLFloatArray.

The text is from its open source code.

Method

WebGLFloatArraycreate(int size)
Create a new canvas array object of the given length with a new underlying WebGLArrayBuffer large enough to hold length elements of the type of this buffer.
WebGLFloatArraycreate(JsArrayNumber data)
Create a new canvas array object with a new underlying WebGLArrayBuffer large enough to hold the given data, then copy the passed data into the buffer.
WebGLFloatArraycreate(float[] data)
Create a new canvas array object with a new underlying WebGLArrayBuffer large enough to hold the given data, then copy the passed data into the buffer.
WebGLFloatArraycreate(WebGLFloatArray array)
Create a new canvas array object with a new underlying WebGLArrayBuffer large enough to hold the given data, then copy the passed data into the buffer.
WebGLFloatArraycreate(WebGLArrayBuffer buffer)
Create a new canvas array object using the passed WebGLArrayBuffer for its storage.
WebGLFloatArraycreate(WebGLArrayBuffer buffer, int byteOffset, int length)
Create a new canvas array object using the passed WebGLArrayBuffer for its storage.
floatget(int index)
Return the element at the given index.