diff options
| author | 2022-10-06 21:29:53 +0200 | |
|---|---|---|
| committer | 2022-10-06 21:29:53 +0200 | |
| commit | 1effa578f12f79d7816e3543291f302f126cc1d2 (patch) | |
| tree | 14803b31b6817294d40d57446f6fa94c5ff3fe9a /src/shader_recompiler/shader_info.h | |
| parent | Merge pull request #9025 from FernandoS27/slava-ukrayini (diff) | |
| parent | vulkan_blitter: Fix pool allocation double free. (diff) | |
| download | yuzu-1effa578f12f79d7816e3543291f302f126cc1d2.tar.gz yuzu-1effa578f12f79d7816e3543291f302f126cc1d2.tar.xz yuzu-1effa578f12f79d7816e3543291f302f126cc1d2.zip | |
Merge pull request #8467 from FernandoS27/yfc-rel-1
Project yuzu Fried Chicken (Y.F.C.) Part 1
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index f5690805c..cc596da4f 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h | |||
| @@ -61,8 +61,10 @@ struct TextureBufferDescriptor { | |||
| 61 | bool has_secondary; | 61 | bool has_secondary; |
| 62 | u32 cbuf_index; | 62 | u32 cbuf_index; |
| 63 | u32 cbuf_offset; | 63 | u32 cbuf_offset; |
| 64 | u32 shift_left; | ||
| 64 | u32 secondary_cbuf_index; | 65 | u32 secondary_cbuf_index; |
| 65 | u32 secondary_cbuf_offset; | 66 | u32 secondary_cbuf_offset; |
| 67 | u32 secondary_shift_left; | ||
| 66 | u32 count; | 68 | u32 count; |
| 67 | u32 size_shift; | 69 | u32 size_shift; |
| 68 | }; | 70 | }; |
| @@ -85,8 +87,10 @@ struct TextureDescriptor { | |||
| 85 | bool has_secondary; | 87 | bool has_secondary; |
| 86 | u32 cbuf_index; | 88 | u32 cbuf_index; |
| 87 | u32 cbuf_offset; | 89 | u32 cbuf_offset; |
| 90 | u32 shift_left; | ||
| 88 | u32 secondary_cbuf_index; | 91 | u32 secondary_cbuf_index; |
| 89 | u32 secondary_cbuf_offset; | 92 | u32 secondary_cbuf_offset; |
| 93 | u32 secondary_shift_left; | ||
| 90 | u32 count; | 94 | u32 count; |
| 91 | u32 size_shift; | 95 | u32 size_shift; |
| 92 | }; | 96 | }; |