forked from IrisShaders/Iris
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/main/java/net/irisshaders/iris/pipeline/transform/parameter/DHParameters.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,20 @@ | ||
package net.irisshaders.iris.pipeline.transform.parameter; | ||
|
||
import it.unimi.dsi.fastutil.objects.Object2ObjectMap; | ||
import net.irisshaders.iris.gl.texture.TextureType; | ||
import net.irisshaders.iris.helpers.Tri; | ||
import net.irisshaders.iris.pipeline.transform.Patch; | ||
import net.irisshaders.iris.shaderpack.texture.TextureStage; | ||
|
||
public class DHParameters extends Parameters { | ||
public DHParameters(Patch patch, Object2ObjectMap<Tri<String, TextureType, TextureStage>, String> textureMap) { | ||
super(patch, textureMap); | ||
} | ||
|
||
@Override | ||
public TextureStage getTextureStage() { | ||
return TextureStage.GBUFFERS_AND_SHADOW; | ||
} | ||
|
||
|
||
} |