summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Assets/CustomAssetLibrary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/Assets/CustomAssetLibrary.cpp')
-rw-r--r--Source/Core/VideoCommon/Assets/CustomAssetLibrary.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/Core/VideoCommon/Assets/CustomAssetLibrary.cpp b/Source/Core/VideoCommon/Assets/CustomAssetLibrary.cpp
index 7b6420088f..4446f602e8 100644
--- a/Source/Core/VideoCommon/Assets/CustomAssetLibrary.cpp
+++ b/Source/Core/VideoCommon/Assets/CustomAssetLibrary.cpp
@@ -10,21 +10,6 @@
namespace VideoCommon
{
-namespace
-{
-std::size_t GetAssetSize(const CustomTextureData& data)
-{
- std::size_t total = 0;
- for (const auto& slice : data.m_slices)
- {
- for (const auto& level : slice.m_levels)
- {
- total += level.data.size();
- }
- }
- return total;
-}
-} // namespace
CustomAssetLibrary::LoadInfo CustomAssetLibrary::LoadGameTexture(const AssetID& asset_id,
TextureData* data)
{