Fix naming conventions

Fixed some functions names that were not following my convention

Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
This commit is contained in:
Piotr Krygier
2026-02-09 21:59:30 +01:00
parent b7a472fe45
commit 3dcf7fec56
12 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -19,7 +19,7 @@
#include "utilities/errors_common.h"
#include "vulkan_buffers.h"
rse_err_t create_mesh(struct graphics_context_t* context,
rse_err_t mesh_create(struct graphics_context_t* context,
struct vertex_t* vertices,
uint16_t* indices,
size_t vertices_count,
@@ -46,7 +46,7 @@ rse_err_t create_mesh(struct graphics_context_t* context,
return status;
}
rse_err_t create_mesh_instance(struct graphics_context_t* context,
rse_err_t mesh_create_instance(struct graphics_context_t* context,
entity_t entity,
struct instance_data_t instance_data)
{