mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-08-25 05:26:40 -05:00
shader: Increase the maximum number of storage buffers
Compute shaders spill uniform buffers on storage buffers, increasing the expected number.
This commit is contained in:
@@ -107,7 +107,7 @@ using ImageDescriptors = boost::container::small_vector<ImageDescriptor, 4>;
|
|||||||
|
|
||||||
struct Info {
|
struct Info {
|
||||||
static constexpr size_t MAX_CBUFS{18};
|
static constexpr size_t MAX_CBUFS{18};
|
||||||
static constexpr size_t MAX_SSBOS{16};
|
static constexpr size_t MAX_SSBOS{32};
|
||||||
|
|
||||||
bool uses_workgroup_id{};
|
bool uses_workgroup_id{};
|
||||||
bool uses_local_invocation_id{};
|
bool uses_local_invocation_id{};
|
||||||
|
Reference in New Issue
Block a user