summaryrefslogtreecommitdiff
path: root/render/vulkan/renderpass.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* root: restructuringDanny Holman2025-08-041-249/+0
| | | | | | | | Restructure the root of the project such that the engine is siloed from the rest of the toolchain. Add two new subdirectories that contain an editor and an offline profiling data analyzer. Signed-off-by: Danny Holman <dholman@gymli.org>
* render: vulkan: fix synchronization bugsDanny Holman2025-03-201-6/+51
| | | | | | | Fix a host of synchronization bugs involving the Vulkan fence objects and the state of the command pool. Signed-off-by: Danny Holman <dholman@gymli.org>
* render: vulkan: make all types opaqueDanny Holman2025-03-201-12/+33
| | | | | | | Make all the types specific to Vulkan fully opaque. This brings most of the rendering backend in line with the project coding style. Signed-off-by: Danny Holman <dholman@gymli.org>
* render: fix missing Vk*CreateInfo struct membersDanny Holman2024-11-191-1/+11
| | | | | | | Fix several instances of missing structure defines that cause validation errors. Signed-off-by: Danny Holman <dholman@gymli.org>
* render: move get_vkerr_str into vkassert.hDanny Holman2024-10-281-6/+7
| | | | | | | | | Move get_vkerr_str into vkassert.h and use its output in the vkassert function. This reduces the need for an error message argument when calling vkassert and makes error messages in logs consistent across the entire Vulkan renderer. Signed-off-by: Danny Holman <dholman@gymli.org>
* render: create the rendering subsystemDanny Holman2024-10-251-0/+172
Create the rendering subsystem and populate it with a basic Vulkan renderer. This renderer is not yet functional and should not be used yet. Signed-off-by: Danny Holman <dholman@gymli.org>