mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-03 05:11:06 +00:00
Add support for VK_KHR_maintenance5
This commit is contained in:
committed by
Baldur Karlsson
parent
2b01465c79
commit
2eade4650b
@@ -515,7 +515,7 @@ BoundVBuffer PipeState::GetIBuffer() const
|
||||
ret.resourceId = m_Vulkan->inputAssembly.indexBuffer.resourceId;
|
||||
ret.byteOffset = m_Vulkan->inputAssembly.indexBuffer.byteOffset;
|
||||
ret.byteStride = m_Vulkan->inputAssembly.indexBuffer.byteStride;
|
||||
ret.byteSize = ~0ULL;
|
||||
ret.byteSize = m_Vulkan->inputAssembly.indexBuffer.byteSize;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -126,7 +126,7 @@ When not using pipeline libraries, this will be identical to :data:`pipelinePreR
|
||||
)");
|
||||
ResourceId pipelineFragmentLayoutResourceId;
|
||||
DOCUMENT("The flags used to create the pipeline object.");
|
||||
uint32_t flags = 0;
|
||||
uint64_t flags = 0;
|
||||
|
||||
DOCUMENT(R"(The bound descriptor sets.
|
||||
|
||||
@@ -149,6 +149,9 @@ struct IndexBuffer
|
||||
DOCUMENT("The byte offset from the start of the buffer to the beginning of the index data.");
|
||||
uint64_t byteOffset = 0;
|
||||
|
||||
DOCUMENT("The byte size from the start offset to the end of the index data.");
|
||||
uint64_t byteSize = 0;
|
||||
|
||||
DOCUMENT(R"(The number of bytes for each index in the index buffer. Typically 2 or 4 bytes but
|
||||
it can be 0 if no index buffer is bound.
|
||||
)");
|
||||
|
||||
Reference in New Issue
Block a user