// Copyright (C) 2022 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // 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 UInt64 VertexBuffer::GetEndOffset() const { return m_endOffset; } inline UInt64 VertexBuffer::GetStride() const { return static_cast(m_vertexDeclaration->GetStride()); } inline UInt64 VertexBuffer::GetStartOffset() const { return m_startOffset; } inline UInt32 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