summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-21 17:34:40 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-21 17:34:40 +0000
commit69fee563a1e3c0845e9ea856f4ec9eb9d7ad7e64 (patch)
treeca012e9a4f1499f397e81751f7057c31eb945377 /drivers
parent975cab72a843783384f2f0b746dea79bf16a676f (diff)
downloadmpv-69fee563a1e3c0845e9ea856f4ec9eb9d7ad7e64.tar.bz2
mpv-69fee563a1e3c0845e9ea856f4ec9eb9d7ad7e64.tar.xz
updated - by zsteva@ptt.yu
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2347 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'drivers')
-rw-r--r--drivers/3dfx.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/3dfx.h b/drivers/3dfx.h
index 482b7db7bb..cc23cfdaae 100644
--- a/drivers/3dfx.h
+++ b/drivers/3dfx.h
@@ -29,7 +29,10 @@
#define VOODOO_YUV_PLANE_OFFSET ((unsigned long int)0x0C00000)
#define VOODOO_BLT_FORMAT_YUYV (8<<16)
+#define VOODOO_BLT_FORMAT_UYVY (9<<16)
#define VOODOO_BLT_FORMAT_16 (3<<16)
+#define VOODOO_BLT_FORMAT_24 (4<<16)
+#define VOODOO_BLT_FORMAT_32 (5<<16)
#define VOODOO_YUV_STRIDE (1024>>2)
@@ -248,6 +251,7 @@ typedef struct voodoo_yuv_fb_t voodoo_yuv_fb;
#define ROP_COPY 0xcc // src
#define ROP_INVERT 0x55 // NOT dst
#define ROP_XOR 0x66 // src XOR dst
+#define ROP_OR (0xee) /* src | dst */
#define AUTOINC_DSTX BIT(10)
#define AUTOINC_DSTY BIT(11)