diff options
| author | 2022-10-24 10:50:24 -0700 | |
|---|---|---|
| committer | 2022-10-24 10:50:24 -0700 | |
| commit | cbb6c24215aa0d5c0e620ff75f29a19275521a43 (patch) | |
| tree | b88bc00e4203187453c9da41cad79f4e5e7624fb /src/shader_recompiler/shader_info.h | |
| parent | Merge pull request #9122 from liamwhite/burnt-chicken (diff) | |
| parent | Address feedback (diff) | |
| download | yuzu-cbb6c24215aa0d5c0e620ff75f29a19275521a43.tar.gz yuzu-cbb6c24215aa0d5c0e620ff75f29a19275521a43.tar.xz yuzu-cbb6c24215aa0d5c0e620ff75f29a19275521a43.zip | |
Merge pull request #8873 from vonchenplus/fix_legacy_location_error
video_core: Fix legacy to generic location unpaired
Diffstat (limited to '')
| -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 cc596da4f..81097bf1a 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" |
| @@ -127,6 +128,8 @@ struct Info { | |||
| 127 | VaryingState stores; | 128 | VaryingState stores; |
| 128 | VaryingState passthrough; | 129 | VaryingState passthrough; |
| 129 | 130 | ||
| 131 | std::map<IR::Attribute, IR::Attribute> legacy_stores_mapping; | ||
| 132 | |||
| 130 | bool loads_indexed_attributes{}; | 133 | bool loads_indexed_attributes{}; |
| 131 | 134 | ||
| 132 | std::array<bool, 8> stores_frag_color{}; | 135 | std::array<bool, 8> stores_frag_color{}; |