diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-12-28 22:13:47 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-12-28 22:13:47 +0000 |
commit | 5818e1569f121a9a9a0b7dbb6e18c89ba2f1e69c (patch) | |
tree | 15be0f1664d106aeb6875d9ad3340a2204307c16 /src/video_out/xv_common.h | |
parent | fa5be7cfc0d44f3f4f847dd7e595f781b21e3b09 (diff) | |
download | xine-lib-5818e1569f121a9a9a0b7dbb6e18c89ba2f1e69c.tar.gz xine-lib-5818e1569f121a9a9a0b7dbb6e18c89ba2f1e69c.tar.bz2 |
Add support for Xv "blitter" adaptors.
These are known to be present in some nvidia graphics hardware.
Diffstat (limited to 'src/video_out/xv_common.h')
-rw-r--r-- | src/video_out/xv_common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_out/xv_common.h b/src/video_out/xv_common.h index ac16a333a..ff49286f0 100644 --- a/src/video_out/xv_common.h +++ b/src/video_out/xv_common.h @@ -63,12 +63,12 @@ #define VIDEO_DEVICE_XV_DECL_PREFER_TYPES \ typedef enum { \ - xv_prefer_none, xv_prefer_overlay, xv_prefer_textured, \ + xv_prefer_none, xv_prefer_overlay, xv_prefer_textured, xv_prefer_blitter, \ } xv_prefertype; \ static const char *const prefer_labels[] = \ - { "Any", "Overlay", "Textured Video", NULL }; \ + { "Any", "Overlay", "Textured Video", "Blitter", NULL }; \ static const char prefer_substrings[][8] = \ - { "", "Overlay", "Texture" }; + { "", "Overlay", "Texture", "Blitter" }; #define VIDEO_DEVICE_XV_PREFER_TYPE_HELP \ _("video display method preference"), \ _("Selects which video output method is preferred. " \ |