| 850 | } |
| 851 | |
| 852 | void PiuViewInvalidateRegion(PiuView* self, PiuRegion* region) |
| 853 | { |
| 854 | #ifdef piuGPU |
| 855 | (*self)->dirty = 1; |
| 856 | #else |
| 857 | PiuViewCombineRegion(self, region, piuRegionUnionOp); |
| 858 | #endif |
| 859 | if (!((*self)->updating)) { |
| 860 | PiuViewIdleCheck(self, 1); |
| 861 | (*self)->updating = 1; |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | void PiuViewMark(xsMachine* the, void* it, xsMarkRoot markRoot) |
| 866 | { |
no test coverage detected