4#include <unordered_map>
14using std::unordered_map;
33 unordered_map<string, ShadowMapCreationShaderImplementation*>
shader;
37 vector<ShadowMapCreationShaderContext>
contexts;
101 void bindTexture(
int contextIdx, int32_t textureId);
108 void setShader(
int contextIdx,
const string&
id);
Shadow mapping shader to create a shadow map.
void initialize()
Init shadow map creation shader program.
void updateMatrices(int contextIdx)
Set up matrices.
void useProgram(Engine *engine)
Use shadow map creation shader program.
void setShader(int contextIdx, const string &id)
Set shader.
void updateTextureMatrix(int contextIdx)
Set up texture matrix.
void updateShaderParameters(int contextIdx)
Update shader parameters.
unordered_map< string, ShadowMapCreationShaderImplementation * > shader
void updateMaterial(int contextIdx)
Update material.
ShadowMapCreationShader(Renderer *renderer)
Constructor.
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
void unUseProgram()
Unuse shadow map creation shader program.
~ShadowMapCreationShader()
Destructor.
vector< ShadowMapCreationShaderContext > contexts
Pre shadow mapping shader for create shadow map.
ShadowMapCreationShaderImplementation * implementation