Remove IMinecraftRenderWrapper.tryDisableVanillaFog()

They are now handled via mixins
This commit is contained in:
James Seibel
2023-08-06 19:21:46 -05:00
parent 38a7a837e7
commit 2930a899d8
2 changed files with 0 additions and 5 deletions
@@ -161,8 +161,6 @@ public class LodRenderer
drawSaveGLState.end("drawSaveGLState");
GLProxy glProxy = GLProxy.getInstance();
if (Config.Client.Advanced.Graphics.Fog.disableVanillaFog.get())
MC_RENDER.tryDisableVanillaFog();
//===================//
// draw params setup //
@@ -134,8 +134,5 @@ public interface IMinecraftRenderWrapper extends IBindable
ILightMapWrapper getLightmapWrapper();
// Try and disable vanilla fog. Return true if successful, or false if not able to.
boolean tryDisableVanillaFog();
}