| 66 | } // namespace |
| 67 | |
| 68 | struct CompareRenderOrder { |
| 69 | bool operator()(const Component* a, const Component* b) const { |
| 70 | return a->render_index() < b->render_index(); |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | Stage::Stage(std::shared_ptr<RenderCanvas> canvas, |
| 75 | std::function<void()> on_render_update) |
nothing calls this directly
no outgoing calls
no test coverage detected