~ubuntu-branches/ubuntu/precise/openarena/precise

« back to all changes in this revision

Viewing changes to code/qcommon/qfiles.h

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt
  • Date: 2008-09-05 21:14:51 UTC
  • mfrom: (1.2.1 upstream) (2.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080905211451-243bmbl6l6gdav7l
* Remove non-free code/tools/lcc (Closes: #496346)
  + Remove hunk from patch 10_fix_build_and_binary_on_alpha
  + debian/rules: Add BUILD_GAME_QVM=0 to $(MAKE) call
    (thanks to Peter De Wachter)
* Remove code/libs containing binary libraries for Mac OS X and Win32
* debian/copyright: Explain which parts of upstream's sources were removed
* debian/rules: replace ${source:Upstream-Version} by 0.7.7
  because the variable also contains the `+dfsg1' part
* Add -fsigned-char to compiler options (Closes: #487970)
  (thanks to Peter De Wachter)
* Add myself to Uploaders
* debian/control: Remove article from beginning of short description,
  don't start short description with a capital letter
* debian/openarena.6: Escape minus signs
  + fixes lintian warnings: hyphen-used-as-minus-sign

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
        int             jtrgLength;                     // number of jump table targets
70
70
} vmHeader_t;
71
71
 
72
 
 
73
 
/*
74
 
========================================================================
75
 
 
76
 
PCX files are used for 8 bit images
77
 
 
78
 
========================================================================
79
 
*/
80
 
 
81
 
typedef struct {
82
 
    char        manufacturer;
83
 
    char        version;
84
 
    char        encoding;
85
 
    char        bits_per_pixel;
86
 
    unsigned short      xmin,ymin,xmax,ymax;
87
 
    unsigned short      hres,vres;
88
 
    unsigned char       palette[48];
89
 
    char        reserved;
90
 
    char        color_planes;
91
 
    unsigned short      bytes_per_line;
92
 
    unsigned short      palette_type;
93
 
    char        filler[58];
94
 
    unsigned char       data;                   // unbounded
95
 
} pcx_t;
96
 
 
97
 
 
98
 
/*
99
 
========================================================================
100
 
 
101
 
TGA files are used for 24/32 bit images
102
 
 
103
 
========================================================================
104
 
*/
105
 
 
106
 
typedef struct _TargaHeader {
107
 
        unsigned char   id_length, colormap_type, image_type;
108
 
        unsigned short  colormap_index, colormap_length;
109
 
        unsigned char   colormap_size;
110
 
        unsigned short  x_origin, y_origin, width, height;
111
 
        unsigned char   pixel_size, attributes;
112
 
} TargaHeader;
113
 
 
114
 
 
115
 
 
116
72
/*
117
73
========================================================================
118
74