| 171 | } |
| 172 | |
| 173 | struct DDSHeader { |
| 174 | uint size; |
| 175 | uint flags; |
| 176 | uint height; |
| 177 | uint width; |
| 178 | uint pitch; |
| 179 | uint depth; |
| 180 | uint mipmapcount; |
| 181 | uint reserved[11]; |
| 182 | DDSPixelFormat pf; |
| 183 | DDSCaps caps; |
| 184 | uint notused; |
| 185 | }; |
| 186 | |
| 187 | static QDataStream & operator>> ( QDataStream & s, DDSHeader & header ) |
| 188 | { |
nothing calls this directly
no outgoing calls
no test coverage detected