TDME2 1.9.121
EZRShaderImplementation.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 * Early z rejection shader implementation
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 EZR render shader program implementation
41 */
42 virtual void initialize() = 0;
43
44 /**
45 * Use EZR render shader program
46 * @param engine engine
47 * @param contextIdx context index
48 */
49 virtual void useProgram(Engine* engine, int contextIdx) = 0;
50
51 /**
52 * Unuse EZR render shader program
53 * @param contextIdx context index
54 */
55 virtual void unUseProgram(int contextIdx) = 0;
56
57 /**
58 * Update matrices
59 * @param renderer renderer
60 * @param contextIdx context index
61 */
62 virtual void updateMatrices(Renderer* renderer, int contextIdx) = 0;
63
64 /**
65 * update texture matrix
66 * @param renderer renderer
67 * @param contextIdx context index
68 */
69 virtual void updateTextureMatrix(Renderer* renderer, int contextIdx) = 0;
70
71 /**
72 * Update material
73 * @param renderer renderer
74 * @param contextIdx context index
75 */
76 virtual void updateMaterial(Renderer* renderer, int contextIdx) = 0;
77
78 /**
79 * Update shader parameters
80 * @param renderer renderer
81 * @param context
82 */
83 virtual void updateShaderParameters(Renderer* renderer, int contextIdx) = 0;
84
85 /**
86 * Bind texture
87 * @param renderer renderer
88 * @param contextIdx context index
89 * @param textureId texture id
90 */
91 virtual void bindTexture(Renderer* renderer, int contextIdx, int32_t textureId) = 0;
92};
Engine main class.
Definition: Engine.h:122
4x4 3D Matrix class
Definition: Matrix4x4.h:24
virtual void updateTextureMatrix(Renderer *renderer, int contextIdx)=0
update texture matrix
virtual void unUseProgram(int contextIdx)=0
Unuse EZR render shader program.
virtual void updateShaderParameters(Renderer *renderer, int contextIdx)=0
Update shader parameters.
virtual void bindTexture(Renderer *renderer, int contextIdx, int32_t textureId)=0
Bind texture.
virtual void initialize()=0
Init EZR render shader program implementation.
virtual void useProgram(Engine *engine, int contextIdx)=0
Use EZR render shader program.
virtual void updateMaterial(Renderer *renderer, int contextIdx)=0
Update material.
virtual void updateMatrices(Renderer *renderer, int contextIdx)=0
Update matrices.