TDME2 1.9.121
Object3DNodeRenderer.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
13
14using std::vector;
15
21
22/**
23 * Object 3D node VBO renderer
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29 friend class EntityRenderer;
33
34private:
40 vector<int32_t>* vboBaseIds { nullptr };
41 vector<int32_t>* vboNormalMappingIds { nullptr };
42 vector<int32_t>* vboOrigins { nullptr };
43 vector<int32_t>* vboLods { nullptr };
44 bool haveVBOs { false };
45public:
46 /**
47 * Constructor
48 * @param object3DNode object 3D node
49 */
51
52 /**
53 * @return if preRender call is required
54 */
55 inline bool needsPreRender() {
56 return haveVBOs == false || object3DNode->mesh->hasRecreatedBuffers() == true || object3DNode->mesh->node->hasUpdate();
57 }
58
59 /**
60 * Pre render step like uploading VBOs and such
61 * @param contextIdx context index
62 */
63 void preRender(int contextIdx);
64
65 /**
66 * Disposes the object 3d node
67 */
68 void dispose();
69
70};
Object 3D to be used with engine class.
Definition: Object3D.h:60
Object 3D node mesh specifically for rendering.
Object3DNodeRenderer(Object3DNode *object3DNode)
Constructor.
void preRender(int contextIdx)
Pre render step like uploading VBOs and such.
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
Interface to compute shader skinning shader program.