Class DisplayInfo

java.lang.Object
com.jme3.system.DisplayInfo

public class DisplayInfo extends Object
This class holds information about the display that was returned by glfwGetMonitors() calls in the context class
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    long
    displayID - display id that was return from Lwjgl3.
    int
    height - height that was return from Lwjgl3.
    name - display name that was return from Lwjgl3.
    boolean
    primary - indicates if the display is the primary monitor.
    int
    rate - refresh rate that was return from Lwjgl3.
    int
    width - width that was return from Lwjgl3.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • displayID

      public long displayID
      displayID - display id that was return from Lwjgl3.
    • width

      public int width
      width - width that was return from Lwjgl3.
    • height

      public int height
      height - height that was return from Lwjgl3.
    • rate

      public int rate
      rate - refresh rate that was return from Lwjgl3.
    • primary

      public boolean primary
      primary - indicates if the display is the primary monitor.
    • name

      public String name
      name - display name that was return from Lwjgl3.
  • Constructor Details

    • DisplayInfo

      public DisplayInfo()