| 61 | }; |
| 62 | |
| 63 | void PiuContentBind(void* it, PiuApplication* application, PiuView* view) |
| 64 | { |
| 65 | PiuContent* self = it; |
| 66 | #ifdef piuGPU |
| 67 | PiuSkin* skin = (*self)->skin; |
| 68 | if (skin) |
| 69 | PiuSkinBind(skin, application, view); |
| 70 | #endif |
| 71 | (*self)->application = application; |
| 72 | if ((*self)->flags & piuIdling) |
| 73 | PiuApplicationStartContent((*self)->application, self); |
| 74 | (*self)->flags |= piuDisplaying; |
| 75 | } |
| 76 | |
| 77 | void PiuContentCascade(void* it) |
| 78 | { |
no test coverage detected