Required extensions and vulkan version?
spike11302000 opened this issue ยท 6 comments
What extensions are required and what minimum version of vulkan is need in order to run this mod?
I have a laptop with intel hd 500 graphic (Apollo Lake), which supports vulkan 1.3 but the mod fails to start and give the error "Failed to create buffer:-8" -8 being the vulkan error code for feature/extension missing
I will try to post log/crash report soon
int result = vmaCreateBuffer(allocator, bufferInfo, allocationInfo, pBuffer, pBufferMemory, null);
if(result != VK_SUCCESS) {
throw new RuntimeException("Failed to create buffer:" + result);
}
in MemoryManager.java
I see literally no reason for this to not work other than a driver bug, or a bug where someone was calling this with the wrong parameters (which doesn't make sense since your error code is -8)
edit: it seems to not be vulkan and it seems to be from AMD's GPUOpen vulkan memory allocator, so lemme check over there
edit: it's definitely a driver bug
Specs:
os: Arch Linux 5.17.9-zen1.1-zen
cpu: Intel Celeron N3450
gpu: Intel HD Graphics 500 (Apollo Lake)
mem: 4GB
I did notice in the readme that linux may not work so that might be the case here but im not sure, also to note all other vulkan games i have tried runs without issues
along with the logs i have also included vulkaninfo
output just in case
You only need Vulkan 1.1 which is the minimal version of Vulkan that the mod required