Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,6 @@ the future. No testing has been done (yet) on Linux or other platforms.
* vkGetPipelinePropertiesEXT - as of 1.3.240, this is the single command that uses VkBaseOutStructure as a parameter type.
BaseOutStructure (and BaseInStrucutre) are set to be ignored in the binding because they are self-referential and
cause infinite recursion in Resolve(). For the moment, I'm manually updating that parameter to struct{}.
* in/out structures (e.g., VkPhysicalDeviceFeatures2) need to be Vulkanized before passing in, not just allocated on the
Vulkan side. Vulkan is silently failing (i.e. no validation layers report, no error code) when structure type is not
set. Manual update to call Vulkanize on the named return parameter, and then Goify before return.
6 changes: 2 additions & 4 deletions basetype.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 2 additions & 55 deletions bitmask.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion bitmask_win32.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading