Swap to using the Vulkan renderer by default
This will break a lot of games and fix others, but it makes more sense to use a backend being actively worked on.
This commit is contained in:
parent
54ba3480e4
commit
69bb6aacef
|
@ -80,7 +80,7 @@ std::unique_ptr<gpu::GraphicsSystem> CreateGraphicsSystem() {
|
||||||
std::unique_ptr<gpu::GraphicsSystem> best;
|
std::unique_ptr<gpu::GraphicsSystem> best;
|
||||||
|
|
||||||
best = std::unique_ptr<gpu::GraphicsSystem>(
|
best = std::unique_ptr<gpu::GraphicsSystem>(
|
||||||
new xe::gpu::gl4::GL4GraphicsSystem());
|
new xe::gpu::vulkan::VulkanGraphicsSystem());
|
||||||
if (best) {
|
if (best) {
|
||||||
return best;
|
return best;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue