| 89 | |
| 90 | |
| 91 | ILboolean ILAPIENTRY ilutD3D8TexFromFileInMemory(IDirect3DDevice8 *Device, ILvoid *Lump, ILuint Size, IDirect3DTexture8 **Texture) |
| 92 | { |
| 93 | iBindImageTemp(); |
| 94 | if (!ilLoadL(IL_TYPE_UNKNOWN, Lump, Size)) |
| 95 | return IL_FALSE; |
| 96 | |
| 97 | *Texture = ilutD3D8Texture(Device); |
| 98 | |
| 99 | return IL_TRUE; |
| 100 | } |
| 101 | |
| 102 | |
| 103 | ILboolean ILAPIENTRY ilutD3D8VolTexFromFileInMemory(IDirect3DDevice8 *Device, ILvoid *Lump, ILuint Size, IDirect3DVolumeTexture8 **Texture) |
nothing calls this directly
no test coverage detected