We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hello, at minimum 3 rows needs inserting into GetPhysicalDeviceSurfaceCapabilities()
+ pSurfaceCapabilities.SupportedCompositeAlpha = CompositeAlphaFlags(cpSurfaceCapabilities.supportedCompositeAlpha) + pSurfaceCapabilities.MinImageCount = uint32(cpSurfaceCapabilities.minImageCount) + pSurfaceCapabilities.MaxImageCount = uint32(cpSurfaceCapabilities.maxImageCount) return __v
this is required to make it return a value using the result pointer. thanks
The text was updated successfully, but these errors were encountered:
Same problem here, MemoryTypeBits is not filled
func GetBufferMemoryRequirements(device Device, buffer Buffer, pMemoryRequirements *MemoryRequirements) { cdevice, _ := *(*C.VkDevice)(unsafe.Pointer(&device)), cgoAllocsUnknown cbuffer, _ := *(*C.VkBuffer)(unsafe.Pointer(&buffer)), cgoAllocsUnknown cpMemoryRequirements, _ := pMemoryRequirements.PassRef() C.callVkGetBufferMemoryRequirements(cdevice, cbuffer, cpMemoryRequirements) + pMemoryRequirements.MemoryTypeBits = uint32(cpMemoryRequirements.memoryTypeBits) }
Sorry, something went wrong.
I think it is a more general problem, same at the end of GetPhysicalDeviceSurfaceFormats()
+ for i := range pSurfaceFormats { + pSurfaceFormats[i].Format = Format(pSurfaceFormats[i].refedaf82ca.format) + pSurfaceFormats[i].ColorSpace = ColorSpace(pSurfaceFormats[i].refedaf82ca.colorSpace) + } return __v }
Yep, something's missing. I'll look into that
Generally, if something is not there in generated code, that's a bug in the generator. Or misconfiguration. I'll check for the latter.
No branches or pull requests
hello, at minimum 3 rows needs inserting into GetPhysicalDeviceSurfaceCapabilities()
this is required to make it return a value using the result pointer.
thanks
The text was updated successfully, but these errors were encountered: