TDME2 1.9.121
ParticlesShader.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
9
13
14/**
15 * Particles shader program
16 * @author Andreas Drewke
17 * @version $Id$
18 */
20{
21private:
22 int32_t renderProgramId { -1 };
23 int32_t renderFragmentShaderId { -1 };
24 int32_t renderVertexShaderId { -1 };
25 int32_t uniformMVPMatrix { -1 };
26 array<int32_t, 16> uniformDiffuseTextureUnits;
27 int32_t uniformViewPortWidth { -1 };
28 int32_t uniformViewPortHeight { -1 };
34 Engine* engine { nullptr };
35 Renderer* renderer { nullptr };
36 array<int32_t, 16> boundTextureIds;
37
38public:
39 /**
40 * Public constructor
41 * @param engine engine
42 * @param renderer renderer
43 */
45
46 /**
47 * @return initialized and ready to be used
48 */
49 bool isInitialized();
50
51 /**
52 * Initialize renderer
53 */
54 void initialize();
55
56 /**
57 * Use lighting program
58 * @param contextIdx context index
59 */
60 void useProgram(int contextIdx);
61
62 /**
63 * Update effect to program
64 * @param contextIdx context index
65 */
66 void updateEffect(int contextIdx);
67
68 /**
69 * Unuse particles shader program
70 * @param contextIdx context index
71 */
72 void unUseProgram(int contextIdx);
73
74 /**
75 * Update matrices to program
76 * @param contextIdx context index
77 */
78 void updateMatrices(int contextIdx);
79
80 /**
81 * Set parameters
82 * @param contextIdx context index
83 * @param textureIds texture ids
84 */
85 void setParameters(int contextIdx, const array<int32_t, 16>& textureIds);
86
87};
Engine main class.
Definition: Engine.h:122
void updateMatrices(int contextIdx)
Update matrices to program.
void updateEffect(int contextIdx)
Update effect to program.
void unUseProgram(int contextIdx)
Unuse particles shader program.
void setParameters(int contextIdx, const array< int32_t, 16 > &textureIds)
Set parameters.
ParticlesShader(Engine *engine, Renderer *renderer)
Public constructor.
void useProgram(int contextIdx)
Use lighting program.
4x4 3D Matrix class
Definition: Matrix4x4.h:24