| 16 | |
| 17 | |
| 18 | ILboolean ILAPIENTRY iluEnlargeImage(ILfloat XDim, ILfloat YDim, ILfloat ZDim) |
| 19 | { |
| 20 | if (XDim <= 0.0f || YDim <= 0.0f || ZDim <= 0.0f) { |
| 21 | ilSetError(ILU_INVALID_PARAM); |
| 22 | return IL_FALSE; |
| 23 | } |
| 24 | |
| 25 | iluCurImage = ilGetCurImage(); |
| 26 | return iluScale((ILuint)(iluCurImage->Width * XDim), (ILuint)(iluCurImage->Height * YDim), |
| 27 | (ILuint)(iluCurImage->Depth * ZDim)); |
| 28 | } |
| 29 | |
| 30 | |
| 31 | ILimage *iluScale1D_(ILimage *Image, ILimage *Scaled, ILuint Width); |
nothing calls this directly
no test coverage detected