| 1170 | template <vkb::BindingType bindingType> |
| 1171 | inline void Gui<bindingType>::resize(const uint32_t width, const uint32_t height) const |
| 1172 | { |
| 1173 | auto &io = ImGui::GetIO(); |
| 1174 | io.DisplaySize.x = static_cast<float>(width); |
| 1175 | io.DisplaySize.y = static_cast<float>(height); |
| 1176 | } |
| 1177 | |
| 1178 | template <vkb::BindingType bindingType> |
| 1179 | inline void Gui<bindingType>::show_app_info(const std::string &app_name) |
| 1180 | { |