| 2339 | } |
| 2340 | |
| 2341 | float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const |
| 2342 | { |
| 2343 | ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key); |
| 2344 | if (it == Data.end() || it->key != key) |
| 2345 | return default_val; |
| 2346 | return it->val_f; |
| 2347 | } |
| 2348 | |
| 2349 | void* ImGuiStorage::GetVoidPtr(ImGuiID key) const |
| 2350 | { |
nothing calls this directly
no test coverage detected