TDME2 1.9.121
PostProcessingProgram.cpp
Go to the documentation of this file.
1#include <string>
2#include <vector>
3
4using std::string;
5using std::vector;
6
7#include <tdme/tdme.h>
10#include <tdme/engine/Engine.h>
11
14
15
16PostProcessingProgram::PostProcessingProgram(RenderPass renderPass) {
17 this->renderPass = renderPass;
18}
19
21 int effectPassIdx,
22 int frameBufferWidthDivideFactor,
23 int frameBufferHeightDivideFactor,
24 string shaderPrefix,
25 bool useEZR,
26 bool applyShadowMapping,
27 bool applyPostProcessing,
28 int32_t renderTypes,
29 Color4 clearColor,
30 bool renderLightSources,
31 bool skipOnLightSourceNotVisible
32) {
34 effectPass.effectPassIdx = effectPassIdx;
35 effectPass.frameBufferWidthDivideFactor = frameBufferWidthDivideFactor;
36 effectPass.frameBufferHeightDivideFactor = frameBufferHeightDivideFactor;
37 effectPass.shaderPrefix = shaderPrefix;
38 effectPass.useEZR = useEZR;
39 effectPass.applyShadowMapping = applyShadowMapping;
40 effectPass.applyPostProcessing = applyPostProcessing;
41 effectPass.renderTypes = renderTypes;
42 effectPass.clearColor = clearColor;
43 effectPass.renderLightSources = renderLightSources;
44 effectPass.skipOnLightSourceNotVisible = skipOnLightSourceNotVisible;
45 //effectPass
46 effectPasses.push_back(effectPass);
47}
48
51 step.shaderId = shaderId;
52 step.source = source;
53 step.target = target;
54 step.bindTemporary = bindTemporary;
55 step.blendToSource = blendToSource;
56 steps.push_back(step);
57}
58
60 for (auto step: steps) {
61 if (Engine::getInstance()->getPostProcessingShader()->hasShader(step.shaderId) == false) return false;
62 }
63 return true;
64
65}
static Engine * getInstance()
Returns engine instance.
Definition: Engine.h:554
Color 4 definition.
Definition: Color4.h:20
void addEffectPass(int effectPassIdx, int frameBufferWidthDivideFactor, int frameBufferHeightDivideFactor, string shaderPrefix, bool useEZR, bool applyShadowMapping, bool applyPostProcessing, int32_t renderTypes, Color4 clearColor, bool renderLightSources, bool skipOnLightSourceNotVisible)
Add effect pass.
void addPostProcessingStep(string shaderId, FrameBufferSource source, FrameBufferTarget target, bool bindTemporary=false, FrameBufferSource blendToSource=FRAMEBUFFERSOURCE_NONE)
Add step.