mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-22 20:49:58 +01:00
Fix data type
This commit is contained in:
parent
6c5bebd80b
commit
efa5ba9b24
1 changed files with 2 additions and 2 deletions
|
@ -534,7 +534,7 @@ typedef struct
|
||||||
|
|
||||||
void S3L_initModel3D(
|
void S3L_initModel3D(
|
||||||
const S3L_Unit *vertices,
|
const S3L_Unit *vertices,
|
||||||
S3L_Unit vertexCount,
|
S3L_Index vertexCount,
|
||||||
const S3L_Index *triangles,
|
const S3L_Index *triangles,
|
||||||
S3L_Index triangleCount,
|
S3L_Index triangleCount,
|
||||||
S3L_Model3D *model);
|
S3L_Model3D *model);
|
||||||
|
@ -1737,7 +1737,7 @@ void S3L_initPixelInfo(S3L_PixelInfo *p)
|
||||||
|
|
||||||
void S3L_initModel3D(
|
void S3L_initModel3D(
|
||||||
const S3L_Unit *vertices,
|
const S3L_Unit *vertices,
|
||||||
S3L_Unit vertexCount,
|
S3L_Index vertexCount,
|
||||||
const S3L_Index *triangles,
|
const S3L_Index *triangles,
|
||||||
S3L_Index triangleCount,
|
S3L_Index triangleCount,
|
||||||
S3L_Model3D *model)
|
S3L_Model3D *model)
|
||||||
|
|
Loading…
Reference in a new issue