| Package | Description |
|---|---|
| org.fujion.canvas.webgl |
| Modifier and Type | Method and Description |
|---|---|
static BufferBinding |
BufferBinding.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BufferBinding[] |
BufferBinding.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RenderingContextWebGL.bindBuffer(BufferBinding target,
WebGLBuffer buffer)
Binds a given WebGLBuffer to a target.
|
void |
RenderingContextWebGL.bufferData(BufferBinding target,
ArrayBufferBase srcData,
BufferUsagePattern usage)
Initializes and creates the buffer object's data store.
|
void |
RenderingContextWebGL.bufferData(BufferBinding target,
ArrayBufferBase srcData,
BufferUsagePattern usage,
int srcOffset,
int length)
Initializes and creates the buffer object's data store.
|
void |
RenderingContextWebGL.bufferData(BufferBinding target,
int size,
BufferUsagePattern usage)
Initializes and creates the buffer object's data store.
|
void |
RenderingContextWebGL.bufferSubData(BufferBinding target,
int offset,
ArrayBufferBase srcData)
Updates a subset of a buffer object's data store.
|
void |
RenderingContextWebGL.bufferSubData(BufferBinding target,
int dstByteOffset,
ArrayBufferBase srcData,
int srcOffset,
int length)
Updates a subset of a buffer object's data store.
|
void |
RenderingContextWebGL.getBufferParameter(BufferBinding target,
BufferParameterType pname,
IResponseCallback<Object> callback)
Returns information about the buffer.
|
Copyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.