Package net.minecraft.client.gl
Record Class PostEffectPipeline.Pass
java.lang.Object
java.lang.Record
net.minecraft.client.gl.PostEffectPipeline.Pass
- Record Components:
program
-inputs
-outputTarget
-uniforms
-
- Enclosing class:
PostEffectPipeline
@Environment(CLIENT)
public static record PostEffectPipeline.Pass(Identifier program, List<PostEffectPipeline.Input> inputs, Identifier outputTarget, List<PostEffectPipeline.Uniform> uniforms)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/gl/PostEffectPipeline$Pass
intermediary net/minecraft/class_9962$class_9967
official glp$e
named program
intermediary comp_3102
official b
named inputs
intermediary comp_3021
official c
named outputTarget
intermediary comp_3022
official d
named uniforms
intermediary comp_3023
official e
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<PostEffectPipeline.Pass> private final List
<PostEffectPipeline.Input> The field for theinputs
record component.private static final com.mojang.serialization.Codec
<List<PostEffectPipeline.Input>> private final Identifier
The field for theoutputTarget
record component.private final Identifier
The field for theprogram
record component.private final List
<PostEffectPipeline.Uniform> The field for theuniforms
record component. -
Constructor Summary
ConstructorDescriptionPass
(Identifier identifier, List<PostEffectPipeline.Input> list, Identifier identifier2, List<PostEffectPipeline.Uniform> list2) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.inputs()
Returns the value of theinputs
record component.Returns the value of theoutputTarget
record component.program()
Returns the value of theprogram
record component.final String
toString()
Returns a string representation of this record class.uniforms()
Returns the value of theuniforms
record component.
-
Field Details
-
program
The field for theprogram
record component. -
inputs
The field for theinputs
record component. -
outputTarget
The field for theoutputTarget
record component. -
uniforms
The field for theuniforms
record component. -
INPUTS_CODEC
- Mappings:
Namespace Name Mixin selector named INPUTS_CODEC
Lnet/minecraft/client/gl/PostEffectPipeline$Pass;INPUTS_CODEC:Lcom/mojang/serialization/Codec;
intermediary field_53117
Lnet/minecraft/class_9962$class_9967;field_53117:Lcom/mojang/serialization/Codec;
official f
Lglp$e;f:Lcom/mojang/serialization/Codec;
-
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/client/gl/PostEffectPipeline$Pass;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_53116
Lnet/minecraft/class_9962$class_9967;field_53116:Lcom/mojang/serialization/Codec;
official a
Lglp$e;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Pass
public Pass(Identifier identifier, List<PostEffectPipeline.Input> list, Identifier identifier2, List<PostEffectPipeline.Uniform> list2)
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
program
Returns the value of theprogram
record component.- Returns:
- the value of the
program
record component
-
inputs
Returns the value of theinputs
record component.- Returns:
- the value of the
inputs
record component
-
outputTarget
Returns the value of theoutputTarget
record component.- Returns:
- the value of the
outputTarget
record component
-
uniforms
Returns the value of theuniforms
record component.- Returns:
- the value of the
uniforms
record component
-