Create typedef for IDs

There was a code, where id for something was u32, and
u16 for other things. I have created a typedef to fix
that

Signed-off-by: Piotr Krygier <piotrkrygier@everyonecancode@xyz>
This commit is contained in:
Piotr Krygier
2026-02-10 10:16:32 +01:00
parent 55e0ee261e
commit 954876549d
13 changed files with 117 additions and 105 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ rse_err_t mesh_create(struct graphics_context_t* context,
uint16_t* indices,
size_t vertices_count,
size_t indices_count,
uint32_t* mesh_id)
rse_id_t* mesh_id)
{
rse_err_t status = RSE_ERROR_NO_ERROR;