Loading...
Searching...
No Matches
PointerLockX11.hpp
1#pragma once
2#include <score/tools/PointerLock.hpp>
3
4class QWindow;
5
6namespace score::x11
7{
9bool begin(
10 QWindow* window, PointerLock::MotionCallback onMotion,
11 PointerLock::ReleaseCallback onRelease) noexcept;
12bool active() noexcept;
13QPointF takeDelta() noexcept;
14void end() noexcept;
15}