mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-12 00:02:46 +00:00
Merge pull request #1342 from lioncash/trunc
gl_shader_decompiler: Avoid truncation warnings within LD_A and ST_A code
This commit is contained in:
commit
bd88d4108f
|
@ -1800,8 +1800,8 @@ private:
|
||||||
Tegra::Shader::IpaMode input_mode{Tegra::Shader::IpaInterpMode::Perspective,
|
Tegra::Shader::IpaMode input_mode{Tegra::Shader::IpaInterpMode::Perspective,
|
||||||
Tegra::Shader::IpaSampleMode::Default};
|
Tegra::Shader::IpaSampleMode::Default};
|
||||||
|
|
||||||
u32 next_element = instr.attribute.fmt20.element;
|
u64 next_element = instr.attribute.fmt20.element;
|
||||||
u32 next_index = static_cast<u32>(instr.attribute.fmt20.index.Value());
|
u64 next_index = static_cast<u64>(instr.attribute.fmt20.index.Value());
|
||||||
|
|
||||||
const auto LoadNextElement = [&](u32 reg_offset) {
|
const auto LoadNextElement = [&](u32 reg_offset) {
|
||||||
regs.SetRegisterToInputAttibute(instr.gpr0.Value() + reg_offset, next_element,
|
regs.SetRegisterToInputAttibute(instr.gpr0.Value() + reg_offset, next_element,
|
||||||
|
@ -1865,8 +1865,8 @@ private:
|
||||||
ASSERT_MSG((instr.attribute.fmt20.immediate.Value() % sizeof(u32)) == 0,
|
ASSERT_MSG((instr.attribute.fmt20.immediate.Value() % sizeof(u32)) == 0,
|
||||||
"Unaligned attribute loads are not supported");
|
"Unaligned attribute loads are not supported");
|
||||||
|
|
||||||
u32 next_element = instr.attribute.fmt20.element;
|
u64 next_element = instr.attribute.fmt20.element;
|
||||||
u32 next_index = static_cast<u32>(instr.attribute.fmt20.index.Value());
|
u64 next_index = static_cast<u64>(instr.attribute.fmt20.index.Value());
|
||||||
|
|
||||||
const auto StoreNextElement = [&](u32 reg_offset) {
|
const auto StoreNextElement = [&](u32 reg_offset) {
|
||||||
regs.SetOutputAttributeToRegister(static_cast<Attribute::Index>(next_index),
|
regs.SetOutputAttributeToRegister(static_cast<Attribute::Index>(next_index),
|
||||||
|
|
Loading…
Reference in a new issue