mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-06 06:41:05 +00:00
Ensure descriptor sizes are properly initialised in default pipe state
This commit is contained in:
@@ -537,13 +537,13 @@ struct State
|
||||
|
||||
:type: int
|
||||
)");
|
||||
uint32_t descriptorCount;
|
||||
uint32_t descriptorCount = 0;
|
||||
|
||||
DOCUMENT(R"(The byte size of a descriptor in the virtual descriptor storage.
|
||||
|
||||
:type: int
|
||||
)");
|
||||
uint32_t descriptorByteSize;
|
||||
uint32_t descriptorByteSize = 0;
|
||||
|
||||
DOCUMENT(R"(The stream-out pipeline stage.
|
||||
|
||||
|
||||
@@ -649,13 +649,13 @@ struct State
|
||||
|
||||
:type: int
|
||||
)");
|
||||
uint32_t descriptorCount;
|
||||
uint32_t descriptorCount = 0;
|
||||
|
||||
DOCUMENT(R"(The byte size of a descriptor in the virtual descriptor storage.
|
||||
|
||||
:type: int
|
||||
)");
|
||||
uint32_t descriptorByteSize;
|
||||
uint32_t descriptorByteSize = 0;
|
||||
|
||||
DOCUMENT(R"(Texture completeness issues of descriptors in the descriptor store.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user