| Package | Description |
|---|---|
| com.google.gwt.webgl.client |
| Modifier and Type | Method and Description |
|---|---|
WebGLProgram |
WebGLRenderingContext.createProgram() |
static WebGLProgram |
WebGLUtil.createShaderProgram(WebGLRenderingContext gl,
String vertexSource,
String fragmentSource) |
| Modifier and Type | Method and Description |
|---|---|
void |
WebGLRenderingContext.attachShader(WebGLProgram program,
WebGLShader shader) |
void |
WebGLRenderingContext.bindAttribLocation(WebGLProgram program,
int index,
String name) |
void |
WebGLRenderingContext.deleteProgram(WebGLProgram program) |
void |
WebGLRenderingContext.detachShader(WebGLProgram program,
WebGLShader shader) |
WebGLActiveInfo |
WebGLRenderingContext.getActiveAttrib(WebGLProgram program,
int index) |
WebGLActiveInfo |
WebGLRenderingContext.getActiveUniform(WebGLProgram program,
int index) |
com.google.gwt.core.client.JsArray<WebGLShader> |
WebGLRenderingContext.getAttachedShaders(WebGLProgram program) |
int |
WebGLRenderingContext.getAttribLocation(WebGLProgram program,
String name) |
String |
WebGLRenderingContext.getProgramInfoLog(WebGLProgram program) |
boolean |
WebGLRenderingContext.getProgramParameterb(WebGLProgram program,
int pname)
Return the value for the passed pname given the passed program.
|
int |
WebGLRenderingContext.getProgramParameteri(WebGLProgram program,
int pname)
Return the value for the passed pname given the passed program.
|
boolean |
WebGLRenderingContext.getUniformb(WebGLProgram program,
WebGLUniformLocation location)
Return the uniform value at the passed location in the passed program.
|
float |
WebGLRenderingContext.getUniformf(WebGLProgram program,
WebGLUniformLocation location)
Return the uniform value at the passed location in the passed program.
|
int |
WebGLRenderingContext.getUniformi(WebGLProgram program,
WebGLUniformLocation location)
Return the uniform value at the passed location in the passed program.
|
WebGLUniformLocation |
WebGLRenderingContext.getUniformLocation(WebGLProgram program,
String name) |
<T extends com.google.gwt.typedarrays.shared.ArrayBufferView> |
WebGLRenderingContext.getUniformv(WebGLProgram program,
WebGLUniformLocation location)
Return the uniform value at the passed location in the passed program.
|
boolean |
WebGLRenderingContext.isProgram(WebGLProgram program) |
void |
WebGLRenderingContext.linkProgram(WebGLProgram program) |
void |
WebGLRenderingContext.useProgram(WebGLProgram program) |
void |
WebGLRenderingContext.validateProgram(WebGLProgram program) |
Copyright © 2015. All Rights Reserved.