Examples of GlfwVideoMode


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
Copyright © 2018 www.massapi.com. 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.