summaryrefslogtreecommitdiff
path: root/engine/render/vulkan/renderer.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-08-04root: restructuringDanny Holman1-6/+12
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>
2025-03-20render: vulkan: fix synchronization bugsDanny Holman1-18/+124
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>
2024-11-19render: streamline the common renderer interfaceDanny Holman1-3/+2
Streamline the common renderer interface such that all functionality is set by the renderer initialization function. This reduces the number of API functions and allows developers to define custom rendering interfaces easier. Signed-off-by: Danny Holman <dholman@gymli.org>
2024-10-25render: call rune_free during renderer exitDanny Holman1-1/+2
Call rune_free on the renderer object during close. This ensures the memory is marked as free so that the memory API can clean it up. Signed-off-by: Danny Holman <dholman@gymli.org>
2024-10-25render: move all rendering code out of uiDanny Holman1-1/+1
Move all the rendering code out of the UI subsystem. The new rendering API now has hooks that the UI code can make use of. Signed-off-by: Danny Holman <dholman@gymli.org>
2024-10-25render: create the rendering subsystemDanny Holman1-0/+167
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>