Package gaiasky.util.gdx.shader
Class TessellationShaderProgram
java.lang.Object
gaiasky.util.gdx.shader.ExtShaderProgram
gaiasky.util.gdx.shader.TessellationShaderProgram
- All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
default name for color attributesstatic boolean
flag indicating whether attributes invalid input: '&' uniforms must be present at all timesstatic final String
default name for position attributesstatic String
code that is always added to every fragment shader code, typically used to inject a #version line.static String
static String
static String
code that is always added to the vertex shader code, typically used to inject a #version line.static final String
default name for texture coordinates attributes, append texture unit number -
Constructor Summary
ConstructorDescriptionTessellationShaderProgram
(String vertexShader, String tessellationControlShader, String tessellationEvaluationShader, String fragmentShader) -
Method Summary
Modifier and TypeMethodDescriptionvoid
begin()
Makes OpenGL ES 2.0 use this vertex and fragment shader pair.static void
clearAllShaderPrograms
(com.badlogic.gdx.Application app) protected int
void
disableVertexAttribute
(int location) void
disableVertexAttribute
(String name) Disables the vertex attribute with the given namevoid
dispose()
Disposes all resources associated with this shader.void
enableVertexAttribute
(int location) void
enableVertexAttribute
(String name) Enables the vertex attribute with the given namevoid
end()
Disables this shader.int
fetchUniformLocation
(String name, boolean pedantic) int
getAttributeLocation
(String name) String[]
int
getAttributeSize
(String name) int
getAttributeType
(String name) getLog()
static String
static int
int
getUniformLocation
(String name) String[]
int
getUniformSize
(String name) int
getUniformType
(String name) boolean
hasAttribute
(String name) boolean
hasUniform
(String name) static void
invalidateAllShaderPrograms
(com.badlogic.gdx.Application app) Invalidates all shaders so the next time they are used new handles are generatedboolean
void
setAttributef
(String name, float value1, float value2, float value3, float value4) Sets the given attributevoid
setUniform1fv
(int location, float[] values, int offset, int length) void
setUniform1fv
(String name, float[] values, int offset, int length) void
setUniform2fv
(int location, float[] values, int offset, int length) void
setUniform2fv
(String name, float[] values, int offset, int length) void
setUniform3fv
(int location, float[] values, int offset, int length) void
setUniform3fv
(String name, float[] values, int offset, int length) void
setUniform4fv
(int location, float[] values, int offset, int length) void
setUniform4fv
(String name, float[] values, int offset, int length) void
setUniformf
(int location, float value) void
setUniformf
(int location, float value1, float value2) void
setUniformf
(int location, float value1, float value2, float value3) void
setUniformf
(int location, float value1, float value2, float value3, float value4) void
setUniformf
(int location, com.badlogic.gdx.graphics.Color values) void
setUniformf
(int location, com.badlogic.gdx.math.Vector2 values) void
setUniformf
(int location, com.badlogic.gdx.math.Vector3 values) void
setUniformf
(String name, float value) Sets the uniform with the given name.void
setUniformf
(String name, float value1, float value2) Sets the uniform with the given name.void
setUniformf
(String name, float value1, float value2, float value3) Sets the uniform with the given name.void
setUniformf
(String name, float value1, float value2, float value3, float value4) Sets the uniform with the given name.void
setUniformf
(String name, com.badlogic.gdx.graphics.Color values) Sets the uniform with the given name.void
setUniformf
(String name, com.badlogic.gdx.math.Vector2 values) Sets the uniform with the given name.void
setUniformf
(String name, com.badlogic.gdx.math.Vector3 values) Sets the uniform with the given name.void
setUniformi
(int location, int value) void
setUniformi
(int location, int value1, int value2) void
setUniformi
(int location, int value1, int value2, int value3) void
setUniformi
(int location, int value1, int value2, int value3, int value4) void
setUniformi
(String name, int value) Sets the uniform with the given name.void
setUniformi
(String name, int value1, int value2) Sets the uniform with the given name.void
setUniformi
(String name, int value1, int value2, int value3) Sets the uniform with the given name.void
setUniformi
(String name, int value1, int value2, int value3, int value4) Sets the uniform with the given name.void
setUniformMatrix
(int location, com.badlogic.gdx.math.Matrix3 matrix) void
setUniformMatrix
(int location, com.badlogic.gdx.math.Matrix3 matrix, boolean transpose) void
setUniformMatrix
(int location, com.badlogic.gdx.math.Matrix4 matrix) void
setUniformMatrix
(int location, com.badlogic.gdx.math.Matrix4 matrix, boolean transpose) void
setUniformMatrix
(String name, com.badlogic.gdx.math.Matrix3 matrix) Sets the uniform matrix with the given name.void
setUniformMatrix
(String name, com.badlogic.gdx.math.Matrix3 matrix, boolean transpose) Sets the uniform matrix with the given name.void
setUniformMatrix
(String name, com.badlogic.gdx.math.Matrix4 matrix) Sets the uniform matrix with the given name.void
setUniformMatrix
(String name, com.badlogic.gdx.math.Matrix4 matrix, boolean transpose) Sets the uniform matrix with the given name.void
setUniformMatrix3fv
(String name, FloatBuffer buffer, int count, boolean transpose) Sets an array of uniform matrices with the given name.void
setUniformMatrix4fv
(int location, float[] values, int offset, int length) void
setUniformMatrix4fv
(String name, float[] values, int offset, int length) void
setUniformMatrix4fv
(String name, FloatBuffer buffer, int count, boolean transpose) Sets an array of uniform matrices with the given name.void
setVertexAttribute
(int location, int size, int type, boolean normalize, int stride, int offset) void
setVertexAttribute
(int location, int size, int type, boolean normalize, int stride, Buffer buffer) void
setVertexAttribute
(String name, int size, int type, boolean normalize, int stride, int offset) Sets the vertex attribute with the given name.void
setVertexAttribute
(String name, int size, int type, boolean normalize, int stride, Buffer buffer) Sets the vertex attribute with the given name.Methods inherited from class gaiasky.util.gdx.shader.ExtShaderProgram
compile, isLazy
-
Field Details
-
POSITION_ATTRIBUTE
default name for position attributes- See Also:
-
COLOR_ATTRIBUTE
default name for color attributes- See Also:
-
TEXCOORD_ATTRIBUTE
default name for texture coordinates attributes, append texture unit number- See Also:
-
pedantic
public static boolean pedanticflag indicating whether attributes invalid input: '&' uniforms must be present at all times -
prependVertexCode
code that is always added to the vertex shader code, typically used to inject a #version line. Note that this is added as-is, you should include a newline (`\n`) if needed. -
prependTessControlCode
-
prependTessEvaluationCode
-
prependFragmentCode
code that is always added to every fragment shader code, typically used to inject a #version line. Note that this is added as-is, you should include a newline (`\n`) if needed.
-
-
Constructor Details
-
TessellationShaderProgram
-
-
Method Details
-
invalidateAllShaderPrograms
public static void invalidateAllShaderPrograms(com.badlogic.gdx.Application app) Invalidates all shaders so the next time they are used new handles are generated- Parameters:
app
-
-
clearAllShaderPrograms
public static void clearAllShaderPrograms(com.badlogic.gdx.Application app) -
getManagedStatus
-
getNumManagedShaderPrograms
public static int getNumManagedShaderPrograms()- Returns:
- the number of managed shader programs currently loaded
-
createProgram
protected int createProgram()- Overrides:
createProgram
in classExtShaderProgram
-
getLog
- Overrides:
getLog
in classExtShaderProgram
- Returns:
- the log info for the shader compilation and program linking stage. The shader needs to be bound for this method to have an effect.
-
isCompiled
public boolean isCompiled()- Overrides:
isCompiled
in classExtShaderProgram
- Returns:
- whether this ShaderProgram compiled successfully.
-
fetchUniformLocation
- Overrides:
fetchUniformLocation
in classExtShaderProgram
-
setUniformi
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformi
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue
- the value
-
setUniformi
public void setUniformi(int location, int value) - Overrides:
setUniformi
in classExtShaderProgram
-
setUniformi
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformi
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue1
- the first valuevalue2
- the second value
-
setUniformi
public void setUniformi(int location, int value1, int value2) - Overrides:
setUniformi
in classExtShaderProgram
-
setUniformi
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformi
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue1
- the first valuevalue2
- the second valuevalue3
- the third value
-
setUniformi
public void setUniformi(int location, int value1, int value2, int value3) - Overrides:
setUniformi
in classExtShaderProgram
-
setUniformi
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformi
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue1
- the first valuevalue2
- the second valuevalue3
- the third valuevalue4
- the fourth value
-
setUniformi
public void setUniformi(int location, int value1, int value2, int value3, int value4) - Overrides:
setUniformi
in classExtShaderProgram
-
setUniformf
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformf
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue
- the value
-
setUniformf
public void setUniformf(int location, float value) - Overrides:
setUniformf
in classExtShaderProgram
-
setUniformf
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformf
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue1
- the first valuevalue2
- the second value
-
setUniformf
public void setUniformf(int location, float value1, float value2) - Overrides:
setUniformf
in classExtShaderProgram
-
setUniformf
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformf
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue1
- the first valuevalue2
- the second valuevalue3
- the third value
-
setUniformf
public void setUniformf(int location, float value1, float value2, float value3) - Overrides:
setUniformf
in classExtShaderProgram
-
setUniformf
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformf
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalue1
- the first valuevalue2
- the second valuevalue3
- the third valuevalue4
- the fourth value
-
setUniformf
public void setUniformf(int location, float value1, float value2, float value3, float value4) - Overrides:
setUniformf
in classExtShaderProgram
-
setUniform1fv
- Overrides:
setUniform1fv
in classExtShaderProgram
-
setUniform1fv
public void setUniform1fv(int location, float[] values, int offset, int length) - Overrides:
setUniform1fv
in classExtShaderProgram
-
setUniform2fv
- Overrides:
setUniform2fv
in classExtShaderProgram
-
setUniform2fv
public void setUniform2fv(int location, float[] values, int offset, int length) - Overrides:
setUniform2fv
in classExtShaderProgram
-
setUniform3fv
- Overrides:
setUniform3fv
in classExtShaderProgram
-
setUniform3fv
public void setUniform3fv(int location, float[] values, int offset, int length) - Overrides:
setUniform3fv
in classExtShaderProgram
-
setUniform4fv
- Overrides:
setUniform4fv
in classExtShaderProgram
-
setUniform4fv
public void setUniform4fv(int location, float[] values, int offset, int length) - Overrides:
setUniform4fv
in classExtShaderProgram
-
setUniformMatrix
Sets the uniform matrix with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformMatrix
in classExtShaderProgram
- Parameters:
name
- the name of the uniformmatrix
- the matrix
-
setUniformMatrix
Sets the uniform matrix with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformMatrix
in classExtShaderProgram
- Parameters:
name
- the name of the uniformmatrix
- the matrixtranspose
- whether the matrix should be transposed
-
setUniformMatrix
public void setUniformMatrix(int location, com.badlogic.gdx.math.Matrix4 matrix) - Overrides:
setUniformMatrix
in classExtShaderProgram
-
setUniformMatrix
public void setUniformMatrix(int location, com.badlogic.gdx.math.Matrix4 matrix, boolean transpose) - Overrides:
setUniformMatrix
in classExtShaderProgram
-
setUniformMatrix
Sets the uniform matrix with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformMatrix
in classExtShaderProgram
- Parameters:
name
- the name of the uniformmatrix
- the matrix
-
setUniformMatrix
Sets the uniform matrix with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformMatrix
in classExtShaderProgram
- Parameters:
name
- the name of the uniformmatrix
- the matrixtranspose
- whether the uniform matrix should be transposed
-
setUniformMatrix
public void setUniformMatrix(int location, com.badlogic.gdx.math.Matrix3 matrix) - Overrides:
setUniformMatrix
in classExtShaderProgram
-
setUniformMatrix
public void setUniformMatrix(int location, com.badlogic.gdx.math.Matrix3 matrix, boolean transpose) - Overrides:
setUniformMatrix
in classExtShaderProgram
-
setUniformMatrix3fv
Sets an array of uniform matrices with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformMatrix3fv
in classExtShaderProgram
- Parameters:
name
- the name of the uniformbuffer
- buffer containing the matrix datatranspose
- whether the uniform matrix should be transposed
-
setUniformMatrix4fv
Sets an array of uniform matrices with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformMatrix4fv
in classExtShaderProgram
- Parameters:
name
- the name of the uniformbuffer
- buffer containing the matrix datatranspose
- whether the uniform matrix should be transposed
-
setUniformMatrix4fv
public void setUniformMatrix4fv(int location, float[] values, int offset, int length) - Overrides:
setUniformMatrix4fv
in classExtShaderProgram
-
setUniformMatrix4fv
- Overrides:
setUniformMatrix4fv
in classExtShaderProgram
-
setUniformf
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformf
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalues
- x and y as the first and second values respectively
-
setUniformf
public void setUniformf(int location, com.badlogic.gdx.math.Vector2 values) - Overrides:
setUniformf
in classExtShaderProgram
-
setUniformf
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformf
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalues
- x, y and z as the first, second and third values respectively
-
setUniformf
public void setUniformf(int location, com.badlogic.gdx.math.Vector3 values) - Overrides:
setUniformf
in classExtShaderProgram
-
setUniformf
Sets the uniform with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setUniformf
in classExtShaderProgram
- Parameters:
name
- the name of the uniformvalues
- r, g, b and a as the first through fourth values respectively
-
setUniformf
public void setUniformf(int location, com.badlogic.gdx.graphics.Color values) - Overrides:
setUniformf
in classExtShaderProgram
-
setVertexAttribute
public void setVertexAttribute(String name, int size, int type, boolean normalize, int stride, Buffer buffer) Sets the vertex attribute with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setVertexAttribute
in classExtShaderProgram
- Parameters:
name
- the attribute namesize
- the number of components, must be >= 1 and invalid input: '<'= 4type
- the type, must be one of GL20.GL_BYTE, GL20.GL_UNSIGNED_BYTE, GL20.GL_SHORT, GL20.GL_UNSIGNED_SHORT,GL20.GL_FIXED, or GL20.GL_FLOAT. GL_FIXED will not work on the desktopnormalize
- whether fixed point data should be normalized. Will not work on the desktopstride
- the stride in bytes between successive attributesbuffer
- the buffer containing the vertex attributes.
-
setVertexAttribute
public void setVertexAttribute(int location, int size, int type, boolean normalize, int stride, Buffer buffer) - Overrides:
setVertexAttribute
in classExtShaderProgram
-
setVertexAttribute
public void setVertexAttribute(String name, int size, int type, boolean normalize, int stride, int offset) Sets the vertex attribute with the given name. TheShaderProgram
must be bound for this to work.- Overrides:
setVertexAttribute
in classExtShaderProgram
- Parameters:
name
- the attribute namesize
- the number of components, must be >= 1 and invalid input: '<'= 4type
- the type, must be one of GL20.GL_BYTE, GL20.GL_UNSIGNED_BYTE, GL20.GL_SHORT, GL20.GL_UNSIGNED_SHORT,GL20.GL_FIXED, or GL20.GL_FLOAT. GL_FIXED will not work on the desktopnormalize
- whether fixed point data should be normalized. Will not work on the desktopstride
- the stride in bytes between successive attributesoffset
- byte offset into the vertex buffer object bound to GL20.GL_ARRAY_BUFFER.
-
setVertexAttribute
public void setVertexAttribute(int location, int size, int type, boolean normalize, int stride, int offset) - Overrides:
setVertexAttribute
in classExtShaderProgram
-
begin
public void begin()Makes OpenGL ES 2.0 use this vertex and fragment shader pair. When you are done with this shader you have to callShaderProgram.end()
.- Overrides:
begin
in classExtShaderProgram
-
end
public void end()Disables this shader. Must be called when one is done with the shader. Don't mix it with dispose, that will release the shader resources.- Overrides:
end
in classExtShaderProgram
-
disableVertexAttribute
Disables the vertex attribute with the given name- Overrides:
disableVertexAttribute
in classExtShaderProgram
- Parameters:
name
- the vertex attribute name
-
disableVertexAttribute
public void disableVertexAttribute(int location) - Overrides:
disableVertexAttribute
in classExtShaderProgram
-
enableVertexAttribute
Enables the vertex attribute with the given name- Overrides:
enableVertexAttribute
in classExtShaderProgram
- Parameters:
name
- the vertex attribute name
-
enableVertexAttribute
public void enableVertexAttribute(int location) - Overrides:
enableVertexAttribute
in classExtShaderProgram
-
setAttributef
Sets the given attribute- Overrides:
setAttributef
in classExtShaderProgram
- Parameters:
name
- the name of the attributevalue1
- the first valuevalue2
- the second valuevalue3
- the third valuevalue4
- the fourth value
-
hasAttribute
- Overrides:
hasAttribute
in classExtShaderProgram
- Parameters:
name
- the name of the attribute- Returns:
- whether the attribute is available in the shader
-
getAttributeType
- Overrides:
getAttributeType
in classExtShaderProgram
- Parameters:
name
- the name of the attribute- Returns:
- the type of the attribute, one of
GL20.GL_FLOAT
,GL20.GL_FLOAT_VEC2
etc.
-
getAttributeLocation
- Overrides:
getAttributeLocation
in classExtShaderProgram
- Parameters:
name
- the name of the attribute- Returns:
- the location of the attribute or -1.
-
getAttributeSize
- Overrides:
getAttributeSize
in classExtShaderProgram
- Parameters:
name
- the name of the attribute- Returns:
- the size of the attribute or 0.
-
hasUniform
- Overrides:
hasUniform
in classExtShaderProgram
- Parameters:
name
- the name of the uniform- Returns:
- whether the uniform is available in the shader
-
getUniformType
- Overrides:
getUniformType
in classExtShaderProgram
- Parameters:
name
- the name of the uniform- Returns:
- the type of the uniform, one of
GL20.GL_FLOAT
,GL20.GL_FLOAT_VEC2
etc.
-
getUniformLocation
- Overrides:
getUniformLocation
in classExtShaderProgram
- Parameters:
name
- the name of the uniform- Returns:
- the location of the uniform or -1.
-
getUniformSize
- Overrides:
getUniformSize
in classExtShaderProgram
- Parameters:
name
- the name of the uniform- Returns:
- the size of the uniform or 0.
-
getAttributes
- Overrides:
getAttributes
in classExtShaderProgram
- Returns:
- the attributes
-
getUniforms
- Overrides:
getUniforms
in classExtShaderProgram
- Returns:
- the uniforms
-
getVertexShaderSource
- Overrides:
getVertexShaderSource
in classExtShaderProgram
- Returns:
- the source of the vertex shader
-
getFragmentShaderSource
- Overrides:
getFragmentShaderSource
in classExtShaderProgram
- Returns:
- the source of the fragment shader
-
dispose
public void dispose()Description copied from class:ExtShaderProgram
Disposes all resources associated with this shader. Must be called when the shader is no longer used.- Specified by:
dispose
in interfacecom.badlogic.gdx.utils.Disposable
- Overrides:
dispose
in classExtShaderProgram
-