diff options
| author | 2022-09-10 17:09:45 +0800 | |
|---|---|---|
| committer | 2022-09-20 12:03:31 +0800 | |
| commit | d4cb0eac87c9dea121a0f6bd2355fa5e6c641274 (patch) | |
| tree | 292908a4b59bc6443d252fd313aaeb3da9dd2be8 /src/shader_recompiler/shader_info.h | |
| parent | Merge pull request #8863 from german77/triggers (diff) | |
| download | yuzu-d4cb0eac87c9dea121a0f6bd2355fa5e6c641274.tar.gz yuzu-d4cb0eac87c9dea121a0f6bd2355fa5e6c641274.tar.xz yuzu-d4cb0eac87c9dea121a0f6bd2355fa5e6c641274.zip | |
video_core: Fix legacy to generic location unpaired
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index f5690805c..c3c586ada 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | 5 | ||
| 6 | #include <array> | 6 | #include <array> |
| 7 | #include <bitset> | 7 | #include <bitset> |
| 8 | #include <map> | ||
| 8 | 9 | ||
| 9 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| 10 | #include "shader_recompiler/frontend/ir/type.h" | 11 | #include "shader_recompiler/frontend/ir/type.h" |
| @@ -123,6 +124,8 @@ struct Info { | |||
| 123 | VaryingState stores; | 124 | VaryingState stores; |
| 124 | VaryingState passthrough; | 125 | VaryingState passthrough; |
| 125 | 126 | ||
| 127 | std::map<IR::Attribute, IR::Attribute> legacy_stores_mapping; | ||
| 128 | |||
| 126 | bool loads_indexed_attributes{}; | 129 | bool loads_indexed_attributes{}; |
| 127 | 130 | ||
| 128 | std::array<bool, 8> stores_frag_color{}; | 131 | std::array<bool, 8> stores_frag_color{}; |