From f080c751f3d1f6a575ab7a239e5be8658d70ef92 Mon Sep 17 00:00:00 2001 From: Jose Fonseca Date: Sat, 20 Apr 2002 12:28:20 +0000 Subject: [PATCH] Fix a discrepancy in the definition of the upload flags. This still doesn't fix the problem that since the last update UT and some example aren't showing textures anymore, but other programs do... --- linux/mach64_drm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/mach64_drm.h b/linux/mach64_drm.h index 4aebaba3..b8aae98e 100644 --- a/linux/mach64_drm.h +++ b/linux/mach64_drm.h @@ -49,8 +49,8 @@ #define MACH64_UPLOAD_DP_WRITE_MASK 0x0020 #define MACH64_UPLOAD_DP_PIX_WIDTH 0x0040 #define MACH64_UPLOAD_SETUP_CNTL 0x0080 -#define MACH64_UPLOAD_TEXTURE 0x0100 -#define MACH64_UPLOAD_MISC 0x0200 +#define MACH64_UPLOAD_MISC 0x0100 +#define MACH64_UPLOAD_TEXTURE 0x0200 #define MACH64_UPLOAD_TEX0IMAGE 0x0400 #define MACH64_UPLOAD_TEX1IMAGE 0x0800 #define MACH64_UPLOAD_CLIPRECTS 0x1000 /* handled client-side */