ui rendering works now

This commit is contained in:
Dynamitos
2022-04-18 18:08:38 +02:00
parent 796271f334
commit 14b816fc3c
25 changed files with 453 additions and 60 deletions
+2 -2
View File
@@ -362,12 +362,12 @@ class VertexBuffer : public Buffer
public:
VertexBuffer(QueueFamilyMapping mapping, uint32 numVertices, uint32 vertexSize, QueueType startQueueType);
virtual ~VertexBuffer();
inline uint32 getNumVertices()
constexpr uint32 getNumVertices() const
{
return numVertices;
}
// Size of one vertex in bytes
inline uint32 getVertexSize()
constexpr uint32 getVertexSize() const
{
return vertexSize;
}