Coen Klosters
Coen Klosters
Thanks for the PR! What do you think @cheywood ? From what I can tell this change _only_ works when creating a project against a packaged release of NAP. Demos...
Thanks for taking the time to reply @vykhovanets and @cheywood. We're currently discussing the option to provide native ARM support, but until then, having a Framework Release built on x86-64...
Thanks for the update @vykhovanets. The 'Mode' property is an rtti defined enum in `nap::RenderWindow` and should be de-serializable. I think it fails because it can't convert the basic (deserialized)...
> [Issue with port audio](https://github.com/napframework/nap/pull/8#issuecomment-954224663) can be resolved by updating library [version ](http://files.portaudio.com/download.html) in thirdparty repo > > Audioanalysis and AudioPlayback demos are now working on macOS bigsur/monterey with M1...
After some further investigation and testing I am pretty certain the issue is related to using the [vulkan memory allocator](https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator) in combination with discrete graphics cards and MoltenVK. A colleague...
In addition to the remarks posted by @marcel303, this is our current fix: ``` // Create buffer information VkBufferCreateInfo bufferInfo = { VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO }; bufferInfo.size = size; bufferInfo.usage = bufferUsage;...