Record Class MaskPostStage
java.lang.Object
java.lang.Record
foundry.veil.api.client.render.post.stage.MaskPostStage
- Record Components:
red- Whether red values will be written to the screengreen- Whether green values will be written to the screenblue- Whether blue values will be written to the screenalpha- Whether alpha values will be written to the screendepth- Whether depth values will be written to the screen
- All Implemented Interfaces:
PostPipeline,MutableUniformAccess,UniformAccess,AutoCloseable,org.lwjgl.system.NativeResource
public record MaskPostStage(boolean red, boolean green, boolean blue, boolean alpha, boolean depth)
extends Record
implements PostPipeline
Sets the color and depth masks.
-
Nested Class Summary
Nested classes/interfaces inherited from interface foundry.veil.api.client.render.post.PostPipeline
PostPipeline.Context -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMaskPostStage(boolean red, boolean green, boolean blue, boolean alpha, boolean depth) Creates an instance of aMaskPostStagerecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanalpha()Returns the value of thealpharecord component.voidapply(PostPipeline.Context context) Applies this post effect.booleanblue()Returns the value of thebluerecord component.booleandepth()Returns the value of thedepthrecord component.final booleanIndicates whether some other object is "equal to" this one.getType()booleangreen()Returns the value of thegreenrecord component.final inthashCode()Returns a hash code value for this object.booleanred()Returns the value of theredrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface foundry.veil.api.client.render.shader.program.MutableUniformAccess
applyRenderSystem, setVector, setVector, setVector, setVector, setVectorI, setVectorI, setVectorIMethods inherited from interface org.lwjgl.system.NativeResource
closeMethods inherited from interface foundry.veil.api.client.render.post.PostPipeline
free, getFloat, getFloats, getInt, getInts, getMatrix, getMatrix, getMatrix, getMatrix, getMatrix, getStorageBlock, getUniform, getUniformBlock, getVector, getVector, getVector, getVector, getVector, getVector, hasStorageBlock, hasUniform, hasUniformBlock, setFloat, setFloats, setInt, setInts, setMatrix, setMatrix, setMatrix, setMatrix, setMatrix, setStorageBlock, setUniformBlock, setVector, setVector, setVector, setVectorI, setVectorI, setVectorI, setVectors, setVectors, setVectors, setVectors, setVectors, setVectors
-
Field Details
-
CODEC
-
-
Constructor Details
-
MaskPostStage
public MaskPostStage(boolean red, boolean green, boolean blue, boolean alpha, boolean depth) Creates an instance of aMaskPostStagerecord class.
-
-
Method Details
-
apply
Description copied from interface:PostPipelineApplies this post effect.PostProcessingManager.runPipeline(PostPipeline)should be called to run this pipeline.- Specified by:
applyin interfacePostPipeline- Parameters:
context- The context to use when running this pipeline.
-
getType
- Specified by:
getTypein interfacePostPipeline- Returns:
- The type of post effect this is
-
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 with '=='. -
red
public boolean red()Returns the value of theredrecord component.- Returns:
- the value of the
redrecord component
-
green
public boolean green()Returns the value of thegreenrecord component.- Returns:
- the value of the
greenrecord component
-
blue
public boolean blue()Returns the value of thebluerecord component.- Returns:
- the value of the
bluerecord component
-
alpha
public boolean alpha()Returns the value of thealpharecord component.- Returns:
- the value of the
alpharecord component
-
depth
public boolean depth()Returns the value of thedepthrecord component.- Returns:
- the value of the
depthrecord component
-