mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-12 16:55:49 +00:00
Optimise UI for large descriptor arrays with few dynamically used binds
* We tune the pipeline state view and texture viewer to only iterate over a small list of dynamically used binds in the (vastly more common) case where unused binds are not being shown.
This commit is contained in:
@@ -1896,12 +1896,14 @@ void DoSerialise(SerialiserType &ser, VKPipe::DescriptorBinding &el)
|
||||
{
|
||||
SERIALISE_MEMBER(descriptorCount);
|
||||
SERIALISE_MEMBER(dynamicallyUsedCount);
|
||||
SERIALISE_MEMBER(firstUsedIndex);
|
||||
SERIALISE_MEMBER(lastUsedIndex);
|
||||
SERIALISE_MEMBER(type);
|
||||
SERIALISE_MEMBER(stageFlags);
|
||||
|
||||
SERIALISE_MEMBER(binds);
|
||||
|
||||
SIZE_CHECK(40);
|
||||
SIZE_CHECK(48);
|
||||
}
|
||||
|
||||
template <typename SerialiserType>
|
||||
|
||||
Reference in New Issue
Block a user