vo_gl3: call glFlush() after frame drawing is complete
[mplayer.git] / libvo / video_out_internal.h
blob263a94e695dba72a9667bca85b71e96393747fe0
1 /*
2 * Copyright (C) Aaron Holtzman - Aug 1999
4 * This file is part of MPlayer.
6 * MPlayer 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 * MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef MPLAYER_VIDEO_OUT_INTERNAL_H
22 #define MPLAYER_VIDEO_OUT_INTERNAL_H
24 #include <stdint.h>
26 /* All video drivers will want this */
27 #include "libmpcodecs/vfcap.h"
28 #include "libmpcodecs/mp_image.h"
29 #include "geometry.h"
30 #include "old_vo_wrapper.h"
31 #include "old_vo_defines.h"
33 static int control(uint32_t request, void *data);
34 static int config(uint32_t width, uint32_t height, uint32_t d_width,
35 uint32_t d_height, uint32_t fullscreen, char *title,
36 uint32_t format);
37 static int draw_frame(uint8_t *src[]);
38 static int draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y);
39 static void draw_osd(void);
40 static void flip_page(void);
41 static void check_events(void);
42 static void uninit(void);
43 static int preinit(const char *);
45 #define LIBVO_EXTERN(x) struct vo_driver video_out_##x =\
47 .is_new = 0,\
48 .info = &info,\
49 .preinit = old_vo_preinit,\
50 .config = old_vo_config,\
51 .control = old_vo_control,\
52 .draw_slice = old_vo_draw_slice,\
53 .draw_osd = old_vo_draw_osd,\
54 .flip_page = old_vo_flip_page,\
55 .check_events = old_vo_check_events,\
56 .uninit = old_vo_uninit,\
57 .old_functions = &(struct vo_old_functions){\
58 preinit,\
59 config,\
60 control,\
61 draw_frame,\
62 draw_slice,\
63 draw_osd,\
64 flip_page,\
65 check_events,\
66 uninit,\
70 #include "osd.h"
72 #endif /* MPLAYER_VIDEO_OUT_INTERNAL_H */