Home
last modified time | relevance | path

Searched refs:MouseWheelH (Results 1 – 17 of 17) sorted by relevance

/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_sdl.cpp89 if (event->wheel.x > 0) io.MouseWheelH += 1; in ImGui_ImplSDL2_ProcessEvent()
90 if (event->wheel.x < 0) io.MouseWheelH -= 1; in ImGui_ImplSDL2_ProcessEvent()
Dimgui_impl_win32.cpp227 io.MouseWheelH += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA; in ImGui_ImplWin32_WndProcHandler()
Dimgui_impl_glfw.cpp94 io.MouseWheelH += (float)xoffset; in ImGui_ImplGlfw_ScrollCallback()
Dimgui_impl_allegro5.cpp308 io.MouseWheelH += ev->mouse.dw; in ImGui_ImplAllegro5_ProcessEvent()
Dimgui_impl_osx.mm178 io.MouseWheelH += wheel_dx * 0.1f;
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_sdl.cpp122 if (event->wheel.x > 0) io.MouseWheelH += 1; in ImGui_ImplSDL2_ProcessEvent()
123 if (event->wheel.x < 0) io.MouseWheelH -= 1; in ImGui_ImplSDL2_ProcessEvent()
Dimgui_impl_android.cpp103 …io.MouseWheelH = AMotionEvent_getAxisValue(input_event, AMOTION_EVENT_AXIS_HSCROLL, event_pointer_… in ImGui_ImplAndroid_HandleInputEvent()
Dimgui_impl_allegro5.cpp368 io.MouseWheelH -= ev->mouse.dw; in ImGui_ImplAllegro5_ProcessEvent()
Dimgui_impl_glfw.cpp135 io.MouseWheelH += (float)xoffset; in ImGui_ImplGlfw_ScrollCallback()
Dimgui_impl_win32.cpp418 io.MouseWheelH += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA; in ImGui_ImplWin32_WndProcHandler()
Dimgui_impl_osx.mm326 io.MouseWheelH += (float)wheel_dx * 0.1f;
/third_party/mesa3d/src/imgui/
Dimgui.h1353 …float MouseWheelH; // Mouse wheel Horizontal. Most users don't have a mou… member
Dimgui.cpp3258 if (g.IO.MouseWheel == 0.0f && g.IO.MouseWheelH == 0.0f) in UpdateMouseWheel()
3290 if (g.IO.MouseWheelH != 0.0f && scroll_allowed && !g.IO.KeyCtrl) in UpdateMouseWheel()
3294 SetWindowScrollX(scroll_window, scroll_window->Scroll.x - g.IO.MouseWheelH * scroll_amount); in UpdateMouseWheel()
3846 g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f; in EndFrame()
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui.h1346 …float MouseWheelH; // Mouse wheel Horizontal. Most users don't have a mou… member
Dimgui.cpp3193 if (g.IO.MouseWheel == 0.0f && g.IO.MouseWheelH == 0.0f) in UpdateMouseWheel()
3225 if (g.IO.MouseWheelH != 0.0f && scroll_allowed && !g.IO.KeyCtrl) in UpdateMouseWheel()
3229 SetWindowScrollX(scroll_window, scroll_window->Scroll.x - g.IO.MouseWheelH * scroll_amount); in UpdateMouseWheel()
3780 g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f; in EndFrame()
/third_party/skia/third_party/externals/imgui/
Dimgui.h1886 …float MouseWheelH; // Mouse wheel Horizontal. Most users don't have a mou… member
Dimgui.cpp3759 if (g.IO.MouseWheel == 0.0f && g.IO.MouseWheelH == 0.0f) in UpdateMouseWheel()
3796 const float wheel_x = swap_axis ? g.IO.MouseWheel : g.IO.MouseWheelH; in UpdateMouseWheel()
4490 g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f; in EndFrame()