mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Remove testing binormals implementation
This commit is contained in:
@ -1848,7 +1848,7 @@ static Mesh LoadOBJ(const char *fileName)
|
|||||||
{
|
{
|
||||||
// Attempt to calculate mesh tangents and binormals using positions and texture coordinates
|
// Attempt to calculate mesh tangents and binormals using positions and texture coordinates
|
||||||
mesh.tangents = (float *)malloc(mesh.vertexCount*3*sizeof(float));
|
mesh.tangents = (float *)malloc(mesh.vertexCount*3*sizeof(float));
|
||||||
mesh.binormals = (float *)malloc(mesh.vertexCount*3*sizeof(float));
|
// mesh.binormals = (float *)malloc(mesh.vertexCount*3*sizeof(float));
|
||||||
|
|
||||||
int vCount = 0;
|
int vCount = 0;
|
||||||
int uvCount = 0;
|
int uvCount = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user