TDME2 1.9.121
|
Post processing shader program implementation interface. More...
#include <tdme/engine/subsystems/postprocessing/PostProcessingShaderImplementation.h>
Public Member Functions | |
virtual | ~PostProcessingShaderImplementation () |
Public destructor. More... | |
virtual bool | isInitialized ()=0 |
virtual void | initialize ()=0 |
Initialize post processing shader. More... | |
virtual void | useProgram (int contextIdx)=0 |
Use program. More... | |
virtual void | unUseProgram ()=0 |
Unuse program. More... | |
virtual void | setBufferPixelWidth (int contextIdx, float pixelWidth)=0 |
Set source buffer pixel width. More... | |
virtual void | setBufferPixelHeight (int contextIdx, float pixelHeight)=0 |
Set source buffer pixel height. More... | |
virtual void | setShaderParameters (int contextIdx, Engine *engine)=0 |
Set shader parameters. More... | |
Post processing shader program implementation interface.
Definition at line 17 of file PostProcessingShaderImplementation.h.
|
inlinevirtual |
Public destructor.
Definition at line 23 of file PostProcessingShaderImplementation.h.
|
pure virtual |
Initialize post processing shader.
Implemented in PostProcessingShaderBaseImplementation, PostProcessingShaderBlurImplementation, PostProcessingShaderDefaultImplementation, PostProcessingShaderDesaturationImplementation, PostProcessingShaderLightScatteringImplementation, PostProcessingShaderSSAOImplementation, PostProcessingShaderSSAOMapImplementation, and PostProcessingShaderVignetteImplementation.
|
pure virtual |
Implemented in PostProcessingShaderBaseImplementation.
|
pure virtual |
Set source buffer pixel height.
contextIdx | context index |
pixelHeight | pixel height |
Implemented in PostProcessingShaderBaseImplementation.
|
pure virtual |
Set source buffer pixel width.
contextIdx | context index |
pixelWidth | pixel width |
Implemented in PostProcessingShaderBaseImplementation.
|
pure virtual |
Set shader parameters.
contextIdx | context index |
engine | engine |
Implemented in PostProcessingShaderBlurImplementation, PostProcessingShaderDefaultImplementation, PostProcessingShaderDesaturationImplementation, PostProcessingShaderLightScatteringImplementation, PostProcessingShaderSSAOImplementation, PostProcessingShaderSSAOMapImplementation, PostProcessingShaderVignetteImplementation, and PostProcessingShaderBaseImplementation.
|
pure virtual |
Unuse program.
Implemented in PostProcessingShaderBaseImplementation.
|
pure virtual |
Use program.
contextIdx | context index |
Implemented in PostProcessingShaderBaseImplementation, and PostProcessingShaderSSAOMapImplementation.