Oni
Results
2
comments of
Oni
LONG_PTR cannot be assigned to HINSTANCE so a reinterpret_cast is needed: `createInfo.hinstance = reinterpret_cast(GetWindowLongPtr(createInfo.hwnd, GWLP_HINSTANCE));`
Following this issue, I discovered that copying an entire structure in a buffer device address, as done in: ```glsl MyBuffer(address).data[0] = InBuffer.data[0]; ``` generates the "Aligned 0" SPIR-V, while splitting...