comparison libvo/vo_dga.c @ 533:ca59ef4ce54d

driver info now depends on detected DGA version
author arpi_esp
date Thu, 19 Apr 2001 21:39:10 +0000
parents b8f1ed2b411b
children 77e0094f0cce
comparison
equal deleted inserted replaced
532:a8ab5e0f5560 533:ca59ef4ce54d
21 * BGR_32_24_888 21 * BGR_32_24_888
22 * 22 *
23 * - works only on x86 architectures 23 * - works only on x86 architectures
24 * 24 *
25 * $Log$ 25 * $Log$
26 * Revision 1.15 2001/04/19 21:39:10 arpi_esp
27 * driver info now depends on detected DGA version
28 *
26 * Revision 1.14 2001/04/17 22:28:09 acki2 29 * Revision 1.14 2001/04/17 22:28:09 acki2
27 * - now also supports OSD for YV12 (big speed penalty by having to build image 30 * - now also supports OSD for YV12 (big speed penalty by having to build image
28 * in offscreen memory and then copying; 31 * in offscreen memory and then copying;
29 * - OSD still works just with doublebuffering enabled :-( 32 * - OSD still works just with doublebuffering enabled :-(
30 * 33 *
97 100
98 #include "x11_common.h" 101 #include "x11_common.h"
99 102
100 static vo_info_t vo_info = 103 static vo_info_t vo_info =
101 { 104 {
102 "DGA ( Direct Graphic Access, V1.0+XF86VidModeExtension and V2.0)", 105 #ifdef HAVE_DGA2
106 "DGA ( Direct Graphic Access V2.0 )",
107 #else
108 "DGA ( Direct Graphic Access V1.0+XF86VidModeExtension )",
109 #endif
103 "dga", 110 "dga",
104 "Andreas Ackermann <acki@acki-netz.de>", 111 "Andreas Ackermann <acki@acki-netz.de>",
105 "" 112 ""
106 }; 113 };
107 114