| 3778 | } |
| 3779 | |
| 3780 | void PocoClipPop(Poco poco) |
| 3781 | { |
| 3782 | PocoRectangle clip = (PocoRectangle)poco->displayListEnd; |
| 3783 | |
| 3784 | if (0 == poco->stackDepth) { |
| 3785 | poco->flags |= kPocoFlagErrorStackProblem; |
| 3786 | return; |
| 3787 | } |
| 3788 | |
| 3789 | poco->x = clip->x; |
| 3790 | poco->y = clip->y; |
| 3791 | poco->w = clip->w; |
| 3792 | poco->h = clip->h; |
| 3793 | poco->xMax = clip->x + clip->w; |
| 3794 | poco->yMax = clip->y + clip->h; |
| 3795 | |
| 3796 | poco->displayListEnd = (char *)(clip + 1); |
| 3797 | poco->stackDepth--; |
| 3798 | } |
| 3799 | |
| 3800 | void PocoOriginPush(Poco poco, PocoCoordinate x, PocoCoordinate y) |
| 3801 | { |
no outgoing calls
no test coverage detected