| 3819 | } |
| 3820 | |
| 3821 | void PocoOriginPop(Poco poco) |
| 3822 | { |
| 3823 | PocoRectangle clip = (PocoRectangle)poco->displayListEnd; |
| 3824 | |
| 3825 | if (0 == poco->stackDepth) { |
| 3826 | poco->flags |= kPocoFlagErrorStackProblem; |
| 3827 | return; |
| 3828 | } |
| 3829 | |
| 3830 | poco->xOrigin = clip->x; |
| 3831 | poco->yOrigin = clip->y; |
| 3832 | |
| 3833 | poco->displayListEnd = (char *)(clip + 1); |
| 3834 | poco->stackDepth--; |
| 3835 | } |
| 3836 | |
| 3837 | #ifndef logDisplayList |
| 3838 | void logDisplayList(Poco poco) |
no outgoing calls
no test coverage detected