~ubuntu-branches/ubuntu/precise/mplayer2/precise-proposed

« back to all changes in this revision

Viewing changes to libvo/cocoa_common.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:59:30 UTC
  • mfrom: (5.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20120112225930-jsg10o7na7nk73w5
Tags: 2.0-426-gc32b3ed-2
* Upload to unstable
* don't build-depend on libcdparanoia-dev on the hurd

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef MPLAYER_COCOA_COMMON_H
 
2
#define MPLAYER_COCOA_COMMON_H
 
3
 
 
4
#include "video_out.h"
 
5
 
 
6
int vo_cocoa_init(struct vo *vo);
 
7
void vo_cocoa_uninit(struct vo *vo);
 
8
 
 
9
void vo_cocoa_update_xinerama_info(struct vo *vo);
 
10
 
 
11
int vo_cocoa_change_attributes(struct vo *vo);
 
12
int vo_cocoa_create_window(struct vo *vo, uint32_t d_width,
 
13
                           uint32_t d_height, uint32_t flags);
 
14
 
 
15
void vo_cocoa_swap_buffers(void);
 
16
int vo_cocoa_check_events(struct vo *vo);
 
17
void vo_cocoa_fullscreen(struct vo *vo);
 
18
 
 
19
// returns an int to conform to the gl extensions from other platforms
 
20
int vo_cocoa_swap_interval(int enabled);
 
21
 
 
22
#endif /* MPLAYER_COCOA_COMMON_H */