cosmetics: stream_cdda.c: reformat
[mplayer.git] / libvo / cocoa_common.h
blobe8cd7d9dc42a45249b567138f3a657990b0ae11a
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);
37 void vo_cocoa_swap_buffers(void);
38 int vo_cocoa_check_events(struct vo *vo);
39 void vo_cocoa_fullscreen(struct vo *vo);
40 void vo_cocoa_ontop(struct vo *vo);
42 // returns an int to conform to the gl extensions from other platforms
43 int vo_cocoa_swap_interval(int enabled);
45 void *vo_cocoa_cgl_context(void);
46 void *vo_cocoa_cgl_pixel_format(void);
48 #endif /* MPLAYER_COCOA_COMMON_H */