Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
Former-commit-id: a166d958904efe5ed8227a849e8bc013a8693120 [formerly 2eaa2bf3b56761682915dcdf5c8976a5e3f14717] Former-commit-id: 0ed97f77ed98e3d2cd0092d9a98282ac12644452
This commit is contained in:
commit
4e71b441f9
|
|
@ -23,6 +23,8 @@ namespace Ndk
|
||||||
friend class RenderSystem;
|
friend class RenderSystem;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
using RenderableList = std::vector<Nz::InstancedRenderableRef>;
|
||||||
|
|
||||||
GraphicsComponent() = default;
|
GraphicsComponent() = default;
|
||||||
inline GraphicsComponent(const GraphicsComponent& graphicsComponent);
|
inline GraphicsComponent(const GraphicsComponent& graphicsComponent);
|
||||||
~GraphicsComponent() = default;
|
~GraphicsComponent() = default;
|
||||||
|
|
@ -38,6 +40,9 @@ namespace Ndk
|
||||||
inline void EnsureBoundingVolumeUpdate() const;
|
inline void EnsureBoundingVolumeUpdate() const;
|
||||||
inline void EnsureTransformMatrixUpdate() const;
|
inline void EnsureTransformMatrixUpdate() const;
|
||||||
|
|
||||||
|
inline void GetAttachedRenderables(RenderableList* renderables) const;
|
||||||
|
inline std::size_t GetAttachedRenderableCount() const;
|
||||||
|
|
||||||
inline const Nz::BoundingVolumef& GetBoundingVolume() const;
|
inline const Nz::BoundingVolumef& GetBoundingVolume() const;
|
||||||
|
|
||||||
static ComponentIndex componentIndex;
|
static ComponentIndex componentIndex;
|
||||||
|
|
|
||||||
|
|
@ -79,6 +79,20 @@ namespace Ndk
|
||||||
UpdateTransformMatrix();
|
UpdateTransformMatrix();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void GraphicsComponent::GetAttachedRenderables(RenderableList* renderables) const
|
||||||
|
{
|
||||||
|
NazaraAssert(renderables, "Invalid renderable list");
|
||||||
|
|
||||||
|
renderables->reserve(renderables->size() + m_renderables.size());
|
||||||
|
for (const Renderable& r : m_renderables)
|
||||||
|
renderables->push_back(r.renderable);
|
||||||
|
}
|
||||||
|
|
||||||
|
inline std::size_t GraphicsComponent::GetAttachedRenderableCount() const
|
||||||
|
{
|
||||||
|
return m_renderables.size();
|
||||||
|
}
|
||||||
|
|
||||||
inline const Nz::BoundingVolumef& GraphicsComponent::GetBoundingVolume() const
|
inline const Nz::BoundingVolumef& GraphicsComponent::GetBoundingVolume() const
|
||||||
{
|
{
|
||||||
EnsureBoundingVolumeUpdate();
|
EnsureBoundingVolumeUpdate();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue