extensions/khr/draw_indirect_count: Use the right function pointer for non-indexed draw call (#695)
This commit is contained in:
parent
c1d5b5794d
commit
5ffd797a83
|
@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Update Vulkan-Headers to 1.3.238 (#688)
|
||||
|
||||
### Fixed
|
||||
|
||||
- `VK_KHR_draw_indirect_count`: use `cmd_draw_indirect_count_khr` instead of `cmd_draw_indexed_indirect_count_khr` for non-indexed draw call (#695)
|
||||
|
||||
## [0.37.1] - 2022-11-23
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -51,7 +51,7 @@ impl DrawIndirectCount {
|
|||
max_draw_count: u32,
|
||||
stride: u32,
|
||||
) {
|
||||
(self.fp.cmd_draw_indexed_indirect_count_khr)(
|
||||
(self.fp.cmd_draw_indirect_count_khr)(
|
||||
command_buffer,
|
||||
buffer,
|
||||
offset,
|
||||
|
|
Loading…
Reference in a new issue