amerkoleci / Vortice.Vulkan

Cross platform .NET bindings for Vulkan, VMA, SPIRV-Cross and shaderc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vkCmdSetBlendConstants: wrong argument type

konstantinegorov opened this issue · comments

The "blendConstants" argument of the "vkCmdSetBlendConstants" command must be a pointer to float.

current command signature:
void vkCmdSetBlendConstants(VkCommandBuffer commandBuffer, float blendConstants);

valid command signature:
void vkCmdSetBlendConstants(VkCommandBuffer commandBuffer, float* blendConstants);

Thanks for reporting this!
Version 1.2.166.4 resolves this.