TDME2 1.9.121
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PostProcessing.cpp
Go to the documentation of this file.
1#include <map>
2#include <string>
3
4using std::map;
5using std::string;
6
8
9#include <tdme/tdme.h>
13
15
19
20PostProcessing::PostProcessing() {
21 {
24 if (program->isSupported() == true) {
25 programs["depth_blur"] = program;
26 } else {
27 delete program;
28 }
29
30 }
31 {
34 if (program->isSupported() == true) {
35 programs["desaturation"] = program;
36 } else {
37 delete program;
38 }
39
40 }
41 {
45 if (program->isSupported() == true) {
46 programs["ssao"] = program;
47 } else {
48 delete program;
49 }
50 }
51 {
53 program->addEffectPass(
55 2,
56 2,
57 "ls_",
58 false,
59 false,
60 false,
61 EntityRenderer::RENDERTYPE_TEXTUREARRAYS_DIFFUSEMASKEDTRANSPARENCY |
62 EntityRenderer::RENDERTYPE_MATERIALS_DIFFUSEMASKEDTRANSPARENCY |
63 EntityRenderer::RENDERTYPE_TEXTURES_DIFFUSEMASKEDTRANSPARENCY,
64 Color4(1.0f, 1.0f, 1.0f, 0.0f),
65 true,
66 true
67 );
68 program->addPostProcessingStep(
69 "light_scattering",
72 false,
74 );
75 if (program->isSupported() == true) {
76 programs["light_scattering"] = program;
77 } else {
78 delete program;
79 }
80 }
81 {
84 if (program->isSupported() == true) {
85 programs["vignette"] = program;
86 } else {
87 delete program;
88 }
89
90 }
91}
92
94 auto programIt = programs.find(programId);
95 return programIt == programs.end()?nullptr:programIt->second;
96}
97
98
@ EFFECTPASS_LIGHTSCATTERING
Definition: Engine.h:172
Color 4 definition.
Definition: Color4.h:20
PostProcessingProgram * getPostProcessingProgram(const string &programId)
Get post processing program.
map< string, PostProcessingProgram * > programs