TDME2 1.9.121
GUIShader.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
9
11
12using std::array;
13
15
16/**
17 * GUI shader
18 * @author Andreas Drewke
19 * @version $Id$
20 */
22{
23
24private:
25 Renderer* renderer { nullptr };
26 int32_t vertexShaderId { -1 };
27 int32_t fragmentShaderId { -1 };
28 int32_t programId { -1 };
31 int32_t uniformMaskTextureUnit { -1 };
33 int32_t uniformMaskMaxValue { -1 };
34 int32_t uniformEffectColorMul { -1 };
35 int32_t uniformEffectColorAdd { -1 };
36 int32_t uniformTextureMatrix { -1 };
38 array<int32_t, 10> uniformGradientColors { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
40 array<int32_t, 10> uniformGradientColorStarts { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
44
45public:
46 /**
47 * Public constructor
48 * @param renderer renderer
49 */
51
52 /**
53 * @return if initialized and ready to use
54 */
55 bool isInitialized();
56
57 /**
58 * Init shadow mapping
59 */
60 void initialize();
61
62 /**
63 * Use render GUI program
64 */
65 void useProgram();
66
67 /**
68 * Un use render GUI program
69 */
70 void unUseProgram();
71
72 /**
73 * Bind texture
74 * @param textureId texture id
75 */
76 void bindTexture(int32_t textureId);
77
78 /**
79 * Update effect to program
80 */
81 void updateEffect();
82
83 /**
84 * Update texure matrix to program
85 */
87
88 /**
89 * Set gradient properties
90 * @deprecated use rather custom UI shader and parameters
91 * @param count color count
92 * @param colors colors
93 * @param colorStarts color starts
94 * @param rotationAngle rotation angle
95 */
96 void setGradient(int count, array<GUIColor, 10>& colors, array<float, 10>& colorStarts, float rotationAngle);
97
98 /**
99 * Disable gradient
100 * @deprecated use rather custom UI shader and parameters
101 */
102 void unsetGradient();
103
104};
array< int32_t, 10 > uniformGradientColors
Definition: GUIShader.h:38
void updateEffect()
Update effect to program.
Definition: GUIShader.cpp:139
void setGradient(int count, array< GUIColor, 10 > &colors, array< float, 10 > &colorStarts, float rotationAngle)
Set gradient properties.
Definition: GUIShader.cpp:162
void initialize()
Init shadow mapping.
Definition: GUIShader.cpp:35
GUIShader(Renderer *renderer)
Public constructor.
Definition: GUIShader.cpp:23
int32_t uniformInverseGradientTextureMatrix
Definition: GUIShader.h:41
void unsetGradient()
Disable gradient.
Definition: GUIShader.cpp:176
void bindTexture(int32_t textureId)
Bind texture.
Definition: GUIShader.cpp:125
void useProgram()
Use render GUI program.
Definition: GUIShader.cpp:107
void updateTextureMatrix()
Update texure matrix to program.
Definition: GUIShader.cpp:152
array< int32_t, 10 > uniformGradientColorStarts
Definition: GUIShader.h:40
void unUseProgram()
Un use render GUI program.
Definition: GUIShader.cpp:120