Browse Source

Use metal by default on supported systems.

There are still issues to fix with the Metal backend, but it's more easily testable now at least.
Alex Szpakowski 3 years ago
parent
commit
5549279eb1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/graphics/Graphics.cpp

+ 1 - 1
src/modules/graphics/Graphics.cpp

@@ -111,8 +111,8 @@ namespace metal { extern love::graphics::Graphics *createInstance(); }
 #endif
 
 static const Renderer rendererOrder[] = {
-	RENDERER_OPENGL,
 	RENDERER_METAL,
+	RENDERER_OPENGL,
 };
 
 static std::vector<Renderer> defaultRenderers =