Package net.minecraft.client.gl
Record Class ShaderLoader.Definitions
java.lang.Object
java.lang.Record
net.minecraft.client.gl.ShaderLoader.Definitions
- Record Components:
- programs-
- shaderSources-
- postChains-
- Enclosing class:
- ShaderLoader
@Environment(CLIENT)
public static record ShaderLoader.Definitions(Map<Identifier,ShaderProgramDefinition> programs, Map<ShaderLoader.ShaderSourceKey,String> shaderSources, Map<Identifier,PostEffectPipeline> postChains)
extends Record   
- Mappings:
- Namespace - Name - named - net/minecraft/client/gl/ShaderLoader$Definitions- intermediary - net/minecraft/class_10151$class_10153- official - gmq$c- named - programs- intermediary - comp_3105- official - b- named - shaderSources- intermediary - comp_3106- official - c- named - postChains- intermediary - comp_3107- official - d
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final ShaderLoader.Definitionsprivate final Map<Identifier, PostEffectPipeline> The field for thepostChainsrecord component.private final Map<Identifier, ShaderProgramDefinition> The field for theprogramsrecord component.private final Map<ShaderLoader.ShaderSourceKey, String> The field for theshaderSourcesrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionDefinitions(Map<Identifier, ShaderProgramDefinition> map, Map<ShaderLoader.ShaderSourceKey, String> map2, Map<Identifier, PostEffectPipeline> map3) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thepostChainsrecord component.programs()Returns the value of theprogramsrecord component.Returns the value of theshaderSourcesrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
programsThe field for theprogramsrecord component.
- 
shaderSourcesThe field for theshaderSourcesrecord component.
- 
postChainsThe field for thepostChainsrecord component.
- 
EMPTY- Mappings:
- Namespace - Name - Mixin selector - named - EMPTY- Lnet/minecraft/client/gl/ShaderLoader$Definitions;EMPTY:Lnet/minecraft/client/gl/ShaderLoader$Definitions;- intermediary - field_53948- Lnet/minecraft/class_10151$class_10153;field_53948:Lnet/minecraft/class_10151$class_10153;- official - a- Lgmq$c;a:Lgmq$c;
 
 
- 
- 
Constructor Details- 
Definitionspublic Definitions(Map<Identifier, ShaderProgramDefinition> map, Map<ShaderLoader.ShaderSourceKey, String> map2, Map<Identifier, PostEffectPipeline> map3) 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
programsReturns the value of theprogramsrecord component.- Returns:
- the value of the programsrecord component
 
- 
shaderSourcesReturns the value of theshaderSourcesrecord component.- Returns:
- the value of the shaderSourcesrecord component
 
- 
postChainsReturns the value of thepostChainsrecord component.- Returns:
- the value of the postChainsrecord component
 
 
-