TDME2 1.9.121
PostProcessingShader.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
16#include <tdme/engine/Engine.h>
17
18using std::string;
19using std::unordered_map;
20
32
33PostProcessingShader::PostProcessingShader(Renderer* renderer)
34{
42 implementation = nullptr;
43}
44
46{
47 for (auto shaderIt: shader) {
48 delete shaderIt.second;
49 }
50}
51
53{
54 auto initialized = true;
55 for (auto shaderIt: shader) {
56 initialized&= shaderIt.second->isInitialized();
57 }
58 return initialized;
59}
60
62{
63 for (auto shaderIt: shader) {
64 shaderIt.second->initialize();
65 }
66}
67
69{
70 running = true;
71}
72
74{
75 running = false;
76 if (implementation != nullptr) {
78 }
79 implementation = nullptr;
80}
81
82bool PostProcessingShader::hasShader(const string& id) {
83 return shader.find(id) != shader.end();
84}
85
86void PostProcessingShader::setShader(int contextIdx, const string& id) {
87 if (running == false) return;
88
89 auto currentImplementation = implementation;
90 auto shaderIt = shader.find(id);
91 if (shaderIt == shader.end()) {
92 shaderIt = shader.find("default");
93 }
94 implementation = shaderIt->second;
95
96 if (currentImplementation != implementation) {
97 if (currentImplementation != nullptr) currentImplementation->unUseProgram();
98 implementation->useProgram(contextIdx);
99 }
100}
101
102void PostProcessingShader::setBufferPixelWidth(int contextIdx, float pixelWidth) {
103 if (implementation == nullptr) return;
104 implementation->setBufferPixelWidth(contextIdx, pixelWidth);
105}
106
107void PostProcessingShader::setBufferPixelHeight(int contextIdx, float pixelHeight) {
108 if (implementation == nullptr) return;
109 implementation->setBufferPixelHeight(contextIdx, pixelHeight);
110}
111
113 if (implementation == nullptr) return;
114 implementation->setShaderParameters(contextIdx, engine);
115}
Engine main class.
Definition: Engine.h:122
static bool isSupported(Renderer *renderer)
Returns if shader is supported on given renderer.
static bool isSupported(Renderer *renderer)
Returns if shader is supported on given renderer.
static bool isSupported(Renderer *renderer)
Returns if shader is supported on given renderer.
static bool isSupported(Renderer *renderer)
Returns if shader is supported on given renderer.
static bool isSupported(Renderer *renderer)
Returns if shader is supported on given renderer.
static bool isSupported(Renderer *renderer)
Returns if shader is supported on given renderer.
unordered_map< string, PostProcessingShaderImplementation * > shader
void setShader(int contextIdx, const string &id)
Set post processing shader.
void setBufferPixelWidth(int contextIdx, float pixelWidth)
Set source buffer pixel width.
bool hasShader(const string &id)
Has post processing shader.
void setShaderParameters(int contextIdx, Engine *engine)
Set shader parameters.
void setBufferPixelHeight(int contextIdx, float pixelHeight)
Set source buffer pixel height.
virtual void setShaderParameters(int contextIdx, Engine *engine)=0
Set shader parameters.
virtual void setBufferPixelHeight(int contextIdx, float pixelHeight)=0
Set source buffer pixel height.
virtual void setBufferPixelWidth(int contextIdx, float pixelWidth)=0
Set source buffer pixel width.