Fix styling issues, rename scripts

This commit is contained in:
2025-03-11 09:49:43 +03:00
parent 8009498331
commit 69515af77f
15 changed files with 91 additions and 11 deletions

View File

@@ -387,4 +387,3 @@ void *BH_HashmapIterValue(void *iter)
{
return ((BH_HashmapNode *)iter)->value;
}

View File

@@ -135,6 +135,7 @@ int BH_IOWrite(BH_IO *io,
return code;
}
int BH_IOPeek(BH_IO *io,
char *buffer,
size_t size,
@@ -227,7 +228,6 @@ int BH_IOClear(BH_IO *io)
}
BH_IO *BH_BufferNew(BH_IO *io)
{
(void)io;

View File

@@ -155,6 +155,7 @@ int BH_Segment2fIntersectSegment(const float *aStart,
return BH_OK;
}
int BH_Ray2fIntersectBox2f(const float *aStart,
const float *aDirection,
const float *bMin,

View File

@@ -110,6 +110,7 @@ int16_t BH_Read16BEs(const char *buffer)
return tmp.s;
}
uint32_t BH_Read32BEu(const char *buffer)
{
union I32 tmp;
@@ -120,6 +121,7 @@ uint32_t BH_Read32BEu(const char *buffer)
return tmp.u;
}
int32_t BH_Read32BEs(const char *buffer)
{
union I32 tmp;
@@ -130,6 +132,7 @@ int32_t BH_Read32BEs(const char *buffer)
return tmp.s;
}
uint64_t BH_Read64BEu(const char *buffer)
{
union I64 tmp;
@@ -144,6 +147,7 @@ uint64_t BH_Read64BEu(const char *buffer)
return tmp.u;
}
int64_t BH_Read64BEs(const char *buffer)
{
union I64 tmp;