Searched refs:edit_state (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_widgets.cpp3043 ImGuiInputTextState* edit_state = &g.InputTextState; local in function:ImGuiInputTextCallbackData::InsertChars
3044 IM_ASSERT(edit_state->ID != 0 && g.ActiveId == edit_state->ID);
3045 IM_ASSERT(Buf == edit_state->TempBuffer.Data);
3047 edit_state->TempBuffer.reserve(new_buf_size + 1);
3048 Buf = edit_state->TempBuffer.Data;
3049 BufSize = edit_state->BufCapacityA = new_buf_size;
3204 // NB: we are only allowed to access 'edit_state' if we are the active widget.
3205 ImGuiInputTextState& edit_state = g.InputTextState; local in function:ImGui::InputTextEx
3212 const bool user_scrolled = is_multiline && g.ActiveId == 0 && edit_state
[all...]
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_widgets.cpp3043 ImGuiInputTextState* edit_state = &g.InputTextState; local in function:ImGuiInputTextCallbackData::InsertChars
3044 IM_ASSERT(edit_state->ID != 0 && g.ActiveId == edit_state->ID);
3045 IM_ASSERT(Buf == edit_state->TempBuffer.Data);
3047 edit_state->TempBuffer.reserve(new_buf_size + 1);
3048 Buf = edit_state->TempBuffer.Data;
3049 BufSize = edit_state->BufCapacityA = new_buf_size;
3204 // NB: we are only allowed to access 'edit_state' if we are the active widget.
3205 ImGuiInputTextState& edit_state = g.InputTextState; local in function:ImGui::InputTextEx
3212 const bool user_scrolled = is_multiline && g.ActiveId == 0 && edit_state
[all...]

Completed in 18 milliseconds