mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 09:35:09 +02:00
026ea6e197
(for very fast repeats, but the caller must support it) Also just increase the repeat rates in the ge debugger
18 lines
452 B
C++
18 lines
452 B
C++
// Just some string_view and related wrappers.
|
|
|
|
#include <string_view>
|
|
#include "ext/imgui/imgui.h"
|
|
|
|
namespace ImGui {
|
|
|
|
inline void TextUnformatted(std::string_view str) {
|
|
TextUnformatted(str.data(), str.data() + str.size());
|
|
}
|
|
|
|
bool RepeatButton(const char *title);
|
|
int RepeatButtonShift(const char* label, float repeatRate = 0.05f);
|
|
|
|
bool CollapsingHeaderWithCount(const char *title, int count, ImGuiTreeNodeFlags flags = 0);
|
|
|
|
} // namespace ImGui
|