diff options
author | Lioncash <mathew1800@gmail.com> | 2021-07-26 10:11:13 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-07-26 10:23:59 +0200 |
commit | 06ca911621eaea236daf8d5eed3a4289489fd5cf (patch) | |
tree | b4d776578e94e6a7971d852dd308caa88a75c031 /src/shader_recompiler | |
parent | Merge pull request #6575 from FernandoS27/new_settings (diff) | |
download | yuzu-06ca911621eaea236daf8d5eed3a4289489fd5cf.tar yuzu-06ca911621eaea236daf8d5eed3a4289489fd5cf.tar.gz yuzu-06ca911621eaea236daf8d5eed3a4289489fd5cf.tar.bz2 yuzu-06ca911621eaea236daf8d5eed3a4289489fd5cf.tar.lz yuzu-06ca911621eaea236daf8d5eed3a4289489fd5cf.tar.xz yuzu-06ca911621eaea236daf8d5eed3a4289489fd5cf.tar.zst yuzu-06ca911621eaea236daf8d5eed3a4289489fd5cf.zip |
Diffstat (limited to 'src/shader_recompiler')
-rw-r--r-- | src/shader_recompiler/frontend/ir/ir_emitter.h | 4 | ||||
-rw-r--r-- | src/shader_recompiler/frontend/ir/value.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.h b/src/shader_recompiler/frontend/ir/ir_emitter.h index 53f7b3b06..1b89ca5a0 100644 --- a/src/shader_recompiler/frontend/ir/ir_emitter.h +++ b/src/shader_recompiler/frontend/ir/ir_emitter.h @@ -327,8 +327,8 @@ public: const Value& derivates, const Value& offset, const F32& lod_clamp, TextureInstInfo info); [[nodiscard]] Value ImageRead(const Value& handle, const Value& coords, TextureInstInfo info); - [[nodiscard]] void ImageWrite(const Value& handle, const Value& coords, const Value& color, - TextureInstInfo info); + void ImageWrite(const Value& handle, const Value& coords, const Value& color, + TextureInstInfo info); [[nodiscard]] Value ImageAtomicIAdd(const Value& handle, const Value& coords, const Value& value, TextureInstInfo info); diff --git a/src/shader_recompiler/frontend/ir/value.h b/src/shader_recompiler/frontend/ir/value.h index 0c6bf684d..795194d41 100644 --- a/src/shader_recompiler/frontend/ir/value.h +++ b/src/shader_recompiler/frontend/ir/value.h @@ -197,8 +197,8 @@ public: } template <typename FlagsType> - requires(sizeof(FlagsType) <= sizeof(u32) && std::is_trivially_copyable_v<FlagsType>) - [[nodiscard]] void SetFlags(FlagsType value) noexcept { + requires(sizeof(FlagsType) <= sizeof(u32) && + std::is_trivially_copyable_v<FlagsType>) void SetFlags(FlagsType value) noexcept { std::memcpy(&flags, &value, sizeof(value)); } |