summaryrefslogtreecommitdiffstats
path: root/video/out/cocoa/window.m
Commit message (Collapse)AuthorAgeFilesLines
* vo_opengl, cocoa: allow to autoselect a color profileStefano Pigozzi2014-03-311-1/+7
| | | | | | | | | | | | | This commit adds support for automatic selection of color profiles based on the display where mpv is initialized, and automatically changes the color profile when display is changed or the profile itself is changed from System Preferences. @UliZappe was responsible with the testing and implementation of a lot of this commit, including the original implementation of `cocoa_get_icc_profile_path` (See #594). Fixes #594
* Fix OSX build; remove all remaining mpvcore references11rcombs2013-12-171-1/+1
|
* cocoa: use window-scale to support video scaling functionalityStefano Pigozzi2013-11-221-6/+2
| | | | | In the cocoa backend you can use cmd+0/1/2 to scale the window. This commit makes it use the new window-scale functionality.
* cocoa: apply the more invasive constraining only with cmd+1/2/3Stefano Pigozzi2013-10-281-2/+10
| | | | | Regression from bc49957 Fixes #321
* cocoa: constraint the window position a little moreStefano Pigozzi2013-10-251-1/+6
| | | | | The intention of this is to not make the window go outside the screen when changing dimensions from 2x to .5x.
* cocoa_common: split the code, refactoring and cleanupsStefano Pigozzi2013-09-281-0/+161
Split the code to several files. The GUI elements now each have they own files and private state. The original code was a mess to respect the retarded mplayer convention of having everything in a single file. This commit also seems to fix the long running bug of artifacts showing randomly when going fullscreen using nVidia GPUs.