MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Samples / slider_int

Method slider_int

framework/drawer.cpp:96–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96bool Drawer::slider_int(const char *caption, int32_t *value, int32_t min, int32_t max)
97{
98 bool res = ImGui::SliderInt(caption, value, min, max);
99 if (res)
100 {
101 dirty = true;
102 };
103 return res;
104}
105
106bool Drawer::combo_box(const char *caption, int32_t *itemindex, std::vector<std::string> items)
107{

Callers 7

on_update_ui_overlayMethod · 0.80
on_update_ui_overlayMethod · 0.80
on_update_ui_overlayMethod · 0.80
on_update_ui_overlayMethod · 0.80
on_update_ui_overlayMethod · 0.80
on_update_ui_overlayMethod · 0.80
on_update_ui_overlayMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected