Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
durswd committed Sep 14, 2022
1 parent eacfd04 commit 9db990e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Dev/Cpp/EffekseerMaterial/efkMat.TextExporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,6 @@ TextExporterResult TextExporter::Export(std::shared_ptr<Material> material, std:
// Assign Uniform
{
int32_t offset = 0;
int32_t ind = 0;
for (auto& extracted : extractedUniforms)
{
extracted.second->UniformName = "efk_uniform_" + std::to_string(extracted.first);
Expand All @@ -904,7 +903,6 @@ TextExporterResult TextExporter::Export(std::shared_ptr<Material> material, std:

extracted.second->Offset = offset;
offset += sizeof(float) * 4;
ind += 1;
}
}

Expand Down

0 comments on commit 9db990e

Please sign in to comment.