| 375 | |
| 376 | |
| 377 | ILboolean ilImage::TexImage(ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp, ILenum Format, ILenum Type, void *Data) |
| 378 | { |
| 379 | if (this->Id) { |
| 380 | this->Bind(); |
| 381 | return ilTexImage(Width, Height, Depth, Bpp, Format, Type, Data); |
| 382 | } |
| 383 | return IL_FALSE; |
| 384 | } |
| 385 | |
| 386 | |
| 387 |