summaryrefslogtreecommitdiff
path: root/src/pixmap.h
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2000-11-16 23:45:01 +0000
committerMichael Jennings <mej@kainx.org>2000-11-16 23:45:01 +0000
commit2b30d160f4c559e83e5d9bcca5ddd9998ec9b72f (patch)
tree921d2c774b281056dc8cb3fc283ecc73bb977493 /src/pixmap.h
parent1bcfa73217c46e34de776417ded5003625e1705f (diff)
downloadeterm-2b30d160f4c559e83e5d9bcca5ddd9998ec9b72f.tar.gz
Thu Nov 16 16:40:54 PST 2000 Michael Jennings <mej@eterm.org>
VA bought some licenses for Insure++, so I've been using it to audit Eterm. These are just the initial results of the collaboration; there will most likely be more. So far things are looking pretty good. I just wish Insure++ had more helpful messages. I'd really love to be able to track down those reads/writes involving freed pointers that it claims to have found in Imlib2.... I also had to try and make the build work without MMX. I did so; I just hope it still works *with* MMX.... =) SVN revision: 3895
Diffstat (limited to 'src/pixmap.h')
-rw-r--r--src/pixmap.h22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/pixmap.h b/src/pixmap.h
index 3a67466..cd2ecf8 100644
--- a/src/pixmap.h
+++ b/src/pixmap.h
@@ -143,18 +143,20 @@ enum {
#define RESET_ALL_TINT (RESET_IMLIB_RMOD | RESET_IMLIB_GMOD | RESET_IMLIB_BMOD)
#define RESET_ALL_MOD (RESET_IMLIB_MOD | RESET_IMLIB_RMOD | RESET_IMLIB_GMOD | RESET_IMLIB_BMOD)
#define RESET_IMLIB_BORDER (1UL << 4)
-#define RESET_IMLIB_IM (1UL << 5)
-#define RESET_ALL_IMLIB (RESET_ALL_MOD | RESET_IMLIB_BORDER | RESET_IMLIB_IM)
-#define RESET_PMAP_GEOM (1UL << 6)
-#define RESET_PMAP_PIXMAP (1UL << 7)
-#define RESET_PMAP_MASK (1UL << 8)
+#define RESET_IMLIB_BEVEL (1UL << 5)
+#define RESET_IMLIB_PAD (1UL << 6)
+#define RESET_IMLIB_IM (1UL << 7)
+#define RESET_ALL_IMLIB (RESET_ALL_MOD | RESET_IMLIB_BORDER | RESET_IMLIB_BEVEL | RESET_IMLIB_PAD | RESET_IMLIB_IM)
+#define RESET_PMAP_GEOM (1UL << 8)
+#define RESET_PMAP_PIXMAP (1UL << 9)
+#define RESET_PMAP_MASK (1UL << 10)
#define RESET_ALL_PMAP (RESET_PMAP_GEOM | RESET_PMAP_PIXMAP | RESET_PMAP_MASK)
#define RESET_ALL_SIMG (RESET_ALL_IMLIB | RESET_ALL_PMAP)
-#define RESET_NORM (1UL << 9)
-#define RESET_SELECTED (1UL << 10)
-#define RESET_CLICKED (1UL << 11)
-#define RESET_DISABLED (1UL << 12)
-#define RESET_MODE (1UL << 13)
+#define RESET_NORM (1UL << 11)
+#define RESET_SELECTED (1UL << 12)
+#define RESET_CLICKED (1UL << 13)
+#define RESET_DISABLED (1UL << 14)
+#define RESET_MODE (1UL << 15)
#define RESET_ALL (RESET_NORM | RESET_SELECTED | RESET_CLICKED | RESET_DISABLED | RESET_MODE)
/************ Structures ************/