Skip to content

Commit 4193bdd

Browse files
GLTF Resource Manager: fixed issue in GetVertexPoolUsageStats
1 parent a3485ce commit 4193bdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AssetLoader/src/GLTFResourceManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ VertexPoolUsageStats ResourceManager::GetVertexPoolUsageStats(const VertexLayout
544544
for (const auto& Pool : Pools)
545545
{
546546
VertexPoolUsageStats PoolStats;
547-
Pool->GetUsageStats(Stats);
547+
Pool->GetUsageStats(PoolStats);
548548
Stats += PoolStats;
549549
}
550550
};

0 commit comments

Comments
 (0)