Package org.lwjgl.opengl
Class DisplayMode
- java.lang.Object
-
- org.lwjgl.opengl.DisplayMode
-
public final class DisplayMode extends Object
This class encapsulates the properties for a given display mode. This class is not instantiable, and is aquired from theDisplay. getAvailableDisplayModes()method.- Version:
- $Revision$ $Id$
- Author:
- cix_foo
-
-
Constructor Summary
Constructors Constructor Description DisplayMode(int width, int height)Construct a display mode.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Tests forDisplayModeequalityintgetBitsPerPixel()intgetFrequency()intgetHeight()intgetWidth()inthashCode()Retrieves the hashcode for this objectbooleanisFullscreenCapable()True if this instance can be used for fullscreen modesStringtoString()Retrieves a String representation of thisDisplayMode
-
-
-
Constructor Detail
-
DisplayMode
public DisplayMode(int width, int height)Construct a display mode. DisplayModes constructed through the public constructor can only be used to specify the dimensions of the Display in windowed mode. To get the available DisplayModes for fullscreen modes, use Display.getAvailableDisplayModes().- Parameters:
width- The Display width.height- The Display height.- See Also:
Display
-
-
Method Detail
-
isFullscreenCapable
public boolean isFullscreenCapable()
True if this instance can be used for fullscreen modes
-
getWidth
public int getWidth()
-
getHeight
public int getHeight()
-
getBitsPerPixel
public int getBitsPerPixel()
-
getFrequency
public int getFrequency()
-
equals
public boolean equals(Object obj)
Tests forDisplayModeequality- Overrides:
equalsin classObject- See Also:
Object.equals(Object)
-
hashCode
public int hashCode()
Retrieves the hashcode for this object- Overrides:
hashCodein classObject- See Also:
Object.hashCode()
-
toString
public String toString()
Retrieves a String representation of thisDisplayMode- Overrides:
toStringin classObject- See Also:
Object.toString()
-
-