Mercurial > mplayer.hg
view libvo/x11_common.h @ 1261:5bb83ed0db33
- Ask 'gcc' for the name of the assembler binary used by the gcc compiler; use
that binary as the default assembler binary tested for the availability of
MMX/MMXEXT/3DNOW/... instructions
- On solaris, there are a few libraries missing, if you compile MPlayer
without SDL (with SDL, we pick up these libraries from "sdl-config --libs")
Typical problem is a missing nanosleep() from the -lrt library.
author | jkeil |
---|---|
date | Tue, 03 Jul 2001 14:22:23 +0000 |
parents | 4c7b219e126c |
children | 5e4214a7540e |
line wrap: on
line source
#ifdef X11_FULLSCREEN extern int vo_depthonscreen; extern int vo_screenwidth; extern int vo_screenheight; extern int vo_dwidth; extern int vo_dheight; extern char *mDisplayName; extern Display *mDisplay; extern Window *mRootWin; extern int mScreen; extern int mLocalDisplay; int vo_init( void ); int vo_hidecursor ( Display* , Window ); void vo_x11_decoration( Display * vo_Display,Window w,int d ); void vo_x11_classhint( Display * display,Window window,char *name ); int vo_x11_check_events(Display *mydisplay); #endif #ifdef HAVE_GUI extern Window vo_window; extern Display * vo_display; extern GC vo_gc; extern int vo_xeventhandling; extern int vo_expose; extern int vo_resize; extern void vo_setwindow( Window w,GC g ); #endif void saver_off( Display * ); void saver_on( Display * );