MCPcopy Create free account
hub / github.com/cinder/Cinder / GetFloat

Method GetFloat

src/imgui/imgui.cpp:2825–2831  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2823}
2824
2825float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const
2826{
2827 ImGuiStoragePair* it = ImLowerBound(const_cast<ImGuiStoragePair*>(Data.Data), const_cast<ImGuiStoragePair*>(Data.Data + Data.Size), key);
2828 if (it == Data.Data + Data.Size || it->key != key)
2829 return default_val;
2830 return it->val_f;
2831}
2832
2833void* ImGuiStorage::GetVoidPtr(ImGuiID key) const
2834{

Callers

nothing calls this directly

Calls 1

ImLowerBoundFunction · 0.70

Tested by

no test coverage detected