Skip to content
Snippets Groups Projects
Commit eac6a025 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

bugfix

parent c958cd5b
No related branches found
No related tags found
No related merge requests found
...@@ -113,16 +113,16 @@ Todo ...@@ -113,16 +113,16 @@ Todo
## ImGui Customization ## ImGui Customization
The ImGui library has been customized in the following way: The ImGui library has been customized in the following way:
- *`imgui_widgets.cpp`*: - **`imgui_widgets.cpp`**:
- `ImGui::PlotEx`: Removed tooltip - `ImGui::PlotEx`: Removed tooltip
- *`imgui_impl_sdl.h`*: - **`imgui_impl_sdl.h`**:
- `ImGui_ImplSDL2_Touch_ProcessEvent`: Added declaration - `ImGui_ImplSDL2_Touch_ProcessEvent`: Added declaration
- `ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons`: Added declaration - `ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons`: Added declaration
- *`imgui_impl_sdl.cpp`*: - **`imgui_impl_sdl.cpp`**:
- `ImGui_ImplSDL2_Touch_ProcessEvent`: Added implementation - `ImGui_ImplSDL2_Touch_ProcessEvent`: Added implementation
- `ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons`: Added implementation - `ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons`: Added implementation
- `ImGui_ImplSDL2_NewFrame`: Changed to call `ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons` instead of `ImGui_ImplSDL2_UpdateMousePosAndButtons` - `ImGui_ImplSDL2_NewFrame`: Changed to call `ImGui_ImplSDL2_Touch_UpdateMousePosAndButtons` instead of `ImGui_ImplSDL2_UpdateMousePosAndButtons`
- *Notes*: - **Notes**:
- On touch devices, one should generally call `ImGui_ImplSDL2_Touch_ProcessEvent` rather than `ImGui_ImplSDL2_ProcessEvent` - On touch devices, one should generally call `ImGui_ImplSDL2_Touch_ProcessEvent` rather than `ImGui_ImplSDL2_ProcessEvent`
- To run `ImGui` demos, one must revert the change to `ImGui_ImplSDL2_NewFrame` (see comments). - To run `ImGui` demos, one must revert the change to `ImGui_ImplSDL2_NewFrame` (see comments).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment