summaryrefslogtreecommitdiff
path: root/ByteMap.h
diff options
context:
space:
mode:
authorChristian A. Weber <chris@gna.ch>1993-11-02 18:53:33 +0000
committerChristian A. Weber <chris@gna.ch>1993-11-02 18:53:33 +0000
commit62e509e9c90d728c9f65145947276f79112ab48c (patch)
tree4c508e011be0c0bb386a7c4685c7c71c40611a82 /ByteMap.h
downloadbobi-62e509e9c90d728c9f65145947276f79112ab48c.tar.gz
bobi-62e509e9c90d728c9f65145947276f79112ab48c.tar.bz2
bobi-62e509e9c90d728c9f65145947276f79112ab48c.zip
Initial revision
Diffstat (limited to 'ByteMap.h')
-rw-r--r--ByteMap.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/ByteMap.h b/ByteMap.h
new file mode 100644
index 0000000..5f9cd62
--- /dev/null
+++ b/ByteMap.h
@@ -0,0 +1,13 @@
+/*
+** In der 'ByteMap'-Struktur hat jeder Pixel ein Byte mit dem Farbwert.
+** Änderungen müssen auch in ByteMap.S übernommen werden.
+*/
+
+struct ByteMap
+{
+ WORD Width; /* Breite der ByteMap in Pixel */
+ WORD Height; /* Höhe der ByteMap in Pixel */
+ LONG PlaneSize; /* Grösse für Alloc/FreeMem der Plane */
+ APTR Plane; /* Zeiger auf die aktuelle Datenplane */
+};
+