comparison libvo/video_out.c @ 8729:561aa9c850f7

Rearrange the vo and ao driver order to prefer the native drivers and give a better out of the box experience on Cygwin.
author diego
date Fri, 03 Jan 2003 05:10:44 +0000
parents 5b39e79af5fe
children edfe34c5405d
comparison
equal deleted inserted replaced
8728:7cfadbe294bf 8729:561aa9c850f7
100 extern vo_functions_t video_out_xvidix; 100 extern vo_functions_t video_out_xvidix;
101 #endif 101 #endif
102 102
103 vo_functions_t* video_out_drivers[] = 103 vo_functions_t* video_out_drivers[] =
104 { 104 {
105 #ifdef HAVE_DIRECTX
106 &video_out_directx,
107 #endif
105 #ifdef HAVE_XMGA 108 #ifdef HAVE_XMGA
106 &video_out_xmga, 109 &video_out_xmga,
107 #endif 110 #endif
108 #ifdef HAVE_MGA 111 #ifdef HAVE_MGA
109 &video_out_mga, 112 &video_out_mga,
131 &video_out_dga, 134 &video_out_dga,
132 // &video_out_fsdga, 135 // &video_out_fsdga,
133 #endif 136 #endif
134 #ifdef HAVE_SDL 137 #ifdef HAVE_SDL
135 &video_out_sdl, 138 &video_out_sdl,
136 #endif
137 #ifdef HAVE_DIRECTX
138 &video_out_directx,
139 #endif 139 #endif
140 #ifdef HAVE_GGI 140 #ifdef HAVE_GGI
141 &video_out_ggi, 141 &video_out_ggi,
142 #endif 142 #endif
143 #ifdef HAVE_FBDEV 143 #ifdef HAVE_FBDEV