We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c84dd4 commit f555606Copy full SHA for f555606
1 file changed
HMCLCore/src/main/java/org/jackhuang/hmcl/game/Renderer.java
@@ -30,13 +30,14 @@ public enum Renderer {
30
DEFAULT(null, null, null),
31
32
VULKAN(API.VULKAN, null, null),
33
+ OPENGL(API.OPENGL, null, null),
34
+
35
LAVAPIPE(API.VULKAN, "lavapipe", "lvp"),
36
37
// Currently, Dozen does not support the VK_KHR_push_descriptor feature, so it cannot launch Minecraft 26.2
38
// Using Dozen can run Minecraft 1.21.11 + VulkanMod, but it will cause the game to crash after playing for a while
39
// DOZEN(API.VULKAN, "dzn", "dzn"),
40
- OPENGL(API.OPENGL, null, null),
41
LLVMPIPE(API.OPENGL, "llvmpipe", null),
42
ZINK(API.OPENGL, "zink", null),
43
D3D12(API.OPENGL, "d3d12", null),
0 commit comments