Skip to content

Commit

Permalink
[misc] removed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
PanosK92 committed Jan 12, 2025
1 parent c65011c commit 3adcf58
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions runtime/Core/GeometryProcessing.h
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,6 @@ namespace spartan::geometry_processing

static void simplify(std::vector<uint32_t>& indices, const std::vector<RHI_Vertex_PosTexNorTan>& vertices, size_t triangle_target)
{
SP_LOG_INFO("Triangles before simplification: %d. Triangle target: %d", indices.size() / 3, triangle_target);

float reduction = 0.1f;
float error = 0.1f;
size_t index_count = indices.size();
Expand Down Expand Up @@ -365,8 +363,6 @@ namespace spartan::geometry_processing
reduction += 0.1f;
error += 0.1f;
}

SP_LOG_INFO("Triangles after simplification: %d", indices.size() / 3);
}

static void optimize(std::vector<RHI_Vertex_PosTexNorTan>& vertices, std::vector<uint32_t>& indices)
Expand Down

0 comments on commit 3adcf58

Please sign in to comment.