mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 03:18:14 +00:00
Added note #3822
This commit is contained in:
@@ -5282,29 +5282,38 @@ static Model LoadGLTF(const char *fileName)
|
|||||||
}
|
}
|
||||||
else if ((attribute->component_type == cgltf_component_type_r_16u) && (attribute->type == cgltf_type_vec2))
|
else if ((attribute->component_type == cgltf_component_type_r_16u) && (attribute->type == cgltf_type_vec2))
|
||||||
{
|
{
|
||||||
|
// TODO: WARNING: model.meshes[].boneIds is an (unsigned char *) --> Conversion required!
|
||||||
|
|
||||||
// Handle 16-bit unsigned short, vec2 format
|
// Handle 16-bit unsigned short, vec2 format
|
||||||
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*2, sizeof(unsigned short));
|
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*2, sizeof(unsigned short));
|
||||||
unsigned short* ptr = (unsigned short*)model.meshes[meshIndex].boneIds;
|
unsigned short *ptr = (unsigned short *)model.meshes[meshIndex].boneIds;
|
||||||
LOAD_ATTRIBUTE(attribute, 2, unsigned short, ptr)
|
LOAD_ATTRIBUTE(attribute, 2, unsigned short, ptr)
|
||||||
}
|
}
|
||||||
else if ((attribute->component_type == cgltf_component_type_r_16u) && (attribute->type == cgltf_type_vec4))
|
else if ((attribute->component_type == cgltf_component_type_r_16u) && (attribute->type == cgltf_type_vec4))
|
||||||
{
|
{
|
||||||
|
// TODO: WARNING: model.meshes[].boneIds is an (unsigned char *) --> Conversion required!
|
||||||
|
|
||||||
// Handle 16-bit unsigned short, vec4 format
|
// Handle 16-bit unsigned short, vec4 format
|
||||||
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*4, sizeof(unsigned short));
|
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*4, sizeof(unsigned short));
|
||||||
unsigned short* ptr = (unsigned short*)model.meshes[meshIndex].boneIds;
|
unsigned short *ptr = (unsigned short *)model.meshes[meshIndex].boneIds;
|
||||||
LOAD_ATTRIBUTE(attribute, 4, unsigned short, ptr)
|
LOAD_ATTRIBUTE(attribute, 4, unsigned short, ptr)
|
||||||
}
|
}
|
||||||
else if ((attribute->component_type == cgltf_component_type_r_32u) && (attribute->type == cgltf_type_vec4))
|
else if ((attribute->component_type == cgltf_component_type_r_32u) && (attribute->type == cgltf_type_vec4))
|
||||||
{
|
{
|
||||||
|
// TODO: WARNING: model.meshes[].boneIds is an (unsigned char *) --> Conversion required!
|
||||||
|
|
||||||
// Handle 32-bit unsigned int, vec4 format
|
// Handle 32-bit unsigned int, vec4 format
|
||||||
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*4, sizeof(unsigned int));
|
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*4, sizeof(unsigned int));
|
||||||
LOAD_ATTRIBUTE(attribute, 4, unsigned int, model.meshes[meshIndex].boneIds)
|
unsigned int *ptr = (unsigned int *)model.meshes[meshIndex].boneIds;
|
||||||
|
LOAD_ATTRIBUTE(attribute, 4, unsigned int, ptr)
|
||||||
}
|
}
|
||||||
else if ((attribute->component_type == cgltf_component_type_r_32f) && (attribute->type == cgltf_type_vec2))
|
else if ((attribute->component_type == cgltf_component_type_r_32f) && (attribute->type == cgltf_type_vec2))
|
||||||
{
|
{
|
||||||
|
// TODO: WARNING: model.meshes[].boneIds is an (unsigned char *) --> Conversion required!
|
||||||
|
|
||||||
// Handle 32-bit float, vec2 format
|
// Handle 32-bit float, vec2 format
|
||||||
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*2, sizeof(float));
|
model.meshes[meshIndex].boneIds = RL_CALLOC(model.meshes[meshIndex].vertexCount*2, sizeof(float));
|
||||||
float* ptr = (float*)model.meshes[meshIndex].boneIds;
|
float *ptr = (float *)model.meshes[meshIndex].boneIds;
|
||||||
LOAD_ATTRIBUTE(attribute, 2, float, ptr)
|
LOAD_ATTRIBUTE(attribute, 2, float, ptr)
|
||||||
}
|
}
|
||||||
else TRACELOG(LOG_WARNING, "MODEL: [%s] Joint attribute data format not supported", fileName);
|
else TRACELOG(LOG_WARNING, "MODEL: [%s] Joint attribute data format not supported", fileName);
|
||||||
|
Reference in New Issue
Block a user