Reads from a raw data memory "lump"
| 60 | |
| 61 | //! Reads from a raw data memory "lump" |
| 62 | ILboolean ILAPIENTRY ilLoadDataL(void *Lump, ILuint Size, ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp) |
| 63 | { |
| 64 | iSetInputLump(Lump, Size); |
| 65 | return iLoadDataInternal(Width, Height, Depth, Bpp); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | // Internal function to load a raw data image |
nothing calls this directly
no test coverage detected