Record Class DepthStencilState

java.lang.Object
java.lang.Record
com.mojang.blaze3d.pipeline.DepthStencilState

public record DepthStencilState(CompareOp depthTest, boolean writeDepth, float depthBiasScaleFactor, float depthBiasConstant) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final DepthStencilState
     
    private final float
    The field for the depthBiasConstant record component.
    private final float
    The field for the depthBiasScaleFactor record component.
    private final CompareOp
    The field for the depthTest record component.
    private final boolean
    The field for the writeDepth record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    DepthStencilState(CompareOp depthTest, boolean depthWrite)
     
    DepthStencilState(CompareOp depthTest, boolean writeDepth, float depthBiasScaleFactor, float depthBiasConstant)
    Creates an instance of a DepthStencilState record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    Returns the value of the depthBiasConstant record component.
    float
    Returns the value of the depthBiasScaleFactor record component.
    Returns the value of the depthTest record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    final String
    Returns a string representation of this record class.
    boolean
    Returns the value of the writeDepth record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • 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.
    • DEFAULT

      public static final DepthStencilState DEFAULT
  • Constructor Details

    • DepthStencilState

      public DepthStencilState(CompareOp depthTest, boolean depthWrite)
    • DepthStencilState

      public DepthStencilState(CompareOp depthTest, boolean writeDepth, float depthBiasScaleFactor, float depthBiasConstant)
      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
  • 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