summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-10-12 22:04:01 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-10-12 22:04:01 -0700
commit1af293c2c0a1c058313a77074e62633c429d6b72 (patch)
tree0b9b8c48af78128d887ef100c74afd4afb52733e
parent234a598e41331bb29c10b77ac747e3009be37d27 (diff)
Move black6 & box6 bitmaps from xmh module
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
-rw-r--r--Makefile.am2
-rw-r--r--black64
-rw-r--r--box64
3 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 4c2f01a..bfd436d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -12,7 +12,9 @@ dist_bitmap_DATA = \
1x1 \
2x2 \
black \
+ black6 \
boxes \
+ box6 \
calculator \
cntr_ptr \
cntr_ptrmsk \
diff --git a/black6 b/black6
new file mode 100644
index 0000000..4e5384e
--- /dev/null
+++ b/black6
@@ -0,0 +1,4 @@
+#define black6_width 6
+#define black6_height 6
+static char black6_bits[] = {
+ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
diff --git a/box6 b/box6
new file mode 100644
index 0000000..83ac4a7
--- /dev/null
+++ b/box6
@@ -0,0 +1,4 @@
+#define box6_width 6
+#define box6_height 6
+static char box6_bits[] = {
+ 0x3f, 0x21, 0x21, 0x21, 0x21, 0x3f};