Fix some compilation errors
This commit is contained in:
@@ -35,7 +35,7 @@ namespace Nz
|
||||
|
||||
VertexDeclaration(VertexInputRate inputRate, std::initializer_list<ComponentEntry> components);
|
||||
VertexDeclaration(const VertexDeclaration&) = delete;
|
||||
VertexDeclaration(VertexDeclaration&&) noexcept = default;
|
||||
VertexDeclaration(VertexDeclaration&&) = default;
|
||||
~VertexDeclaration() = default;
|
||||
|
||||
inline const Component* FindComponent(VertexComponent vertexComponent, std::size_t componentIndex) const;
|
||||
@@ -51,7 +51,7 @@ namespace Nz
|
||||
template<typename T> bool HasComponentOfType(VertexComponent vertexComponent, std::size_t componentIndex = 0) const;
|
||||
|
||||
VertexDeclaration& operator=(const VertexDeclaration&) = delete;
|
||||
VertexDeclaration& operator=(VertexDeclaration&&) noexcept = default;
|
||||
VertexDeclaration& operator=(VertexDeclaration&&) = default;
|
||||
|
||||
static inline const VertexDeclarationRef& Get(VertexLayout layout);
|
||||
static bool IsTypeSupported(ComponentType type);
|
||||
|
||||
Reference in New Issue
Block a user