Fixed mode enumeration for Thunderbolt monitors.

This commit is contained in:
Camilla Berglund 2013-10-17 20:38:56 +02:00
parent e576bdc894
commit bc8ff545ca
2 changed files with 2 additions and 3 deletions

View File

@ -230,6 +230,8 @@ See the [GLFW documentation](http://www.glfw.org/docs/latest/).
- [Cocoa] Bugfix: The refresh rate was zero for all modes of certain monitors
- [Cocoa] Bugfix: The `install_name` field of the dynamic library was not set
- [Cocoa] Bugfix: Full screen windows were never reported as having focus
- [Cocoa] Bugfix: A superfluous IO flag test prevented video modes from being
listed for Thunderbolt monitor
- [X11] Added setting of the `WM_CLASS` property to the initial window title
- [X11] Bugfix: Removed joystick axis value negation left over from GLFW 2

View File

@ -76,9 +76,6 @@ static GLboolean modeIsGood(CGDisplayModeRef mode)
if (flags & kDisplayModeInterlacedFlag)
return GL_FALSE;
if (flags & kDisplayModeTelevisionFlag)
return GL_FALSE;
if (flags & kDisplayModeStretchedFlag)
return GL_FALSE;