hopperpl
hopperpl
Well, furthermore I tracked it to amfrt64.dll calling `vkGetDeviceProcAddr` in vulkan-1.dll to get `vkBindVideoEncoderMemoryAMD` and the call return `nullptr`. That's why it fails. The physical device is an AMD Radeon...
Thanks for the reply. As far as I can tell, `GetVulkanDeviceExtensions` returns 5 strings that I have to add as extensions to the call to `VkCreateDevice`. I'm already doing it....
vulkan-1.dll 1.1.126 amdvlk64.dll 26.20.15002.61 amfrt64.dll 1.04.16.0 Both are actually rather new. And those are the libraries that are loaded (in process). I look for a driver update. Maybe a beta...
There as a fresh release on the 18th, I installed that. But I'm not sure if that is better now, it's at least different: 2019-12-19 14:52:39.033 19700 [AMFDeviceVulkanImpl] Error: ..\..\..\..\..\runtime\src\core\DeviceVulkanImpl.cpp(722):Assertion...
Well, AMF should make a copy of the structure, otherwise the caller can change the values at any time and mix and match handle values. That's especially critical if the...
* the samples work find with the latest driver * debug layers are not enabled (as you mentioned it doesn't work) I will run another Vulkan API monitor to see...
Yes and No. The issue still exists if anything else in the process is using D3D11. It does not matter what framework or library or UI. As long as there...
https://github.com/yasm/yasm/blob/master/modules/arch/x86/gen_x86_insn.py and then with a regular expression to extract mnemonics... Pattern is `add_insn\("(\w+)",` I use this file to pull information about mnemonic feature flags, but to get all mnemonic names...
LZMA2 is not supported. Use false for the 2nd parameter in the LzmaStream constructor. `new LzmaStream(new LzmaEncoderProperties(), false, result)` Had the same problem a moment ago.