diff options
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
-rw-r--r-- | src/shader_recompiler/shader_info.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index 74d7a6a94..e9ebc16a4 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -75,6 +75,7 @@ using TextureBufferDescriptors = boost::container::small_vector<TextureBufferDes struct ImageBufferDescriptor { ImageFormat format; bool is_written; + bool is_read; u32 cbuf_index; u32 cbuf_offset; u32 count; @@ -99,6 +100,7 @@ struct ImageDescriptor { TextureType type; ImageFormat format; bool is_written; + bool is_read; u32 cbuf_index; u32 cbuf_offset; u32 count; |