Package codechicken.lib.render.shader
Interface ConstantCache
- All Known Implementing Classes:
ShaderConstantCache
public interface ConstantCache
Provides methods to mutate specilization constants
before the shader is specialized.
Created by KitsuneAlex on 19/11/21.
-
Method Summary
Modifier and TypeMethodDescriptionvoidconstant1b(int id, boolean value) voidconstant1f(int id, float value) voidconstant1i(int id, int value)
-
Method Details
-
constant1i
void constant1i(int id, int value) -
constant1f
void constant1f(int id, float value) -
constant1b
void constant1b(int id, boolean value)
-