TDME2 1.9.121
|
Shadow mapping shader to render shadow maps. More...
#include <tdme/engine/subsystems/shadowmapping/ShadowMapRenderShader.h>
Classes | |
struct | ShadowMapRenderShaderContext |
Public Member Functions | |
ShadowMapRenderShader (Renderer *renderer) | |
Public constructor. More... | |
~ShadowMapRenderShader () | |
Destructor. More... | |
bool | isInitialized () |
void | initialize () |
Initialize shadow map render shader program. More... | |
void | useProgram (Engine *engine) |
Use shadow map render shader program. More... | |
void | unUseProgram () |
Unuse shadow map render shader program. More... | |
void | updateMatrices (int contextIdx) |
Update matrices. More... | |
void | updateTextureMatrix (int contextIdx) |
Update up texture matrix. More... | |
void | updateMaterial (int contextIdx) |
Update material. More... | |
void | updateLight (int contextIdx, int32_t lightId) |
Update light. More... | |
void | updateShaderParameters (int contextIdx) |
Update shader parameters. More... | |
void | bindTexture (int contextIdx, int32_t textureId) |
Bind texture. More... | |
void | setDepthBiasMVPMatrix (int contextIdx, const Matrix4x4 &depthBiasMVPMatrix) |
Set up program depth bias mvp matrix. More... | |
void | setRenderLightId (int32_t lightId) |
Set light id. More... | |
void | setShader (int contextIdx, const string &id) |
Set shader. More... | |
Private Attributes | |
unordered_map< string, ShadowMapRenderShaderImplementation * > | shader |
bool | running { false } |
Matrix4x4 | depthBiasMVPMatrix |
Engine * | engine { nullptr } |
Renderer * | renderer { nullptr } |
vector< ShadowMapRenderShaderContext > | contexts |
int32_t | lightId { -1 } |
Shadow mapping shader to render shadow maps.
Definition at line 27 of file ShadowMapRenderShader.h.
ShadowMapRenderShader | ( | Renderer * | renderer | ) |
Public constructor.
renderer | renderer |
Definition at line 33 of file ShadowMapRenderShader.cpp.
Destructor.
Definition at line 42 of file ShadowMapRenderShader.cpp.
void bindTexture | ( | int | contextIdx, |
int32_t | textureId | ||
) |
Bind texture.
contextIdx | context index |
textureId | texture id |
Definition at line 117 of file ShadowMapRenderShader.cpp.
void initialize | ( | ) |
Initialize shadow map render shader program.
Definition at line 58 of file ShadowMapRenderShader.cpp.
bool isInitialized | ( | ) |
Definition at line 49 of file ShadowMapRenderShader.cpp.
void setDepthBiasMVPMatrix | ( | int | contextIdx, |
const Matrix4x4 & | depthBiasMVPMatrix | ||
) |
Set up program depth bias mvp matrix.
contextIdx | context index |
depthBiasMVPMatrix | depth bias mvp matrix |
Definition at line 124 of file ShadowMapRenderShader.cpp.
void setRenderLightId | ( | int32_t | lightId | ) |
Set light id.
lightId | light id to render |
Definition at line 132 of file ShadowMapRenderShader.cpp.
void setShader | ( | int | contextIdx, |
const string & | id | ||
) |
void unUseProgram | ( | ) |
Unuse shadow map render shader program.
Definition at line 71 of file ShadowMapRenderShader.cpp.
void updateLight | ( | int | contextIdx, |
int32_t | lightId | ||
) |
Update light.
contextIdx | context index |
lightId | light id |
Definition at line 105 of file ShadowMapRenderShader.cpp.
void updateMaterial | ( | int | contextIdx | ) |
Update material.
contextIdx | context index |
Definition at line 98 of file ShadowMapRenderShader.cpp.
void updateMatrices | ( | int | contextIdx | ) |
Update matrices.
contextIdx | context index |
Definition at line 85 of file ShadowMapRenderShader.cpp.
void updateShaderParameters | ( | int | contextIdx | ) |
Update shader parameters.
context |
Definition at line 111 of file ShadowMapRenderShader.cpp.
void updateTextureMatrix | ( | int | contextIdx | ) |
Update up texture matrix.
contextIdx | context index |
Definition at line 92 of file ShadowMapRenderShader.cpp.
void useProgram | ( | Engine * | engine | ) |
Use shadow map render shader program.
engine | engine |
Definition at line 65 of file ShadowMapRenderShader.cpp.
|
private |
Definition at line 38 of file ShadowMapRenderShader.h.
|
private |
Definition at line 35 of file ShadowMapRenderShader.h.
|
private |
Definition at line 36 of file ShadowMapRenderShader.h.
|
private |
Definition at line 39 of file ShadowMapRenderShader.h.
|
private |
Definition at line 37 of file ShadowMapRenderShader.h.
|
private |
Definition at line 34 of file ShadowMapRenderShader.h.
|
private |
Definition at line 33 of file ShadowMapRenderShader.h.