Hymn to Beauty
C++ 3D Engine
GeometryBinding.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "Types.hpp"
4
5namespace Video {
6
9 public:
11 enum class IndexType {
12 NONE = 0,
13 SHORT,
14 INT
15 };
16
19
21 virtual ~GeometryBinding() {}
22
23 private:
24 GeometryBinding(const GeometryBinding& other) = delete;
25};
26
27}
Binds together a vertex description with buffers.
Definition: GeometryBinding.hpp:8
virtual ~GeometryBinding()
Destructor.
Definition: GeometryBinding.hpp:21
IndexType
The type of values in the index buffer.
Definition: GeometryBinding.hpp:11
GeometryBinding()
Create a new shader.
Definition: GeometryBinding.hpp:18
Definition: Editor.hpp:18