stream_vstream: fix vstream_error format string
[mplayer.git] / libvo / cocoa_common.h
blob16f9a2f1f9486ae643aac8697c63fe4f30cc48bd
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 int vo_cocoa_init(struct vo *vo);
26 void vo_cocoa_uninit(struct vo *vo);
28 void vo_cocoa_update_xinerama_info(struct vo *vo);
30 int vo_cocoa_change_attributes(struct vo *vo);
31 int vo_cocoa_create_window(struct vo *vo, uint32_t d_width,
32 uint32_t d_height, uint32_t flags);
34 void vo_cocoa_swap_buffers(void);
35 int vo_cocoa_check_events(struct vo *vo);
36 void vo_cocoa_fullscreen(struct vo *vo);
37 void vo_cocoa_ontop(struct vo *vo);
39 // returns an int to conform to the gl extensions from other platforms
40 int vo_cocoa_swap_interval(int enabled);
42 #endif /* MPLAYER_COCOA_COMMON_H */