summaryrefslogtreecommitdiffstats
path: root/libvo/vo_dga.c
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-19 21:39:10 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-19 21:39:10 +0000
commit6f1c4c0cde75a548d198ee09d1a056c410c9dbd7 (patch)
tree45ccadaa97f5acba0816b0207b9e9b836c46b538 /libvo/vo_dga.c
parentb7a4f17cb7ee327e32fd361230cbce9fc92f32f2 (diff)
downloadmpv-6f1c4c0cde75a548d198ee09d1a056c410c9dbd7.tar.bz2
mpv-6f1c4c0cde75a548d198ee09d1a056c410c9dbd7.tar.xz
driver info now depends on detected DGA version
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@534 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_dga.c')
-rw-r--r--libvo/vo_dga.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/libvo/vo_dga.c b/libvo/vo_dga.c
index 1fcf579aa2..7bbf0c255d 100644
--- a/libvo/vo_dga.c
+++ b/libvo/vo_dga.c
@@ -23,6 +23,9 @@
* - works only on x86 architectures
*
* $Log$
+ * Revision 1.15 2001/04/19 21:39:10 arpi_esp
+ * driver info now depends on detected DGA version
+ *
* Revision 1.14 2001/04/17 22:28:09 acki2
* - now also supports OSD for YV12 (big speed penalty by having to build image
* in offscreen memory and then copying;
@@ -99,7 +102,11 @@ LIBVO_EXTERN( dga )
static vo_info_t vo_info =
{
- "DGA ( Direct Graphic Access, V1.0+XF86VidModeExtension and V2.0)",
+#ifdef HAVE_DGA2
+ "DGA ( Direct Graphic Access V2.0 )",
+#else
+ "DGA ( Direct Graphic Access V1.0+XF86VidModeExtension )",
+#endif
"dga",
"Andreas Ackermann <acki@acki-netz.de>",
""