summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/shader_info.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-04-06 20:14:55 -0300
committerGravatar ameerj2021-07-22 21:51:26 -0400
commite9a91bc5cc2c39b476ba8946f66930f5ab5608b2 (patch)
treead75617771ba4093c5609a505e3c8926668eb533 /src/shader_recompiler/shader_info.h
parentshader: Fix F2I (diff)
downloadyuzu-e9a91bc5cc2c39b476ba8946f66930f5ab5608b2.tar.gz
yuzu-e9a91bc5cc2c39b476ba8946f66930f5ab5608b2.tar.xz
yuzu-e9a91bc5cc2c39b476ba8946f66930f5ab5608b2.zip
shader: Interact texture buffers with buffer cache
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/shader_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h
index e6f0de8d8..4cc731198 100644
--- a/src/shader_recompiler/shader_info.h
+++ b/src/shader_recompiler/shader_info.h
@@ -119,8 +119,8 @@ struct Info {
119 boost::container::static_vector<ConstantBufferDescriptor, MAX_CBUFS> 119 boost::container::static_vector<ConstantBufferDescriptor, MAX_CBUFS>
120 constant_buffer_descriptors; 120 constant_buffer_descriptors;
121 boost::container::static_vector<StorageBufferDescriptor, MAX_SSBOS> storage_buffers_descriptors; 121 boost::container::static_vector<StorageBufferDescriptor, MAX_SSBOS> storage_buffers_descriptors;
122 TextureDescriptors texture_descriptors;
123 TextureBufferDescriptors texture_buffer_descriptors; 122 TextureBufferDescriptors texture_buffer_descriptors;
123 TextureDescriptors texture_descriptors;
124}; 124};
125 125
126} // namespace Shader 126} // namespace Shader