Record Class DepthStencilState

java.lang.Object
java.lang.Record
com.mojang.renderpearl.api.pipeline.DepthStencilState

public record DepthStencilState(CompareOp depthTest, boolean writeDepth, float depthBiasScaleFactor, float depthBiasConstant, @Nullable StencilTest stencilTest) extends Record
  • Field Details

    • depthTest

      private final CompareOp depthTest
      The field for the depthTest record component.
    • writeDepth

      private final boolean writeDepth
      The field for the writeDepth record component.
    • depthBiasScaleFactor

      private final float depthBiasScaleFactor
      The field for the depthBiasScaleFactor record component.
    • depthBiasConstant

      private final float depthBiasConstant
      The field for the depthBiasConstant record component.
    • stencilTest

      private final @Nullable StencilTest stencilTest
      The field for the stencilTest record component.
    • DEFAULT

      public static final DepthStencilState DEFAULT
  • Constructor Details

    • DepthStencilState

      public DepthStencilState(CompareOp depthTest, boolean writeDepth, float depthBiasScaleFactor, float depthBiasConstant)
    • DepthStencilState

      public DepthStencilState(CompareOp depthTest, boolean depthWrite)
    • DepthStencilState

      public DepthStencilState(CompareOp depthTest, boolean writeDepth, float depthBiasScaleFactor, float depthBiasConstant, @Nullable StencilTest stencilTest)
      Creates an instance of a DepthStencilState record class.
      Parameters:
      depthTest - the value for the depthTest record component
      writeDepth - the value for the writeDepth record component
      depthBiasScaleFactor - the value for the depthBiasScaleFactor record component
      depthBiasConstant - the value for the depthBiasConstant record component
      stencilTest - the value for the stencilTest record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • depthTest

      public CompareOp depthTest()
      Returns the value of the depthTest record component.
      Returns:
      the value of the depthTest record component
    • writeDepth

      public boolean writeDepth()
      Returns the value of the writeDepth record component.
      Returns:
      the value of the writeDepth record component
    • depthBiasScaleFactor

      public float depthBiasScaleFactor()
      Returns the value of the depthBiasScaleFactor record component.
      Returns:
      the value of the depthBiasScaleFactor record component
    • depthBiasConstant

      public float depthBiasConstant()
      Returns the value of the depthBiasConstant record component.
      Returns:
      the value of the depthBiasConstant record component
    • stencilTest

      public @Nullable StencilTest stencilTest()
      Returns the value of the stencilTest record component.
      Returns:
      the value of the stencilTest record component