mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
SrtReceiverSource for broadcasted stream
Implemented dedicated source, with UI for creation and saving appropriate settings. Also updated info and imgui visitors accordingly
This commit is contained in:
@@ -1708,9 +1708,9 @@ static int InputTextCallback(ImGuiInputTextCallbackData* data)
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool ImGuiToolkit::InputText(const char* label, std::string* str)
|
||||
bool ImGuiToolkit::InputText(const char* label, std::string* str, ImGuiInputTextFlags flag)
|
||||
{
|
||||
ImGuiInputTextFlags flags = ImGuiInputTextFlags_CallbackResize | ImGuiInputTextFlags_CharsNoBlank;
|
||||
ImGuiInputTextFlags flags = ImGuiInputTextFlags_CallbackResize | flag;
|
||||
|
||||
return ImGui::InputText(label, (char*)str->c_str(), str->capacity() + 1, flags, InputTextCallback, str);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user