Improve render engine config description
This commit is contained in:
@@ -839,8 +839,8 @@ public class Config
|
|||||||
+ " \n"
|
+ " \n"
|
||||||
+ "Options: \n"
|
+ "Options: \n"
|
||||||
+ EDhApiRenderingEngine.AUTO + " - changes based on the most likely API for that MC version \n"
|
+ EDhApiRenderingEngine.AUTO + " - changes based on the most likely API for that MC version \n"
|
||||||
+ EDhApiRenderingEngine.OPEN_GL + " - Default \n"
|
+ EDhApiRenderingEngine.OPEN_GL + " - The Default for MC 1.21.11 and older (supports Iris shaders) \n"
|
||||||
+ EDhApiRenderingEngine.BLAZE_3D + " - Only supported on MC 1.21.11 \n"
|
+ EDhApiRenderingEngine.BLAZE_3D + " - The Default for MC 26.1.2 and newer (supports Vulkan) \n"
|
||||||
+ "")
|
+ "")
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ public class F3Screen
|
|||||||
messageList.add("LOD Pos: "+y+detailLevel+"*"+posX+","+posZ+cf);
|
messageList.add("LOD Pos: "+y+detailLevel+"*"+posX+","+posZ+cf);
|
||||||
|
|
||||||
AbstractDhRenderApiDefinition renderApiDef = SingletonInjector.INSTANCE.get(AbstractDhRenderApiDefinition.class);
|
AbstractDhRenderApiDefinition renderApiDef = SingletonInjector.INSTANCE.get(AbstractDhRenderApiDefinition.class);
|
||||||
messageList.add("Rendering API: "+a+renderApiDef.getApiName()+cf);
|
messageList.add("Rendering API: "+a+renderApiDef.getEngineName()+cf);
|
||||||
}
|
}
|
||||||
messageList.add("");
|
messageList.add("");
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -20,7 +20,7 @@ public abstract class AbstractDhRenderApiDefinition implements IBindable
|
|||||||
//region
|
//region
|
||||||
|
|
||||||
/** Used for debugging */
|
/** Used for debugging */
|
||||||
public abstract String getApiName();
|
public abstract String getEngineName();
|
||||||
|
|
||||||
private final boolean useSingleIbo = (EPlatform.get() != EPlatform.MACOS);
|
private final boolean useSingleIbo = (EPlatform.get() != EPlatform.MACOS);
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user