docs: document --quvi-format
[mplayer.git] / libvo / cocoa_common.h
blob943a5fb8ba9a5772c0e24c39d1e3d59e36be9ef2
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);
26 void *vo_cocoa_glgetaddr(const char *s);
28 int vo_cocoa_init(struct vo *vo);
29 void vo_cocoa_uninit(struct vo *vo);
31 void vo_cocoa_update_xinerama_info(struct vo *vo);
33 int vo_cocoa_change_attributes(struct vo *vo);
34 int vo_cocoa_create_window(struct vo *vo, uint32_t d_width,
35 uint32_t d_height, uint32_t flags,
36 int gl3profile);
38 void vo_cocoa_swap_buffers(void);
39 int vo_cocoa_check_events(struct vo *vo);
40 void vo_cocoa_fullscreen(struct vo *vo);
41 void vo_cocoa_ontop(struct vo *vo);
43 // returns an int to conform to the gl extensions from other platforms
44 int vo_cocoa_swap_interval(int enabled);
46 void *vo_cocoa_cgl_context(void);
47 void *vo_cocoa_cgl_pixel_format(void);
49 int vo_cocoa_cgl_color_size(void);
51 #endif /* MPLAYER_COCOA_COMMON_H */