diff options
| author | 2021-12-28 16:25:37 -0800 | |
|---|---|---|
| committer | 2021-12-28 16:25:37 -0800 | |
| commit | 279c7bcc1af09933a02ee38c888847df1419f44d (patch) | |
| tree | 181ec0ba649135014e50dd9b51388636d0997935 | |
| parent | Merge pull request #7622 from ameerj/vk-rescale-invalid-ptr (diff) | |
| parent | Empty spaces (diff) | |
| download | yuzu-279c7bcc1af09933a02ee38c888847df1419f44d.tar.gz yuzu-279c7bcc1af09933a02ee38c888847df1419f44d.tar.xz yuzu-279c7bcc1af09933a02ee38c888847df1419f44d.zip | |
Merge pull request #7618 from goldenx86/patch-4
Increase boost requirement to 1.78.0
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv.cpp | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d1ad55c9c..d44d67562 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -229,7 +229,7 @@ elseif (${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR YUZU_USE_BUNDLED_BOOST) | |||
| 229 | include_directories(SYSTEM "${Boost_INCLUDE_DIRS}") | 229 | include_directories(SYSTEM "${Boost_INCLUDE_DIRS}") |
| 230 | else() | 230 | else() |
| 231 | message(STATUS "Boost 1.73.0 or newer not found, falling back to Conan") | 231 | message(STATUS "Boost 1.73.0 or newer not found, falling back to Conan") |
| 232 | list(APPEND CONAN_REQUIRED_LIBS "boost/1.73.0") | 232 | list(APPEND CONAN_REQUIRED_LIBS "boost/1.78.0") |
| 233 | endif() | 233 | endif() |
| 234 | 234 | ||
| 235 | # Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS | 235 | # Attempt to locate any packages that are required and report the missing ones in CONAN_REQUIRED_LIBS |
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv.cpp b/src/shader_recompiler/backend/spirv/emit_spirv.cpp index 6ce7ed12a..50918317f 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv.cpp +++ b/src/shader_recompiler/backend/spirv/emit_spirv.cpp | |||
| @@ -30,11 +30,20 @@ struct FuncTraits<ReturnType_ (*)(Args...)> { | |||
| 30 | using ArgType = std::tuple_element_t<I, std::tuple<Args...>>; | 30 | using ArgType = std::tuple_element_t<I, std::tuple<Args...>>; |
| 31 | }; | 31 | }; |
| 32 | 32 | ||
| 33 | #ifdef _MSC_VER | ||
| 34 | #pragma warning(push) | ||
| 35 | #pragma warning(disable : 4702) // Ignore unreachable code warning | ||
| 36 | #endif | ||
| 37 | |||
| 33 | template <auto func, typename... Args> | 38 | template <auto func, typename... Args> |
| 34 | void SetDefinition(EmitContext& ctx, IR::Inst* inst, Args... args) { | 39 | void SetDefinition(EmitContext& ctx, IR::Inst* inst, Args... args) { |
| 35 | inst->SetDefinition<Id>(func(ctx, std::forward<Args>(args)...)); | 40 | inst->SetDefinition<Id>(func(ctx, std::forward<Args>(args)...)); |
| 36 | } | 41 | } |
| 37 | 42 | ||
| 43 | #ifdef _MSC_VER | ||
| 44 | #pragma warning(pop) | ||
| 45 | #endif | ||
| 46 | |||
| 38 | template <typename ArgType> | 47 | template <typename ArgType> |
| 39 | ArgType Arg(EmitContext& ctx, const IR::Value& arg) { | 48 | ArgType Arg(EmitContext& ctx, const IR::Value& arg) { |
| 40 | if constexpr (std::is_same_v<ArgType, Id>) { | 49 | if constexpr (std::is_same_v<ArgType, Id>) { |