summaryrefslogtreecommitdiff
path: root/src/heretic/doomdata.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/heretic/doomdata.h')
-rw-r--r--src/heretic/doomdata.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/heretic/doomdata.h b/src/heretic/doomdata.h
index ec93ac62..8b56c0ed 100644
--- a/src/heretic/doomdata.h
+++ b/src/heretic/doomdata.h
@@ -168,29 +168,6 @@ typedef struct
===============================================================================
*/
-// posts are runs of non masked source pixels
-typedef struct
-{
- byte topdelta; // -1 is the last post in a column
- byte length;
-// length data bytes follows
-} post_t;
-
-// column_t is a list of 0 or more post_t, (byte)-1 terminated
-typedef post_t column_t;
-
-// a patch holds one or more columns
-// patches are used for sprites and all masked pictures
-typedef struct
-{
- short width; // bounding box size
- short height;
- short leftoffset; // pixels to the left of origin
- short topoffset; // pixels below the origin
- int columnofs[8]; // only [width] used
- // the [0] is &columnofs[width]
-} patch_t;
-
// a pic is an unmasked block of pixels
typedef struct
{