TDME2 1.9.121
PostProcessingShader.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
10
11using std::string;
12using std::unordered_map;
13
17
18/**
19 * Post processing shader
20 * @author Andreas Drewke
21 * @version $Id$
22 */
24{
25private:
26 unordered_map<string, PostProcessingShaderImplementation*> shader;
28
29 bool running { false };
30
31public:
32 /**
33 * Public constructor
34 * @param renderer renderer
35 */
37
38 /**
39 * Public destructor
40 */
42
43 /**
44 * @return initialized and ready to be used
45 */
46 bool isInitialized();
47
48 /**
49 * Initialize renderer
50 */
51 void initialize();
52
53 /**
54 * Use program
55 */
56 void useProgram();
57
58 /**
59 * Unuse program
60 */
61 void unUseProgram();
62
63 /**
64 * Has post processing shader
65 * @param id shader id
66 * @return if shader exists and is initialized
67 */
68 bool hasShader(const string& id);
69
70 /**
71 * Set post processing shader
72 * @param contextIdx context index
73 */
74 void setShader(int contextIdx, const string& id);
75
76 /**
77 * Set source buffer pixel width
78 * @param contextIdx context index
79 * @param pixelWidth pixel width
80 */
81 void setBufferPixelWidth(int contextIdx, float pixelWidth);
82
83 /**
84 * Set source buffer pixel height
85 * @param contextIdx context index
86 * @param pixelHeight pixel height
87 */
88 void setBufferPixelHeight(int contextIdx, float pixelHeight);
89
90 /**
91 * Set shader parameters
92 * @param engine engine
93 */
94 void setShaderParameters(int contextIdx, Engine* engine);
95
96};
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
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.