marc0246

Results 50 comments of marc0246

The above ^ has been implemented in #2204.

I'm unsure what exactly this is referencing, but I can only image the `callback` extern function was meant, in which `pMessageIdName` was dereferenced without checking for null. This bug has...

Actually it was #1487 that fixed the bug, oopsie.

Using `VMA_ALLOCATION_CREATE_HOST_ACCESS_SEQUENTIAL_WRITE_BIT`, I would have expected to always receive a memory type that is `HOST_COHERENT`. However, on MacOS and most mobile devices, unless you use `VMA_MEMORY_USAGE_AUTO_PREFER_HOST`, you receive the memory...

My understanding was that `HOST_COHERENT` memory is additionally faster for the host to write because writes can be combined. Is this not the case if the memory is `HOST_COHERENT |...

I realized as well what I said doesn't make much sense, a bit silly of me. What you're suggesting makes the most sense. Thanks a lot for taking the time...