TDME2 1.9.121
|
Interface to lighting shader program. More...
#include <tdme/engine/subsystems/lighting/LightingShader.h>
Classes | |
struct | LightingShaderContext |
Public Member Functions | |
LightingShader (Renderer *renderer) | |
Public constructor. More... | |
~LightingShader () | |
Destructor. More... | |
bool | isInitialized () |
void | initialize () |
Initialize renderer. More... | |
void | useProgram (Engine *engine) |
Use lighting program. More... | |
void | unUseProgram () |
Unuse lighting program. More... | |
void | updateEffect (int contextIdx) |
Update effect to program. More... | |
void | updateMaterial (int contextIdx) |
Update material to program. More... | |
void | updateLight (int contextIdx, int32_t lightId) |
Update light to program. More... | |
void | updateMatrices (int contextIdx) |
Update matrices to program. More... | |
void | updateTextureMatrix (int contextIdx) |
Update texture matrix to program. More... | |
void | updateShaderParameters (int contextIdx) |
Update shader parameters. More... | |
void | setShader (int contextIdx, const string &id) |
Set shader. More... | |
void | bindTexture (int contextIdx, int32_t textureId) |
Bind texture. More... | |
bool | hasShader (const string &shaderId) |
Returns if shader with given shader id does exist. More... | |
Private Attributes | |
unordered_map< string, LightingShaderImplementation * > | shader |
Renderer * | renderer { nullptr } |
Engine * | engine { nullptr } |
bool | running { false } |
vector< LightingShaderContext > | contexts |
LightingShader | ( | Renderer * | renderer | ) |
~LightingShader | ( | ) |
Destructor.
Definition at line 94 of file LightingShader.cpp.
void bindTexture | ( | int | contextIdx, |
int32_t | textureId | ||
) |
Bind texture.
contextIdx | context index |
textureId | texture id |
Definition at line 200 of file LightingShader.cpp.
|
inline |
Returns if shader with given shader id does exist.
shaderId | shader id |
Definition at line 126 of file LightingShader.h.
void initialize | ( | ) |
Initialize renderer.
Definition at line 114 of file LightingShader.cpp.
bool isInitialized | ( | ) |
Definition at line 100 of file LightingShader.cpp.
void setShader | ( | int | contextIdx, |
const string & | id | ||
) |
Set shader.
contextIdx | context index |
id | id |
Definition at line 173 of file LightingShader.cpp.
void unUseProgram | ( | ) |
Unuse lighting program.
Definition at line 127 of file LightingShader.cpp.
void updateEffect | ( | int | contextIdx | ) |
Update effect to program.
contextIdx | context index |
Definition at line 139 of file LightingShader.cpp.
void updateLight | ( | int | contextIdx, |
int32_t | lightId | ||
) |
Update light to program.
contextIdx | context index |
lightId | light id |
Definition at line 153 of file LightingShader.cpp.
void updateMaterial | ( | int | contextIdx | ) |
Update material to program.
contextIdx | context index |
Definition at line 146 of file LightingShader.cpp.
void updateMatrices | ( | int | contextIdx | ) |
Update matrices to program.
contextIdx | context index |
Definition at line 160 of file LightingShader.cpp.
void updateShaderParameters | ( | int | contextIdx | ) |
void updateTextureMatrix | ( | int | contextIdx | ) |
Update texture matrix to program.
contextIdx | context index |
Definition at line 167 of file LightingShader.cpp.
void useProgram | ( | Engine * | engine | ) |
|
private |
Definition at line 35 of file LightingShader.h.
|
private |
Definition at line 33 of file LightingShader.h.
|
private |
Definition at line 32 of file LightingShader.h.
|
private |
Definition at line 34 of file LightingShader.h.
|
private |
Definition at line 31 of file LightingShader.h.