| 2401 | } |
| 2402 | |
| 2403 | float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const |
| 2404 | { |
| 2405 | ImGuiStoragePair* it = LowerBound(const_cast<ImVector<ImGuiStoragePair>&>(Data), key); |
| 2406 | if (it == Data.end() || it->key != key) |
| 2407 | return default_val; |
| 2408 | return it->val_f; |
| 2409 | } |
| 2410 | |
| 2411 | void* ImGuiStorage::GetVoidPtr(ImGuiID key) const |
| 2412 | { |
nothing calls this directly
no test coverage detected