flyinghead

Results 950 comments of flyinghead

Can you test standalone? I spotted a new validation error due to this commit on the libretro core (causing retroarch to crash at start up here). But it only affects...

I fixed the error that was crashing retroarch at start up. I also removed the use of the new extension where it's not necessary. This could help the issue.

Could you try to disable the use of the new extension completely? To do this, modify line 467 in `core/rend/vulkan/vulkan_context.cpp` to read: ```c++ // Enable VK_EXT_provoking_vertex if available provokingVertexSupported =...

Tested latest build with mesa (nouveau, ubuntu 20 distrib) and no such issue (except that it's extremely slow but no surprise here).

I guess so to but I fail to see what could be the root cause. When forcing not to use the new provoking_vertex extension (like you did in the code),...

One more test: can you comment out line 59 in `core/rend/vulkan/vmallocator.cpp` ? ```c++ // Top-out at vulkan 1.1 //allocatorInfo.vulkanApiVersion = (physicalDevice.getProperties().apiVersion >= VK_API_VERSION_1_1) ? VK_API_VERSION_1_1 : VK_API_VERSION_1_0; ```

I should at least have tried it on my machine... Unfortunately it's a bit more complicated than that. But I have the feeling this could be the problem.

I don't have a theory unfortunately. I initially thought it could be related to gpu memory allocation but it doesn't seem to be the case.