NVIDIA has put out what they call 'VkHLF', a high level abstraction library on top of Vulkan. Looks like it's under a BSD-style license too.
It's described as so:
It's still in the early stages, but it sounds very interesting. It essentially makes working with certain parts of Vulkan easier without adding an overhead if used correctly.
I wonder how many more Vulkan layers we can expect to see?
You can find VkHLF on github.
It's described as so:
QuoteVkHLF is an experimental high level abstraction library on top of Vulkan. It adds features like transparent suballocation, resource tracking on the CPU & GPU and simplified resource creation while staying as close as possible to the original Vulkan API. In contrast to Vulkan-Hpp, which was carefully designed not to introduce any additional cost, this library can add a signifact cost depending on the usage pattern. Though, when used properly, it is possible to use this library with minimal additional cost while improper use can result in OpenGL performance levels.
It's still in the early stages, but it sounds very interesting. It essentially makes working with certain parts of Vulkan easier without adding an overhead if used correctly.
I wonder how many more Vulkan layers we can expect to see?
You can find VkHLF on github.
Some you may have missed, popular articles from the last month:
Combining high and low levels is way to go as always. It speeds up developing while allowing for optimizations later if needed. I expect it to be like OpenGL (or even D3D considering it's in C++) in terms of ease of use but with the ability to rewrite slow paths at the lowest level possible. Before only vendors could fix that.
Last edited by rkfg on 10 January 2017 at 9:41 pm UTC
Last edited by rkfg on 10 January 2017 at 9:41 pm UTC
0 Likes
Why nshidia, why??
0 Likes
Quoting: EzyRhinoWhy nshidia, why??
Because of Nintendo Switch
0 Likes
If using VkHLF incorrectly can result in performance comparable to OpenGL used correctly, this is a win-win. :)
But seriously, Vulkan needs libs like this to make it accessible to the masses.
But seriously, Vulkan needs libs like this to make it accessible to the masses.
0 Likes
Sounds good. We need more middleware like that.
0 Likes
We need a layer that makes vulkan as easy to use as metal, that will make many devs lo love it
0 Likes
Vulkano is easier to use than raw Vulkan: https://github.com/tomaka/vulkano
0 Likes
Quoting: ShmerlVulkano is easier to use than raw Vulkan: https://github.com/tomaka/vulkanoYeah, but I don't think game devs will switch to Rust just to use it. Anyway, the more the better. There's never a single approach that works best for everybody.
0 Likes
Hmh, lacking a bit of docs... reading a bit of the sourcecode (for me) does not really tell me how to "properly" use the API.
@Shmerl hmh.. Rust... have dabbled a bit in it, liked it so far. Seems to get more and more popular out there...
@Shmerl hmh.. Rust... have dabbled a bit in it, liked it so far. Seems to get more and more popular out there...
0 Likes
Quoting: STiATHmh, lacking a bit of docs... reading a bit of the sourcecode (for me) does not really tell me how to "properly" use the API.No wonder considering the dislaimer:
QuoteSince this project is in its early stages and under heavy development expect bugs and interface changes for a while. It should not be used for production code yet!
0 Likes
See more from me