From e1d2dff25e03a651d4c6fb4539ab20a41ea767dd Mon Sep 17 00:00:00 2001 From: _ <_> Date: Thu, 19 Apr 2018 04:37:59 -0700 Subject: [PATCH] Removed printouts --- demo/common.h | 1 - demo/extractmesh.c | 1 - 2 files changed, 2 deletions(-) diff --git a/demo/common.h b/demo/common.h index 44f2f10..0a2f2d8 100644 --- a/demo/common.h +++ b/demo/common.h @@ -62,6 +62,5 @@ void append(const char *filename, const char *t, unsigned size) { if (written == 0) { perror("write error"); } - printf("wrote %x\n", written); } } diff --git a/demo/extractmesh.c b/demo/extractmesh.c index 8468a42..62b89de 100644 --- a/demo/extractmesh.c +++ b/demo/extractmesh.c @@ -46,7 +46,6 @@ void writemesh(const struct MeshHeader *mh, for (int i = 0; i < newmh.numBatch; i++) { unsigned int nVertices = m -> b -> bd[i].numVertex; append(fn, (char*)(m -> b[i].vd.positions), sizeof(struct Coordinate) * nVertices); - DEVIL1GEO.printcoordinate(m -> b -> vd.positions, 3); append(fn, (char*)(m -> b[i].vd.normals), sizeof(struct Coordinate) * nVertices); append(fn, (char*)(m -> b[i].vd.u), sizeof(struct UVs) * nVertices); append(fn, (char*)(m -> b[i].vd.bi), sizeof(struct BoneIndexes) * nVertices);