| 107 | std::vector<std::function<void()>> s_pendingActions; |
| 108 | |
| 109 | void Defer(std::function<void()> action) |
| 110 | { |
| 111 | s_pendingActions.push_back(std::move(action)); |
| 112 | } |
| 113 | |
| 114 | // One mutable copy per (slot, role) shown by the tuner. Pulled from the |
| 115 | // active mapping on first Render() and pushed back to font.cpp via |
no outgoing calls
no test coverage detected