Initializes the image stack's first entry (default image) -- ONLY CALL ONCE!
| 673 | |
| 674 | // Initializes the image stack's first entry (default image) -- ONLY CALL ONCE! |
| 675 | void iSetImage0() |
| 676 | { |
| 677 | if (ImageStack == NULL) |
| 678 | if (!iEnlargeStack()) |
| 679 | return; |
| 680 | |
| 681 | LastUsed = 1; |
| 682 | CurName = 0; |
| 683 | ParentImage = IL_TRUE; |
| 684 | if (!ImageStack[0]) |
| 685 | ImageStack[0] = ilNewImage(1, 1, 1, 1, 1); |
| 686 | iCurImage = ImageStack[0]; |
| 687 | ilDefaultImage(); |
| 688 | |
| 689 | return; |
| 690 | } |
| 691 | |
| 692 | |
| 693 | ILAPI void ILAPIENTRY iBindImageTemp() |
no test coverage detected