// Copyright (C) 2020 Jérôme Leclercq // This file is part of the "Nazara Engine - Utility module" // For conditions of distribution and use, see copyright notice in Config.hpp #include #include #include namespace Nz { inline const std::shared_ptr& VertexBuffer::GetBuffer() const { return m_buffer; } inline std::size_t VertexBuffer::GetEndOffset() const { return m_endOffset; } inline std::size_t VertexBuffer::GetStride() const { return static_cast(m_vertexDeclaration->GetStride()); } inline std::size_t VertexBuffer::GetStartOffset() const { return m_startOffset; } inline std::size_t VertexBuffer::GetVertexCount() const { return m_vertexCount; } inline const std::shared_ptr& VertexBuffer::GetVertexDeclaration() const { return m_vertexDeclaration; } inline bool VertexBuffer::IsValid() const { return m_buffer && m_vertexDeclaration; } } #include