Reio Piller
Reio Piller
but this will remove the `` formatting completely
having same issue
i think having `uint` as field type is fine as it should not use the field type for memory layout, it should just use the bit ranges for memory? I...
Thanks, that makes sense. However, my issue is not related to memory layout or capacity constraints. The correct type for this field is uint, as that is what Vulkan uses...
I noticed that i had left out the critical part from C header: ```c typedef uint32_t VkFlags; ``` i added that now. I hope it clears it up.
probably makes sense to use anonymous bitstructs in this case, so the C3 translation is this: ``` def Flags = uint; bitstruct GeometryInstanceFlagsKHR : Flags @overlap { bool triangle_facing_cull_disable :...
Would it make sense for me to try to explore this a bit, ie make some test cases and see where it starts to break down, in which platform etc,...