Interface UniformFinder
- All Known Subinterfaces:
ManagedCoreShader,ManagedShaderEffect
- All Known Implementing Classes:
ResettableManagedCoreShader,ResettableManagedShaderBase,ResettableManagedShaderEffect
public interface UniformFinder
-
Method Summary
Modifier and TypeMethodDescriptionfindSampler(String samplerName) Finds a sampler declared in jsonfindUniform1f(String uniformName) Finds a uniform declared in jsonfindUniform1i(String uniformName) Finds a uniform declared in jsonfindUniform2f(String uniformName) Finds a uniform declared in jsonfindUniform2i(String uniformName) Finds a uniform declared in jsonfindUniform3f(String uniformName) Finds a uniform declared in jsonfindUniform3i(String uniformName) Finds a uniform declared in jsonfindUniform4f(String uniformName) Finds a uniform declared in jsonfindUniform4i(String uniformName) Finds a uniform declared in jsonfindUniformMat4(String uniformName) Finds a uniform declared in json
-
Method Details
-
findUniform1i
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniform2i
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniform3i
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniform4i
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniform1f
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniform2f
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniform3f
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniform4f
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findUniformMat4
Finds a uniform declared in json- Parameters:
uniformName- the name of the uniform field in the shader source file
-
findSampler
Finds a sampler declared in json- Parameters:
samplerName- the name of the sampler field in the shader source file
-