| Package | Description |
|---|---|
| org.fujion.canvas.webgl |
| Modifier and Type | Method and Description |
|---|---|
static TextureType2 |
TextureType2.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextureType2[] |
TextureType2.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.copyTexImage2D(TextureType2 target,
int level,
ColorFormat internalformat,
int x,
int y,
int width,
int height)
Copies pixels from the current WebGLFramebuffer into a 2D texture image.
|
void |
RenderingContextWebGL.copyTexSubImage2D(TextureType2 target,
int level,
int xoffset,
int yoffset,
int x,
int y,
int width,
int height)
Copies pixels from the current WebGLFramebuffer into an existing 2D texture sub-image.
|
void |
RenderingContextWebGL.framebufferTexture2D(FrameBufferBinding target,
AttachmentPoint attachment,
TextureType2 textarget,
WebGLTexture texture)
Attaches a texture to a WebGLFramebuffer.
|
void |
RenderingContextWebGL.texImage2D(TextureType2 target,
int level,
TextureBufferInternalFormat internalformat,
int width,
int height,
TextureBufferInternalFormat format,
ArrayBufferView pixels)
Specifies a two-dimensional texture image.
|
void |
RenderingContextWebGL.texSubImage2D(TextureType2 target,
int level,
int xoffset,
int yoffset,
int width,
int height,
TextureFormat format,
ArrayBufferView pixels)
Specifies a sub-rectangle of the current texture.
|
Copyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.