TDME2 1.9.121
VBOManager_VBOManaged.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
8
9using std::string;
10using std::vector;
11
13
14/**
15 * Managed VBO entity
16 * @author Andreas Drewke
17 */
19{
20 friend class VBOManager;
21
22private:
23 string id;
24 vector<int32_t> vboIds;
25 int32_t referenceCounter { 0 };
26 volatile bool uploaded { false };
27
28 /**
29 * Private constructor
30 * @param id id
31 * @param vboIds VBO ids
32 */
33 VBOManager_VBOManaged(const string& id, vector<int32_t>& vboIds);
34
35public:
36
37 /**
38 * @return vbo id
39 */
40 inline const string& getId() {
41 return id;
42 }
43
44 /**
45 * @return vbo gl ids
46 */
47 inline vector<int32_t>* getVBOIds() {
48 return &vboIds;
49 }
50
51 /**
52 * @return reference counter
53 */
54 inline int32_t getReferenceCounter() {
55 return referenceCounter;
56 }
57
58private:
59 /**
60 * decrement reference counter
61 * @return if reference counter = 0
62 */
65 return referenceCounter == 0;
66 }
67
68 /**
69 * increment reference counter
70 */
73 }
74
75public:
76
77 /**
78 * Set uploaded
79 * @param uploaded uploaded
80 */
81 inline void setUploaded(bool uploaded) {
82 this->uploaded = uploaded;
83 }
84
85 /**
86 * @return if vbo's have been uploaded
87 */
88 inline bool isUploaded() {
89 return uploaded;
90 }
91
92};
VBOManager_VBOManaged(const string &id, vector< int32_t > &vboIds)
Private constructor.