OSX, input: implement wakeup in response to Cocoa events
[mplayer.git] / libvo / cocoa_common.h
blob89b0ea663b3142a00c0ced230d64e1a274b722f6
1 /*
2 * Cocoa OpenGL Backend
4 * This file is part of mplayer2.
6 * mplayer2 is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * mplayer2 is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with mplayer2. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef MPLAYER_COCOA_COMMON_H
21 #define MPLAYER_COCOA_COMMON_H
23 #include "video_out.h"
25 bool vo_cocoa_gui_running(void);
27 int vo_cocoa_init(struct vo *vo);
28 void vo_cocoa_uninit(struct vo *vo);
30 void vo_cocoa_update_xinerama_info(struct vo *vo);
32 int vo_cocoa_change_attributes(struct vo *vo);
33 int vo_cocoa_create_window(struct vo *vo, uint32_t d_width,
34 uint32_t d_height, uint32_t flags);
36 void vo_cocoa_swap_buffers(void);
37 int vo_cocoa_check_events(struct vo *vo);
38 void vo_cocoa_fullscreen(struct vo *vo);
39 void vo_cocoa_ontop(struct vo *vo);
41 // returns an int to conform to the gl extensions from other platforms
42 int vo_cocoa_swap_interval(int enabled);
44 void *vo_cocoa_cgl_context(void);
45 void *vo_cocoa_cgl_pixel_format(void);
47 #endif /* MPLAYER_COCOA_COMMON_H */