summaryrefslogtreecommitdiff
path: root/render/vulkan/fence.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* render: vulkan: make all types opaqueDanny Holman2025-03-201-10/+31
| | | | | | | 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: move get_vkerr_str into vkassert.hDanny Holman2024-10-281-2/+2
| | | | | | | | | 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/+63
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>