TDME2 1.9.121
EZRShader.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
11#include <tdme/math/Matrix4x4.h>
12
13using std::string;
14using std::unordered_map;
15using std::vector;
16
21
22/**
23 * Early z rejection shader
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29private:
32 };
33
34 unordered_map<string, EZRShaderImplementation*> shader;
35 bool running { false };
36 Engine* engine { nullptr };
37 Renderer* renderer { nullptr };
38 vector<EZRShaderContext> contexts;
39
40public:
41 /**
42 * Constructor
43 * @param renderer renderer
44 */
46
47 /**
48 * Destructor
49 */
50 ~EZRShader();
51
52 /**
53 * @return if initialized and ready to use
54 */
55 bool isInitialized();
56
57 /**
58 * Init EZR shader
59 */
60 void initialize();
61
62 /**
63 * Use EZR render shader program
64 * @param engine engine
65 */
67
68 /**
69 * Unuse EZR render shader program
70 */
71 void unUseProgram();
72
73 /**
74 * Update program matrices
75 * @param renderer renderer
76 * @param contextIdx context index
77 */
78 void updateMatrices(int contextIdx);
79
80 /**
81 * Set up program texture matrix
82 * @param contextIdx context index
83 * @param renderer renderer
84 */
85 void updateTextureMatrix(int contextIdx);
86
87 /**
88 * Update material
89 * @param renderer renderer
90 * @param contextIdx context index
91 */
92 void updateMaterial(int contextIdx);
93
94 /**
95 * Bind texture
96 * @param renderer renderer
97 * @param contextIdx context index
98 * @param textureId texture id
99 */
100 void bindTexture(int contextIdx, int32_t textureId);
101
102 /**
103 * Set shader
104 * @param context
105 * @param id shader id
106 */
107 void setShader(int contextIdx, const string& id);
108
109 /**
110 * Update shader parameters
111 * @param context
112 */
113 void updateShaderParameters(int contextIdx);
114
115};
Engine main class.
Definition: Engine.h:122
EZRShader(Renderer *renderer)
Constructor.
Definition: EZRShader.cpp:30
void updateMatrices(int contextIdx)
Update program matrices.
Definition: EZRShader.cpp:79
void useProgram(Engine *engine)
Use EZR render shader program.
Definition: EZRShader.cpp:59
void setShader(int contextIdx, const string &id)
Set shader.
Definition: EZRShader.cpp:112
unordered_map< string, EZRShaderImplementation * > shader
Definition: EZRShader.h:34
void updateTextureMatrix(int contextIdx)
Set up program texture matrix.
Definition: EZRShader.cpp:86
void updateShaderParameters(int contextIdx)
Update shader parameters.
Definition: EZRShader.cpp:106
void updateMaterial(int contextIdx)
Update material.
Definition: EZRShader.cpp:92
void bindTexture(int contextIdx, int32_t textureId)
Bind texture.
Definition: EZRShader.cpp:99
void unUseProgram()
Unuse EZR render shader program.
Definition: EZRShader.cpp:65
4x4 3D Matrix class
Definition: Matrix4x4.h:24