mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:00:41 +02:00
Fix build error/warning
This commit is contained in:
parent
2169952613
commit
f39121c53b
2 changed files with 0 additions and 2 deletions
|
@ -488,7 +488,6 @@ bool OBJSerializer::parseOBJGroup(OBJTokenizer& tokenizer, const hifi::VariantHa
|
||||||
FaceGroup faces;
|
FaceGroup faces;
|
||||||
HFMMesh& mesh = hfmModel.meshes[0];
|
HFMMesh& mesh = hfmModel.meshes[0];
|
||||||
mesh.parts.push_back(HFMMeshPart());
|
mesh.parts.push_back(HFMMeshPart());
|
||||||
HFMMeshPart& meshPart = mesh.parts.back();
|
|
||||||
bool sawG = false;
|
bool sawG = false;
|
||||||
bool result = true;
|
bool result = true;
|
||||||
int originalFaceCountForDebugging = 0;
|
int originalFaceCountForDebugging = 0;
|
||||||
|
|
|
@ -149,7 +149,6 @@ void vhacd::VHACDUtil::fattenMesh(const HFMMesh& mesh, const glm::mat4& modelOff
|
||||||
result.vertices << p3; // add the new point to the result mesh
|
result.vertices << p3; // add the new point to the result mesh
|
||||||
|
|
||||||
HFMMeshPart newMeshPart;
|
HFMMeshPart newMeshPart;
|
||||||
setMeshPartDefaults(newMeshPart, "unknown");
|
|
||||||
newMeshPart.triangleIndices << index0 << index1 << index2;
|
newMeshPart.triangleIndices << index0 << index1 << index2;
|
||||||
newMeshPart.triangleIndices << index0 << index3 << index1;
|
newMeshPart.triangleIndices << index0 << index3 << index1;
|
||||||
newMeshPart.triangleIndices << index1 << index3 << index2;
|
newMeshPart.triangleIndices << index1 << index3 << index2;
|
||||||
|
|
Loading…
Reference in a new issue