Package com.badlogic.jglfw

Examples of com.badlogic.jglfw.GlfwVideoMode


      modes.add(new JglfwDisplayMode(mode.width, mode.height, 0, mode.redBits + mode.greenBits + mode.blueBits));
    return modes.toArray(DisplayMode.class);
  }

  public DisplayMode getDesktopDisplayMode () {
    GlfwVideoMode mode = glfwGetVideoMode(getWindowMonitor());
    return new JglfwDisplayMode(mode.width, mode.height, 0, mode.redBits + mode.greenBits + mode.blueBits);
  }
View Full Code Here

TOP

Related Classes of com.badlogic.jglfw.GlfwVideoMode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.