Skip to content

Commit e91fdd7

Browse files
GLTF Resource Manager: removed unused Index parameter of the GetIndexBufferVersion method
1 parent 1260993 commit e91fdd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

AssetLoader/interface/GLTFResourceManager.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class ResourceManager final : public ObjectBase<IObject>
200200
Uint32 GetTextureVersion();
201201

202202
/// Returns the index buffer version.
203-
Uint32 GetIndexBufferVersion(Uint32 Index) const;
203+
Uint32 GetIndexBufferVersion() const;
204204

205205
/// Returns the combined vertex pool version, i.e. the sum all vertex pool versions.
206206
Uint32 GetVertexPoolsVersion();

AssetLoader/src/GLTFResourceManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ Uint32 ResourceManager::GetTextureVersion()
292292
}
293293

294294

295-
Uint32 ResourceManager::GetIndexBufferVersion(Uint32 Index) const
295+
Uint32 ResourceManager::GetIndexBufferVersion() const
296296
{
297297
return m_pIndexBufferAllocator ? m_pIndexBufferAllocator->GetVersion() : 0;
298298
}

0 commit comments

Comments
 (0)