-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extensions/khr/draw_indirect_count: Use the right function pointer for non-indexed draw call #695
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch! It has been this way since the extension was introduced in 2020 via #262 (CC @gabdube), and nobody noticed :) (likely because it was stabilized).
Can you document this in the readme?:
diff --git a/Changelog.md b/Changelog.md
index 944fec8..943e6f7 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
+### Fixed
+
+- extensions/khr/draw_indirect_count: use `cmd_draw_indirect_count_khr` instead of `cmd_draw_indexed_indirect_count_khr` for non-indexed draw call. (#695)
+
### Added
- Update Vulkan-Headers to 1.3.238 (#688)
draw_indirect_count
cmd_draw_indirect_count_khr
instead of cmd_draw_indexed_indirect_count_khr
for non-indexed draw call
cmd_draw_indirect_count_khr
instead of cmd_draw_indexed_indirect_count_khr
for non-indexed draw call
Thanks for the quick review!
Yeah, it seems so, we only noticed because we recently started using the extension exclusively as opposed to either the one in core 1.2 or the ext. |
Ouch, sorry about that |
What's the status over here? |
…r non-indexed draw call (#695)
No description provided.