diff options
| author | 2021-06-16 04:59:30 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:38 -0400 | |
| commit | 374eeda1a35f6a1dc81cf22122c701be68e89c0f (patch) | |
| tree | 1155e56fffab693fe2c66ca38e6a435562c21b6d /src/shader_recompiler/shader_info.h | |
| parent | glsl: Only declare fragment outputs on fragment shaders (diff) | |
| download | yuzu-374eeda1a35f6a1dc81cf22122c701be68e89c0f.tar.gz yuzu-374eeda1a35f6a1dc81cf22122c701be68e89c0f.tar.xz yuzu-374eeda1a35f6a1dc81cf22122c701be68e89c0f.zip | |
shader: Properly manage attributes not written from previous stages
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index e9ebc16a4..a20e15d2e 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h | |||
| @@ -140,7 +140,7 @@ struct Info { | |||
| 140 | bool stores_sample_mask{}; | 140 | bool stores_sample_mask{}; |
| 141 | bool stores_frag_depth{}; | 141 | bool stores_frag_depth{}; |
| 142 | 142 | ||
| 143 | std::array<bool, 32> stores_generics{}; | 143 | std::bitset<32> stores_generics{}; |
| 144 | bool stores_layer{}; | 144 | bool stores_layer{}; |
| 145 | bool stores_viewport_index{}; | 145 | bool stores_viewport_index{}; |
| 146 | bool stores_point_size{}; | 146 | bool stores_point_size{}; |