summaryrefslogtreecommitdiff
path: root/render/vulkan/context.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* render: fix a build bug in the vulkan rendererDanny Holman2024-10-251-1/+0
| | | | | | | | | Fix a bug causing the build to fail during the compile step of the Vulkan renderer. The frame number has been moved into the swapchain struct and no longer exists in the context struct. Therefore, its initialization should be done inside the swapchain init function. Signed-off-by: Danny Holman <dholman@gymli.org>
* render: create the rendering subsystemDanny Holman2024-10-251-0/+176
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>