forked from IrisShaders/Iris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix shadow frustum issues, rename some unnamed instances
- Loading branch information
Showing
26 changed files
with
66 additions
and
528 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 0 additions & 84 deletions
84
src/main/java/net/coderbot/iris/layer/InnerWrappedRenderLayer.java
This file was deleted.
Oops, something went wrong.
83 changes: 0 additions & 83 deletions
83
src/main/java/net/coderbot/iris/layer/IrisRenderLayerWrapper.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
src/main/java/net/coderbot/iris/layer/IsBlockEntityRenderState.java
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
src/main/java/net/coderbot/iris/layer/IsBlockEntityRenderStateShard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package net.coderbot.iris.layer; | ||
|
||
import net.minecraft.client.renderer.RenderStateShard; | ||
|
||
public class IsBlockEntityRenderStateShard extends RenderStateShard { | ||
public static final IsBlockEntityRenderStateShard INSTANCE = new IsBlockEntityRenderStateShard(); | ||
|
||
private IsBlockEntityRenderStateShard() { | ||
super("iris:is_block_entity", GbufferPrograms::beginBlockEntities, GbufferPrograms::endBlockEntities); | ||
} | ||
} |
11 changes: 0 additions & 11 deletions
11
src/main/java/net/coderbot/iris/layer/IsEntityRenderState.java
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
src/main/java/net/coderbot/iris/layer/IsEntityRenderStateShard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package net.coderbot.iris.layer; | ||
|
||
import net.minecraft.client.renderer.RenderStateShard; | ||
|
||
public class IsEntityRenderStateShard extends RenderStateShard { | ||
public static final IsEntityRenderStateShard INSTANCE = new IsEntityRenderStateShard(); | ||
|
||
private IsEntityRenderStateShard() { | ||
super("iris:is_entity", GbufferPrograms::beginEntities, GbufferPrograms::endEntities); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.