TDME2 1.9.121
SkinningShader.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
11#include <tdme/math/Matrix4x4.h>
13
14using std::map;
15using std::string;
16using std::vector;
17
23
24/**
25 * Interface to compute shader skinning shader program
26 * @author Andreas Drewke
27 * @version $Id$
28 */
30{
31private:
33 volatile bool running { false };
34 };
35
37 string id;
38 vector<int32_t>* vboIds;
39 vector<vector<int32_t>*> matricesVboIds;
40 };
41
42 int32_t programId { -1 };
43 int32_t shaderId { -1 };
44 int32_t uniformVertexCount { -1 };
45 int32_t uniformMatrixCount { -1 };
46 int32_t uniformInstanceCount { -1 };
49 Renderer* renderer { nullptr };
50 vector<SkinningContext> contexts;
51 map<string, ModelSkinningCache> cache;
53
54public:
55 /**
56 * Public constructor
57 * @param renderer renderer
58 */
60
61 /**
62 * @return initialized and ready to be used
63 */
64 bool isInitialized();
65
66 /**
67 * Initialize renderer
68 */
69 void initialize();
70
71 /**
72 * Use skinning program
73 */
74 void useProgram();
75
76 /**
77 * Unuse skinning program
78 */
79 void unUseProgram();
80
81 /**
82 * Compute skinning
83 * @param contextIdx context index
84 * @param object3DBase object 3D base
85 * @param object3DNodeMesh object 3d node mesh
86 */
87 void computeSkinning(int contextIdx, Object3DBase* object3DBase, Object3DNodeMesh* object3DNodeMesh);
88
89 /**
90 * Reset
91 */
92 void reset();
93
94};
Object 3D node mesh specifically for rendering.
Interface to compute shader skinning shader program.
SkinningShader(Renderer *renderer)
Public constructor.
void computeSkinning(int contextIdx, Object3DBase *object3DBase, Object3DNodeMesh *object3DNodeMesh)
Compute skinning.
map< string, ModelSkinningCache > cache
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Mutex implementation.
Definition: Mutex.h:27