Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
chitalu committed Nov 15, 2023
1 parent 3cb993c commit 385bcaa
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions include/mio/mio.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,19 @@ ssize_t getline(char** lineptr, size_t* n, FILE* stream);
// structure for a mesh that is loaded from file using mio functions
struct MioMesh
{
double* pVertices = NULL;
double* pNormals = NULL;
double* pTexCoords = NULL;
double* pVertices;
double* pNormals;
double* pTexCoords;

unsigned int* pFaceSizes = NULL;
unsigned int* pFaceVertexIndices = NULL;
unsigned int* pFaceVertexTexCoordIndices = NULL;
unsigned int* pFaceVertexNormalIndices = NULL;
unsigned int* pFaceSizes;
unsigned int* pFaceVertexIndices;
unsigned int* pFaceVertexTexCoordIndices;
unsigned int* pFaceVertexNormalIndices;

unsigned int numVertices = 0;
unsigned int numNormals = 0;
unsigned int numTexCoords = 0;
unsigned int numFaces = 0;
unsigned int numVertices;
unsigned int numNormals;
unsigned int numTexCoords;
unsigned int numFaces;
};

/*
Expand Down

0 comments on commit 385bcaa

Please sign in to comment.