backward compatibility fix

This commit is contained in:
Erwin Coumans
2018-10-09 16:25:32 -07:00
parent 74fca2418b
commit 5f954e2496
3 changed files with 10 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ struct TinyRenderObjectData
virtual ~TinyRenderObjectData();
void loadModel(const char* fileName, struct CommonFileIOInterface* fileIO);
void createCube(float HalfExtentsX, float HalfExtentsY, float HalfExtentsZ, struct CommonFileIOInterface* fileIO);
void createCube(float HalfExtentsX, float HalfExtentsY, float HalfExtentsZ, struct CommonFileIOInterface* fileIO=0);
void registerMeshShape(const float* vertices, int numVertices, const int* indices, int numIndices, const float rgbaColor[4],
unsigned char* textureImage = 0, int textureWidth = 0, int textureHeight = 0);