aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-02-14 11:13:18 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-02-14 11:13:18 +0000
commit2acf691603cb0fb7c8b580befbc7be49b9300e53 (patch)
tree1c1ec858e4702df6225f5a454187abe61cf7fbe1 /code/qcommon
parent9ce8f89cbcac7539ee4c7313ab1828d95100dce1 (diff)
downloadioquake3-aero-2acf691603cb0fb7c8b580befbc7be49b9300e53.tar.gz
ioquake3-aero-2acf691603cb0fb7c8b580befbc7be49b9300e53.zip
move all image decoders into separate files
git-svn-id: svn://svn.icculus.org/quake3/trunk@1257 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r--code/qcommon/qfiles.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/code/qcommon/qfiles.h b/code/qcommon/qfiles.h
index 7b7ffe2..7f1ef96 100644
--- a/code/qcommon/qfiles.h
+++ b/code/qcommon/qfiles.h
@@ -69,50 +69,6 @@ typedef struct {
int jtrgLength; // number of jump table targets
} vmHeader_t;
-
-/*
-========================================================================
-
-PCX files are used for 8 bit images
-
-========================================================================
-*/
-
-typedef struct {
- char manufacturer;
- char version;
- char encoding;
- char bits_per_pixel;
- unsigned short xmin,ymin,xmax,ymax;
- unsigned short hres,vres;
- unsigned char palette[48];
- char reserved;
- char color_planes;
- unsigned short bytes_per_line;
- unsigned short palette_type;
- char filler[58];
- unsigned char data; // unbounded
-} pcx_t;
-
-
-/*
-========================================================================
-
-TGA files are used for 24/32 bit images
-
-========================================================================
-*/
-
-typedef struct _TargaHeader {
- unsigned char id_length, colormap_type, image_type;
- unsigned short colormap_index, colormap_length;
- unsigned char colormap_size;
- unsigned short x_origin, y_origin, width, height;
- unsigned char pixel_size, attributes;
-} TargaHeader;
-
-
-
/*
========================================================================