TDME2 1.9.121
ShadowMapCreationShaderImplementation.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11using std::string;
12
16
17/**
18 * Pre shadow mapping shader for create shadow map
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24 /**
25 * Destructor
26 */
28
29 /**
30 * @return shader id
31 */
32 virtual const string getId() = 0;
33
34 /**
35 * @return if initialized and ready to use
36 */
37 virtual bool isInitialized() = 0;
38
39 /**
40 * Init shadow map creation program
41 */
42 virtual void initialize() = 0;
43
44 /**
45 * Use shadow map creation program
46 * @param engine engine
47 * @param contextIdx context index
48 */
49 virtual void useProgram(Engine* engine, int contextIdx) = 0;
50
51 /**
52 * Unuse shadow map creation program
53 * @param contextIdx context index
54 */
55 virtual void unUseProgram(int contextIdx) = 0;
56
57 /**
58 * Set up program matrices
59 * @param contextIdx context index
60 */
61 virtual void updateMatrices(int contextIdx) = 0;
62
63 /**
64 * Set up program texture matrix
65 * @param renderer renderer
66 * @param contextIdx context index
67 */
68 virtual void updateTextureMatrix(Renderer* renderer, int contextIdx) = 0;
69
70 /**
71 * Update material
72 * @param renderer renderer
73 * @param contextIdx context index
74 */
75 virtual void updateMaterial(Renderer* renderer, int contextIdx) = 0;
76
77 /**
78 * Update shader parameters
79 * @param renderer renderer
80 * @param contextIdx context index
81 */
82 virtual void updateShaderParameters(Renderer* renderer, int contextIdx) = 0;
83
84 /**
85 * Bind texture
86 * @param renderer renderer
87 * @param contextIdx context index
88 * @param textureId texture id
89 */
90 virtual void bindTexture(Renderer* renderer, int contextIdx, int32_t textureId) = 0;
91};
Engine main class.
Definition: Engine.h:122
4x4 3D Matrix class
Definition: Matrix4x4.h:24
virtual void updateTextureMatrix(Renderer *renderer, int contextIdx)=0
Set up program texture matrix.
virtual void unUseProgram(int contextIdx)=0
Unuse shadow map creation program.
virtual void updateShaderParameters(Renderer *renderer, int contextIdx)=0
Update shader parameters.
virtual void updateMatrices(int contextIdx)=0
Set up program matrices.
virtual void bindTexture(Renderer *renderer, int contextIdx, int32_t textureId)=0
Bind texture.
virtual void initialize()=0
Init shadow map creation program.
virtual void useProgram(Engine *engine, int contextIdx)=0
Use shadow map creation program.
virtual void updateMaterial(Renderer *renderer, int contextIdx)=0
Update material.