Difference between revisions of "Vulkan Renderer Development"
From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
Xxarthurxx (Talk | contribs) (→Links) |
Xxarthurxx (Talk | contribs) (→Books) |
||
Line 13: | Line 13: | ||
===Books=== | ===Books=== | ||
− | Vulkan Programming Guide by John M. Kessenich and Graham Sellers: | + | *Vulkan Programming Guide by John M. Kessenich and Graham Sellers: https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540 |
− | https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540 | + | |
== CEGUI Vulkan Renderer : Thoughts == | == CEGUI Vulkan Renderer : Thoughts == |
Revision as of 15:43, 20 June 2016
Contents
Purpose of this document
- Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development
- Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:
- What are the problems/restrictions we need to consider? What should we keep in mind?
- How can we maximize Vulkan performance?
- What are the restrictions? How could we get around them?
- Keep track of the state of the development
References
Links
- Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1
Books
- Vulkan Programming Guide by John M. Kessenich and Graham Sellers: https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540
CEGUI Vulkan Renderer : Thoughts
General considerations
- As of now, CEGUI does not support any kind of internal threading.
- If we have separate command buffers for CEGUI and the rest of what the user's application uses, we can ensure that the states won't interfere with those of the regular rendering. (See enableExtraAttribs for more info..). This is a great advantage over OpenGL.
- Would any sort of threading for CEGUI's logic and rendering provide an advantage? In the end, the rendering would always have to wait for the logic to be processed but they could be started at separate times.
Improving CEGUI with the Vulkan Renderer
- Considering that Vulkan as one of its main benefits features threading support, we want to research whether this would be worth it for CEGUI default branch or if this even would have any benefits.
- As always, we need to keep batching low. Is there anything provided in Vulkan that allows us to batch things better? We used to make the VBOs as large as possible, which was a notable advantage even though we rendered the quads in separate draw calls. Can this be done better?
ToDo
State of development
- We will use the Nvidia C++ Wrapper for Vulkan by creating the header file based on the Vulkan registry. This header needs to be namespaced in CEGUI and will be bundled with the Vulkan Renderer.