diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-11-08 21:08:07 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-11-08 23:48:50 +0100 |
commit | 096f339a2a817054c9e2dfef188a5e2470126236 (patch) | |
tree | 83b293c8ca82a1b6052c6d20063550fd92f10c61 /src/video_core/engines/shader_bytecode.h | |
parent | microprofile: Silence conversion warnings (diff) | |
download | yuzu-096f339a2a817054c9e2dfef188a5e2470126236.tar yuzu-096f339a2a817054c9e2dfef188a5e2470126236.tar.gz yuzu-096f339a2a817054c9e2dfef188a5e2470126236.tar.bz2 yuzu-096f339a2a817054c9e2dfef188a5e2470126236.tar.lz yuzu-096f339a2a817054c9e2dfef188a5e2470126236.tar.xz yuzu-096f339a2a817054c9e2dfef188a5e2470126236.tar.zst yuzu-096f339a2a817054c9e2dfef188a5e2470126236.zip |
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index 8f6bc76eb..78d6886fb 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -1478,7 +1478,8 @@ union Instruction { u32 value = static_cast<u32>(target); // The branch offset is relative to the next instruction and is stored in bytes, so // divide it by the size of an instruction and add 1 to it. - return static_cast<s32>((value ^ mask) - mask) / sizeof(Instruction) + 1; + return static_cast<s32>((value ^ mask) - mask) / static_cast<s32>(sizeof(Instruction)) + + 1; } } bra; @@ -1492,7 +1493,8 @@ union Instruction { u32 value = static_cast<u32>(target); // The branch offset is relative to the next instruction and is stored in bytes, so // divide it by the size of an instruction and add 1 to it. - return static_cast<s32>((value ^ mask) - mask) / sizeof(Instruction) + 1; + return static_cast<s32>((value ^ mask) - mask) / static_cast<s32>(sizeof(Instruction)) + + 1; } } brx; @@ -1851,11 +1853,11 @@ private: const std::size_t bit_position = opcode_bitsize - i - 1; switch (bitstring[i]) { case '0': - mask |= 1 << bit_position; + mask |= static_cast<u16>(1U << bit_position); break; case '1': - expect |= 1 << bit_position; - mask |= 1 << bit_position; + expect |= static_cast<u16>(1U << bit_position); + mask |= static_cast<u16>(1U << bit_position); break; default: // Ignore |