diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-03-29 03:26:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-29 03:26:46 -0400 |
| commit | 9819d66a478be3d57af9278e6c2cb433556a78d1 (patch) | |
| tree | 07623114def6822d8abd7c61d77520fe98b391ce /Source/Core/VideoCommon | |
| parent | f00b7d39f0b2ff6cebbd78125bf7cdc888b9a6af (diff) | |
| parent | 433c6ce0f20e33379985a56b58540197feeeff59 (diff) | |
Merge pull request #13221 from mitaclaw/nrvo-fails-1
GCC: Remedy NRVO Fails
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/TextureInfo.cpp | 13 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderX64.cpp | 5 |
2 files changed, 7 insertions, 11 deletions
diff --git a/Source/Core/VideoCommon/TextureInfo.cpp b/Source/Core/VideoCommon/TextureInfo.cpp index 5ee23f3671..27055f462d 100644 --- a/Source/Core/VideoCommon/TextureInfo.cpp +++ b/Source/Core/VideoCommon/TextureInfo.cpp @@ -183,14 +183,11 @@ TextureInfo::NameDetails TextureInfo::CalculateTextureName() const const u64 tex_hash = XXH64(m_ptr, m_texture_size, 0); const u64 tlut_hash = tlut_size ? XXH64(tlut, tlut_size, 0) : 0; - NameDetails result; - result.base_name = fmt::format("{}{}x{}{}", format_prefix, m_raw_width, m_raw_height, - m_mipmaps_enabled ? "_m" : ""); - result.texture_name = fmt::format("{:016x}", tex_hash); - result.tlut_name = tlut_size ? fmt::format("_{:016x}", tlut_hash) : ""; - result.format_name = fmt::to_string(static_cast<int>(m_texture_format)); - - return result; + return {.base_name = fmt::format("{}{}x{}{}", format_prefix, m_raw_width, m_raw_height, + m_mipmaps_enabled ? "_m" : ""), + .texture_name = fmt::format("{:016x}", tex_hash), + .tlut_name = tlut_size ? fmt::format("_{:016x}", tlut_hash) : "", + .format_name = fmt::to_string(static_cast<int>(m_texture_format))}; } bool TextureInfo::IsDataValid() const diff --git a/Source/Core/VideoCommon/VertexLoaderX64.cpp b/Source/Core/VideoCommon/VertexLoaderX64.cpp index aa8ad2bd67..c7cbf55257 100644 --- a/Source/Core/VideoCommon/VertexLoaderX64.cpp +++ b/Source/Core/VideoCommon/VertexLoaderX64.cpp @@ -57,11 +57,10 @@ VertexLoaderX64::VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att) OpArg VertexLoaderX64::GetVertexAddr(CPArray array, VertexComponentFormat attribute) { - OpArg data = MDisp(src_reg, m_src_ofs); if (IsIndexed(attribute)) { int bits = attribute == VertexComponentFormat::Index8 ? 8 : 16; - LoadAndSwap(bits, scratch1, data); + LoadAndSwap(bits, scratch1, MDisp(src_reg, m_src_ofs)); m_src_ofs += bits / 8; if (array == CPArray::Position) { @@ -74,7 +73,7 @@ OpArg VertexLoaderX64::GetVertexAddr(CPArray array, VertexComponentFormat attrib } else { - return data; + return MDisp(src_reg, m_src_ofs); } } |
