VideoCommon: split the texture hash from the base name when generating the texture name

This commit is contained in:
iwubcode
2021-05-14 18:17:08 -05:00
parent 3e1a25ead0
commit 8fb0f91331
2 changed files with 12 additions and 4 deletions

View File

@ -25,10 +25,11 @@ public:
struct NameDetails
{
std::string base_name;
std::string texture_name;
std::string tlut_name;
std::string format_name;
std::string GetFullName() const { return base_name + tlut_name + format_name; }
std::string GetFullName() const;
};
NameDetails CalculateTextureName();