Record Class WorldVfxStats

java.lang.Object
java.lang.Record
com.render.api.world.WorldVfxStats

public record WorldVfxStats(long frameId, int authoredNodes, int loweredOperations, int degradedNodes, int compiledPrograms, long cacheHits, long cacheMisses, int drawSubmissions, int sceneColorCopies, int sceneDepthCopies, long transientTargetBytes, long meshCacheBytes, long compilationNanos, long submissionNanos) extends Record
Per-frame and cache diagnostics for the independent world VFX subsystem.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final WorldVfxStats
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    WorldVfxStats(long frameId, int authoredNodes, int loweredOperations, int degradedNodes, int compiledPrograms, long cacheHits, long cacheMisses, int drawSubmissions, int sceneColorCopies, int sceneDepthCopies, long transientTargetBytes, long meshCacheBytes, long compilationNanos, long submissionNanos)
    Creates an instance of a WorldVfxStats record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the authoredNodes record component.
    long
    Returns the value of the cacheHits record component.
    long
    Returns the value of the cacheMisses record component.
    long
    Returns the value of the compilationNanos record component.
    int
    Returns the value of the compiledPrograms record component.
    int
    Returns the value of the degradedNodes record component.
    int
    Returns the value of the drawSubmissions record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    long
    Returns the value of the frameId record component.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the loweredOperations record component.
    long
    Returns the value of the meshCacheBytes record component.
    int
    Returns the value of the sceneColorCopies record component.
    int
    Returns the value of the sceneDepthCopies record component.
    long
    Returns the value of the submissionNanos record component.
    final String
    Returns a string representation of this record class.
    long
    Returns the value of the transientTargetBytes record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • WorldVfxStats

      public WorldVfxStats(long frameId, int authoredNodes, int loweredOperations, int degradedNodes, int compiledPrograms, long cacheHits, long cacheMisses, int drawSubmissions, int sceneColorCopies, int sceneDepthCopies, long transientTargetBytes, long meshCacheBytes, long compilationNanos, long submissionNanos)
      Creates an instance of a WorldVfxStats record class.
      Parameters:
      frameId - the value for the frameId record component
      authoredNodes - the value for the authoredNodes record component
      loweredOperations - the value for the loweredOperations record component
      degradedNodes - the value for the degradedNodes record component
      compiledPrograms - the value for the compiledPrograms record component
      cacheHits - the value for the cacheHits record component
      cacheMisses - the value for the cacheMisses record component
      drawSubmissions - the value for the drawSubmissions record component
      sceneColorCopies - the value for the sceneColorCopies record component
      sceneDepthCopies - the value for the sceneDepthCopies record component
      transientTargetBytes - the value for the transientTargetBytes record component
      meshCacheBytes - the value for the meshCacheBytes record component
      compilationNanos - the value for the compilationNanos record component
      submissionNanos - the value for the submissionNanos 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. All components in this record class 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.
    • frameId

      public long frameId()
      Returns the value of the frameId record component.
      Returns:
      the value of the frameId record component
    • authoredNodes

      public int authoredNodes()
      Returns the value of the authoredNodes record component.
      Returns:
      the value of the authoredNodes record component
    • loweredOperations

      public int loweredOperations()
      Returns the value of the loweredOperations record component.
      Returns:
      the value of the loweredOperations record component
    • degradedNodes

      public int degradedNodes()
      Returns the value of the degradedNodes record component.
      Returns:
      the value of the degradedNodes record component
    • compiledPrograms

      public int compiledPrograms()
      Returns the value of the compiledPrograms record component.
      Returns:
      the value of the compiledPrograms record component
    • cacheHits

      public long cacheHits()
      Returns the value of the cacheHits record component.
      Returns:
      the value of the cacheHits record component
    • cacheMisses

      public long cacheMisses()
      Returns the value of the cacheMisses record component.
      Returns:
      the value of the cacheMisses record component
    • drawSubmissions

      public int drawSubmissions()
      Returns the value of the drawSubmissions record component.
      Returns:
      the value of the drawSubmissions record component
    • sceneColorCopies

      public int sceneColorCopies()
      Returns the value of the sceneColorCopies record component.
      Returns:
      the value of the sceneColorCopies record component
    • sceneDepthCopies

      public int sceneDepthCopies()
      Returns the value of the sceneDepthCopies record component.
      Returns:
      the value of the sceneDepthCopies record component
    • transientTargetBytes

      public long transientTargetBytes()
      Returns the value of the transientTargetBytes record component.
      Returns:
      the value of the transientTargetBytes record component
    • meshCacheBytes

      public long meshCacheBytes()
      Returns the value of the meshCacheBytes record component.
      Returns:
      the value of the meshCacheBytes record component
    • compilationNanos

      public long compilationNanos()
      Returns the value of the compilationNanos record component.
      Returns:
      the value of the compilationNanos record component
    • submissionNanos

      public long submissionNanos()
      Returns the value of the submissionNanos record component.
      Returns:
      the value of the submissionNanos record component