Todo List
- Member helios::app::Application::~Application ()=default
 free resource allocations from renderingDevice, window and InputManager
- Class helios::event::Event
 can we reset the value for Guids in between frames, if events are guaranteed to be dispatched and processed in between frames?
- Member helios::ext::glfw::app::GLFWApplication::setCurrent (helios::window::Window &win) override
 the window should be signaled that it's now current window, for setting the frameBufferSizeCallback and calling glfwMakeContextCurrent.
- Class helios::ext::glfw::window::GLFWWindow
 - Member helios::ext::opengl::rendering::OpenGLDevice::init () override
 - Member helios::math::mat4< T >::same (const mat4< T > &rgt) const
 account for abs (values close to zero) and rel (larger values), move EPSILON to global constant
- Member helios::rendering::model::Material::logger_
 - Member helios::rendering::model::Mesh::logger_
 - Member helios::rendering::Renderable::logger_
 - Member helios::rendering::RenderingDevice::logger_
 - Member helios::rendering::RenderPass::logger_
 - Member helios::rendering::RenderPassFactory::logger_
 - Member helios::rendering::RenderPassFactory::makeRenderCommand (const helios::scene::SnapshotItem &snapshotItem) const noexcept
 future versions might want to use a FactoryMethod in RenderCommand that takes a SnapshotItem and creates a RenderCommand from it (e.g. RenderCommand::fromSnapshotItem()); or a Factory ReanderCommandBuilder() .withShader().withMesh().build();
- Member helios::rendering::RenderQueue::add (std::unique_ptr< const helios::rendering::RenderCommand > renderCommand)
 - Member helios::rendering::shader::Shader::logger_
 - Class helios::rendering::shader::UniformValueMap
 - 
UniformMap must allow only one index for all datastructures, i.e. if mat4fMap_[semantics] is set, vec3fMap_[semantics] must not be allowed
UniformValueMaps should be scope, e.g. per frame (world matrix, projection, view, view projection...), per Material (colos, emmissive...), per object (World matrix...) Which allws for better handling of assigning uniforms, e.g. per frame gets changed once, per object gets changed per object etc...
 - Class helios::scene::Camera
 - 
implement class. Make sure localTransforms mark this class as dirty, for proper recalculating projection-/viewMatrix if needed.
check whether nodes should further be divided into Parent- and LeafNodes. Cameras would be LeafNodes then, not allowing to have child nodes.
 - Class helios::scene::FrustumCullingStrategy
 The returned list should be considered "as is" for now: Each entry in the list a single renderable entity to consider. It child nodes (i.e. the sub tree **this** node is the root of) should _not_ be automatically considered for rendering. Later iterations should probably use an individual struct that provides a hint whether for a given node a whole subtree should be considered, saving time for culling and memory when constructing the list.
- Member helios::scene::SceneNode::SceneNode () noexcept
 explicitly implement move (assignment) constructor if required, since we have deleted the copy constructors
- Struct helios::scene::SnapshotItem
 we're intentionally preferring stability over performance by using weak_ptr instead of raw pointers. This leaves room for (performance) improvements in later iterations. The Renderable as a weak pointer can later on be further implemented into a pure DTO, storing only scalar values that get send directly to the underlying rendering backend (e.g. vaos, vbos etc.).
- Class helios::scene::Transform
 - Class helios::util::log::Logger
 
Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.15.0.