mods:depthbufferfix
                no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
| — | mods:depthbufferfix [2019/11/26 22:44] (current) – created calmilamsy | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | =====Depth Buffer Fix===== | ||
| + | Depth buffer fix is a patch that fixes jaggy lines on clouds and blocks in the distance on some GPUs. | ||
| + | |||
| + | ====Downloads===== | ||
| + | |||
| + | [[https:// | ||
| + | |||
| + | ====How to Make==== | ||
| + | First, you need to navigate to the Minecraft.class within your source code. | ||
| + | |||
| + | Once there, in the place where it has this code right under the | ||
| + | Display.setTitle(" | ||
| + | code, replace this try statement | ||
| + | < | ||
| + | try | ||
| + | { | ||
| + | Display.create(); | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | with this one that has been ripped out of Beta 1.8 | ||
| + | < | ||
| + | try | ||
| + | { | ||
| + | PixelFormat pixelformat = new PixelFormat(); | ||
| + | pixelformat = pixelformat.withDepthBits(24); | ||
| + | Display.create(pixelformat); | ||
| + | } | ||
| + | </ | ||
| + | - Johnanater# | ||
| + | |||
| + | =====Supported Versions===== | ||
| + | Any version <=b1.7.3 using the mentioned method. | ||
| + | |||
| + | < | ||
| + | * [[versions: | ||
| + | </ | ||
mods/depthbufferfix.txt · Last modified: 2019/11/26 22:44 by calmilamsy
                
                