<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://cegui.org.uk/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Xxarthurxx</id>
		<title>CEGUI Wiki - Crazy Eddie's GUI System (Open Source) - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://cegui.org.uk/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Xxarthurxx"/>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/Special:Contributions/Xxarthurxx"/>
		<updated>2026-04-14T13:29:20Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5785</id>
		<title>Vulkan Renderer Development</title>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5785"/>
				<updated>2016-06-22T14:22:37Z</updated>
		
		<summary type="html">&lt;p&gt;Xxarthurxx: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose of this document ==&lt;br /&gt;
* Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development&lt;br /&gt;
* Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:&lt;br /&gt;
** What are the problems/restrictions we need to consider? What should we keep in mind?&lt;br /&gt;
** How can we maximize Vulkan performance?&lt;br /&gt;
** What are the restrictions? How could we get around them?&lt;br /&gt;
* Keep track of the state of the development&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
* Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1&lt;br /&gt;
* QuickRef: https://www.khronos.org/registry/vulkan/specs/1.0/refguide/Vulkan-1.0-web.pdf&lt;br /&gt;
* Set of demos: https://github.com/SaschaWillems/Vulkan&lt;br /&gt;
* Good old triangle demo: https://github.com/SaschaWillems/Vulkan/blob/master/triangle/triangle.cpp&lt;br /&gt;
* Vulkan in 30 minutes https://renderdoc.org/vulkan-in-30-minutes.html&lt;br /&gt;
&lt;br /&gt;
===Books===&lt;br /&gt;
* Not yet released, not sure if worth it: Vulkan Programming Guide by John M. Kessenich and Graham Sellers: https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540&lt;br /&gt;
&lt;br /&gt;
== CEGUI Vulkan Renderer : Thoughts ==&lt;br /&gt;
&lt;br /&gt;
=== General considerations ===&lt;br /&gt;
&lt;br /&gt;
* As of now, CEGUI does not support any kind of internal threading. &lt;br /&gt;
* 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.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Points to achieve optimal performance with the CEGUI Vulkan Renderer ===&lt;br /&gt;
* 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.&lt;br /&gt;
* 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?&lt;br /&gt;
&lt;br /&gt;
== ToDo ==&lt;br /&gt;
&lt;br /&gt;
== State of development ==&lt;br /&gt;
Nvidia C++ Wrapper for Vulkan will be used. This Wrapper contains of a single header file. For CEGUI this means, that the single header needs to be namespaced in CEGUI and will be bundled with the Vulkan Renderer. For further building informations, please look into the repository:&lt;br /&gt;
* Repo link: https://github.com/nvpro-pipeline/vkcpp&lt;br /&gt;
* Vulkan registry: https://github.com/KhronosGroup/Vulkan-Docs/blob/1.0/src/spec/vk.xml&lt;/div&gt;</summary>
		<author><name>Xxarthurxx</name></author>	</entry>

	<entry>
		<id>http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5779</id>
		<title>Vulkan Renderer Development</title>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5779"/>
				<updated>2016-06-20T15:49:35Z</updated>
		
		<summary type="html">&lt;p&gt;Xxarthurxx: /* State of development */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose of this document ==&lt;br /&gt;
* Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development&lt;br /&gt;
* Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:&lt;br /&gt;
** What are the problems/restrictions we need to consider? What should we keep in mind?&lt;br /&gt;
** How can we maximize Vulkan performance?&lt;br /&gt;
** What are the restrictions? How could we get around them?&lt;br /&gt;
* Keep track of the state of the development&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
*Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1&lt;br /&gt;
&lt;br /&gt;
===Books===&lt;br /&gt;
*Vulkan Programming Guide by  John M. Kessenich and Graham Sellers: https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540&lt;br /&gt;
&lt;br /&gt;
== CEGUI Vulkan Renderer : Thoughts ==&lt;br /&gt;
&lt;br /&gt;
=== General considerations ===&lt;br /&gt;
&lt;br /&gt;
* As of now, CEGUI does not support any kind of internal threading. &lt;br /&gt;
* 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.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Improving CEGUI with the Vulkan Renderer ===&lt;br /&gt;
* 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.&lt;br /&gt;
* 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?&lt;br /&gt;
&lt;br /&gt;
== ToDo ==&lt;br /&gt;
&lt;br /&gt;
== State of development ==&lt;br /&gt;
Nvidia C++ Wrapper for Vulkan will be used. This Wrapper contains of a single header file. For CEGUI this means, that the single header needs to be namespaced in CEGUI and will be bundled with the Vulkan Renderer. For further building informations, please look into the repository:&lt;br /&gt;
&lt;br /&gt;
	- Repo link: https://github.com/nvpro-pipeline/vkcpp&lt;br /&gt;
&lt;br /&gt;
	- Vulkan registry: https://github.com/KhronosGroup/Vulkan-Docs/blob/1.0/src/spec/vk.xml&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Xxarthurxx|Xxarthurxx]] ([[User talk:Xxarthurxx|talk]]) 15:49, 20 June 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Xxarthurxx</name></author>	</entry>

	<entry>
		<id>http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5778</id>
		<title>Vulkan Renderer Development</title>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5778"/>
				<updated>2016-06-20T15:43:36Z</updated>
		
		<summary type="html">&lt;p&gt;Xxarthurxx: /* Books */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose of this document ==&lt;br /&gt;
* Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development&lt;br /&gt;
* Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:&lt;br /&gt;
** What are the problems/restrictions we need to consider? What should we keep in mind?&lt;br /&gt;
** How can we maximize Vulkan performance?&lt;br /&gt;
** What are the restrictions? How could we get around them?&lt;br /&gt;
* Keep track of the state of the development&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
*Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1&lt;br /&gt;
&lt;br /&gt;
===Books===&lt;br /&gt;
*Vulkan Programming Guide by  John M. Kessenich and Graham Sellers: https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540&lt;br /&gt;
&lt;br /&gt;
== CEGUI Vulkan Renderer : Thoughts ==&lt;br /&gt;
&lt;br /&gt;
=== General considerations ===&lt;br /&gt;
&lt;br /&gt;
* As of now, CEGUI does not support any kind of internal threading. &lt;br /&gt;
* 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.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Improving CEGUI with the Vulkan Renderer ===&lt;br /&gt;
* 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.&lt;br /&gt;
* 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?&lt;br /&gt;
&lt;br /&gt;
== ToDo ==&lt;br /&gt;
&lt;br /&gt;
== State of development ==&lt;br /&gt;
* 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.&lt;br /&gt;
** Repo: https://github.com/nvpro-pipeline/vkcpp&lt;br /&gt;
** Vulkan registriy: https://github.com/KhronosGroup/Vulkan-Docs/blob/1.0/src/spec/vk.xml&lt;/div&gt;</summary>
		<author><name>Xxarthurxx</name></author>	</entry>

	<entry>
		<id>http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5777</id>
		<title>Vulkan Renderer Development</title>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5777"/>
				<updated>2016-06-20T15:42:59Z</updated>
		
		<summary type="html">&lt;p&gt;Xxarthurxx: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose of this document ==&lt;br /&gt;
* Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development&lt;br /&gt;
* Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:&lt;br /&gt;
** What are the problems/restrictions we need to consider? What should we keep in mind?&lt;br /&gt;
** How can we maximize Vulkan performance?&lt;br /&gt;
** What are the restrictions? How could we get around them?&lt;br /&gt;
* Keep track of the state of the development&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
*Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1&lt;br /&gt;
&lt;br /&gt;
===Books===&lt;br /&gt;
Vulkan Programming Guide by  John M. Kessenich and Graham Sellers:&lt;br /&gt;
https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540&lt;br /&gt;
&lt;br /&gt;
== CEGUI Vulkan Renderer : Thoughts ==&lt;br /&gt;
&lt;br /&gt;
=== General considerations ===&lt;br /&gt;
&lt;br /&gt;
* As of now, CEGUI does not support any kind of internal threading. &lt;br /&gt;
* 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.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Improving CEGUI with the Vulkan Renderer ===&lt;br /&gt;
* 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.&lt;br /&gt;
* 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?&lt;br /&gt;
&lt;br /&gt;
== ToDo ==&lt;br /&gt;
&lt;br /&gt;
== State of development ==&lt;br /&gt;
* 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.&lt;br /&gt;
** Repo: https://github.com/nvpro-pipeline/vkcpp&lt;br /&gt;
** Vulkan registriy: https://github.com/KhronosGroup/Vulkan-Docs/blob/1.0/src/spec/vk.xml&lt;/div&gt;</summary>
		<author><name>Xxarthurxx</name></author>	</entry>

	<entry>
		<id>http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5776</id>
		<title>Vulkan Renderer Development</title>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5776"/>
				<updated>2016-06-20T15:42:48Z</updated>
		
		<summary type="html">&lt;p&gt;Xxarthurxx: /* Books */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose of this document ==&lt;br /&gt;
* Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development&lt;br /&gt;
* Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:&lt;br /&gt;
** What are the problems/restrictions we need to consider? What should we keep in mind?&lt;br /&gt;
** How can we maximize Vulkan performance?&lt;br /&gt;
** What are the restrictions? How could we get around them?&lt;br /&gt;
* Keep track of the state of the development&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
**Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1&lt;br /&gt;
&lt;br /&gt;
===Books===&lt;br /&gt;
Vulkan Programming Guide by  John M. Kessenich and Graham Sellers:&lt;br /&gt;
https://www.amazon.co.uk/Vulkan-Programming-Guide-Official-Learning/dp/0134464540&lt;br /&gt;
&lt;br /&gt;
== CEGUI Vulkan Renderer : Thoughts ==&lt;br /&gt;
&lt;br /&gt;
=== General considerations ===&lt;br /&gt;
&lt;br /&gt;
* As of now, CEGUI does not support any kind of internal threading. &lt;br /&gt;
* 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.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Improving CEGUI with the Vulkan Renderer ===&lt;br /&gt;
* 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.&lt;br /&gt;
* 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?&lt;br /&gt;
&lt;br /&gt;
== ToDo ==&lt;br /&gt;
&lt;br /&gt;
== State of development ==&lt;br /&gt;
* 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.&lt;br /&gt;
** Repo: https://github.com/nvpro-pipeline/vkcpp&lt;br /&gt;
** Vulkan registriy: https://github.com/KhronosGroup/Vulkan-Docs/blob/1.0/src/spec/vk.xml&lt;/div&gt;</summary>
		<author><name>Xxarthurxx</name></author>	</entry>

	<entry>
		<id>http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5775</id>
		<title>Vulkan Renderer Development</title>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5775"/>
				<updated>2016-06-20T13:32:53Z</updated>
		
		<summary type="html">&lt;p&gt;Xxarthurxx: /* Maximising the CEGUI Vulkan Renderer performance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose of this document ==&lt;br /&gt;
* Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development&lt;br /&gt;
* Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:&lt;br /&gt;
** What are the problems/restrictions we need to consider? What should we keep in mind?&lt;br /&gt;
** How can we maximize Vulkan performance?&lt;br /&gt;
** What are the restrictions? How could we get around them?&lt;br /&gt;
* Keep track of the state of the development&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
**Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1&lt;br /&gt;
&lt;br /&gt;
===Books===&lt;br /&gt;
Currently there aren't any books about Vulkan.&lt;br /&gt;
&lt;br /&gt;
== CEGUI Vulkan Renderer : Thoughts ==&lt;br /&gt;
&lt;br /&gt;
=== General considerations ===&lt;br /&gt;
&lt;br /&gt;
* As of now, CEGUI does not support any kind of internal threading. &lt;br /&gt;
* 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.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Improving CEGUI with the Vulkan Renderer ===&lt;br /&gt;
* 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.&lt;br /&gt;
* 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?&lt;br /&gt;
&lt;br /&gt;
== ToDo ==&lt;br /&gt;
&lt;br /&gt;
== State of development ==&lt;br /&gt;
* 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.&lt;br /&gt;
** Repo: https://github.com/nvpro-pipeline/vkcpp&lt;br /&gt;
** Vulkan registriy: https://github.com/KhronosGroup/Vulkan-Docs/blob/1.0/src/spec/vk.xml&lt;/div&gt;</summary>
		<author><name>Xxarthurxx</name></author>	</entry>

	<entry>
		<id>http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5774</id>
		<title>Vulkan Renderer Development</title>
		<link rel="alternate" type="text/html" href="http://cegui.org.uk/wiki/index.php?title=Vulkan_Renderer_Development&amp;diff=5774"/>
				<updated>2016-06-20T13:28:15Z</updated>
		
		<summary type="html">&lt;p&gt;Xxarthurxx: Added Links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Purpose of this document ==&lt;br /&gt;
* Provide relevant links to Vulkan documentation, Vulkan tutorials, Vulkan code snippets that we will use during development&lt;br /&gt;
* Make a list of specific points we need to take into account when developing the Vulkan renderer for CEGUI:&lt;br /&gt;
** What are the problems/restrictions we need to consider? What should we keep in mind?&lt;br /&gt;
** How can we maximize Vulkan performance?&lt;br /&gt;
** What are the restrictions? How could we get around them?&lt;br /&gt;
* Keep track of the state of the development&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
**Intel Vulkan Tutorial: https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-1&lt;br /&gt;
&lt;br /&gt;
===Books===&lt;br /&gt;
Currently there aren't any books about Vulkan.&lt;br /&gt;
&lt;br /&gt;
== CEGUI Vulkan Renderer : Thoughts ==&lt;br /&gt;
&lt;br /&gt;
=== General considerations ===&lt;br /&gt;
&lt;br /&gt;
* As of now, CEGUI does not support any kind of internal threading. &lt;br /&gt;
* 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.&lt;br /&gt;
* 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.&lt;br /&gt;
&lt;br /&gt;
=== Maximising the CEGUI Vulkan Renderer performance ===&lt;br /&gt;
* Considering that Vulkan as one of its main benefits features threading support, we might want to consider if this would be worth it for CEGUI default branch or if this even would have any benefits.&lt;br /&gt;
* 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?&lt;br /&gt;
&lt;br /&gt;
== ToDo ==&lt;br /&gt;
&lt;br /&gt;
== State of development ==&lt;br /&gt;
* 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.&lt;br /&gt;
** Repo: https://github.com/nvpro-pipeline/vkcpp&lt;br /&gt;
** Vulkan registriy: https://github.com/KhronosGroup/Vulkan-Docs/blob/1.0/src/spec/vk.xml&lt;/div&gt;</summary>
		<author><name>Xxarthurxx</name></author>	</entry>

	</feed>