Lava Block
Lava Block
🔨 created branch [queue-creation](/liblava/liblava/tree/queue-creation)
> Several hardware platforms have more than one VkQueue per queue family. This can be useful by being able to submit work to the same queue family from separate queues....
Here are some **examples** how to use `add_queues` ```cpp app.manager.on_create_param = [](device::create_param& param) { param.set_default_queues(); // (1) param.set_all_queues(); // (2) param.add_dedicated_queues(0.5f); // (3) param.add_queues(VK_QUEUE_COMPUTE_BIT | VK_QUEUE_TRANSFER_BIT, 2); // (4) param.add_queue(VK_QUEUE_COMPUTE_BIT...
You're welcome! No hurry, if something stands out when testing, just let me know.
> just checked logs closely: I have a different build error... > > > C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(241,5): error MSB6001: Invalid command line switch for "cmd.exe". System.ArgumentException: Item has...
Hello. Thanks for your report. I suspect the default values are missing when creating the tables in the database. In fact, I encountered the problem too, but that was a...
Thanks for your feedback and note. I will take a closer look at the problem soon.
Okay, here is an update. It took me a while to get back to the project. I have now set up 2 plans: One is a localhost with XAMPP PHP...
Thank you for your report and the detailed information. I will setup this with a more recent MariaDB version asap and have a look at the error in detail.
Actually, that's a good idea. I've been thinking about directly supporting current extensions for quite some time. However, I would like to make it possible to use both options, so...