Uses of Class
com.neovisionaries.android.opengl.AttrDataSize

Packages that use AttrDataSize
com.neovisionaries.android.opengl   
 

Uses of AttrDataSize in com.neovisionaries.android.opengl
 

Methods in com.neovisionaries.android.opengl that return AttrDataSize
static AttrDataSize AttrDataSize.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AttrDataSize[] AttrDataSize.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.neovisionaries.android.opengl with parameters of type AttrDataSize
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size)
          This method is an alias of setArray(values, size, null, false, 0, 0).
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size, AttrDataType type)
          This method is an alias of setArray(values, size, type, false, 0, 0).
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size, AttrDataType type, boolean normalized)
          This method is an alias of setArray(values, size, type, normalized, 0, 0).
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size, AttrDataType type, boolean normalized, int stride)
          This method is an alias of setArray(values, size, type, normalized, stride, 0).
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size, AttrDataType type, boolean normalized, int stride, int offset)
          Set a vertex array to this vertex attribute by glVertexAttribPointer().
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size, boolean normalized)
          This method is an alias of setArray(values, size, null, normalized, 0, 0).
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size, boolean normalized, int stride)
          This method is an alias of setArray(values, size, null, normalized, stride, 0).
 Attribute Attribute.setArray(ArrayBuffer values, AttrDataSize size, boolean normalized, int stride, int offset)
          This method is an alias of setArray(values, size, null, normalized, stride, 0).
 Attribute Attribute.setArray(Buffer values, AttrDataSize size, AttrDataType type)
          This method is an alias of setArray(values, size, type, false, 0).
 Attribute Attribute.setArray(Buffer values, AttrDataSize size, AttrDataType type, boolean normalized)
          This method is an alias of setArray(values, size, type, normalized, 0).
 Attribute Attribute.setArray(Buffer values, AttrDataSize size, AttrDataType type, boolean normalized, int stride)
          Set a vertex array to this vertex attribute by glVertexAttribPointer().
 Attribute Attribute.setArray(FloatBuffer values, AttrDataSize size)
          This method is an alias of setArray(values, size, AttrDataType.FLOAT, false, 0).
 Attribute Attribute.setArray(FloatBuffer values, AttrDataSize size, int stride)
          This method is an alias of setArray(values, size, AttrDataType.FLOAT, false, stride).