mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-07 10:05:47 +00:00
VideoCommon: split the texture hash from the base name when generating the texture name
This commit is contained in:
parent
3e1a25ead0
commit
8fb0f91331
2 changed files with 12 additions and 4 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue