Skip to content
Snippets Groups Projects
Commit 8dab9f6a authored by Camilla Löwy's avatar Camilla Löwy
Browse files

Wayland: Clarify assertion

Related to #1143.
parent 682f1cf2
No related branches found
No related tags found
No related merge requests found
......@@ -137,6 +137,9 @@ static void pointerHandleAxis(void* data,
if (!window)
return;
assert(axis == WL_POINTER_AXIS_HORIZONTAL_SCROLL ||
axis == WL_POINTER_AXIS_VERTICAL_SCROLL);
/* Wayland scroll events are in pointer motion coordinate space (think
* two finger scroll). The factor 10 is commonly used to convert to
* "scroll step means 1.0. */
......@@ -152,9 +155,6 @@ static void pointerHandleAxis(void* data,
x = 0.0;
y = wl_fixed_to_double(value) * scrollFactor;
break;
default:
assert(GLFW_FALSE);
break;
}
_glfwInputScroll(window, x, y);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment