Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 5.08 KB

HighLevelDesignDecisions.md

File metadata and controls

77 lines (42 loc) · 5.08 KB

High Level Design Decisions

Project name: VulkanSceneGraph preferred, may need to use VkSceneGraph if permission from Khronos is not secured.

Language: C++17 minimum standard.

Build tool: lead choice CMake due to familiarity and market penetration.

Source code control: git hosted on github.

Maths : local GLSL style maths classes, inspired by GLSL, GLM and the Vulkan conventions.

Windowing: local native Windowing integrated with core VSG library, with ability to use 3rd party Windowing (short term use GLFW to get started quickly.)

Vulkan integration: Aim for coherent naming and granularity as underlying Vulkan API

  • lightweight local C++ encapsulation of Vulkan objects, naming and style inspired by Vulkan C API.
  • Provide convenient and robust setup and clean of resources.
  • Standard naming VkFeature -> vsg::Feature in include/vsg/vk/Feature
  • Cmd naming VkCmdFeature -> vsg::Feature, sub-classed from vsg::Command
  • State VkCmdFeature -> vsg::Feature, sub-classed from vsg::StateComponent and aggregated within a vsg::StateGroup node.

Single library: all core, maths, nodes, utilities, vulkan and viewer provided in libvsg library, can be either be used as static or dynamic library.

Namespace: vsg used for all categories of functionality within the libvsg library.

Headers: .h used for public classes/functions

Categories of functionality placed in appropriately named subdirectories i.e.

Source: .cpp extension used

Categories of functionality placed in appropriate named subdirectories i.e.

Memory: To address the main scene graph performance bottleneck have a general goal of improving cache coherency and lowering memory bandwidth load.

Intrusive reference counting twice as memory efficient as std::shared_ptr<>, and results in ~50% better traversals speeds. Use vsg::ref_ptr<>, vsg::observer_ptr<> and vsg::Object.

Use std::atomic to provide efficient, thread safe reference counts

To minimize the size of majority of internal scene graph nodes and leave nodes the ancillary data that only a few objects required are moved out of the base vsg::Object/Node classes into an vsg::Auxiliary object.

To enable greater control over memory management vsg::Allocator class to enable application to control how the scene graph allocates and deletes memory.

Unification: All vsg::Object support intrusive reference counting and meta data support All vsg::Object support type safe query via vsg::Visitor and vsg::ConstVisitor

All uniform and vertex array data can be handled via the Data interface Single value data via the vsg::Value template Array data via the vsg::Array template classes

The main scene graph and the rendering back-ends command graph utilize the same scene graph hierarchy.

Vulkan Compute and Graphics to be supported with the same Vulkan wrappers, scene graph and command graph hierarchies.

Usage models: Application developers will be able to dispatch data directly to Vulkan using the VSG’s Vulkan wrappers in a form of an immediate mode, creating their own command graphs that use standard vsg command visitors or their own custom visitors, through to using visitor to cull the main scene graph down to a command graph each frame and dispatching this vulkan.

Introspection: Not explored during Exploration Phase so will need to be addressed in future. Aim to provide introspection/reflection for all core scene graph objects to provide support for reading/writing scene graph objects and open the door to scripting.

IO: Support for loading 3rd party images and 3D models is currently deemed out of scope of the core libvsg library. Only IO supported will be via the native scene graph objects support for reflection. This IO support will enable scene graphs, images and shaders to read and written without any additional libraries.

Support for 3rd party images, 3D models and shaders will be provided by add on libraries. To aid with porting of OpenSceneGraph application a osg2vsg library will be developed so that all loaders that the OpenSceneGraph has will be available. These 3rd party on libraries providing image. 3D model and shaders will form an important part of testing of the VSG project as it evolves and are expected to develop in conjunction with the VSG project.