Checks if Lump is a valid .dds lump.
| 89 | |
| 90 | //! Checks if Lump is a valid .dds lump. |
| 91 | ILboolean ilIsValidDdsL(const void *Lump, ILuint Size) |
| 92 | { |
| 93 | iSetInputLump(Lump, Size); |
| 94 | return iIsValidDds(); |
| 95 | } |
| 96 | |
| 97 | |
| 98 | // Internal function used to get the .dds header from the current file. |
no test coverage detected