mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-24 09:29:49 +01:00
Vaxry
ed411f53bd
This moves wlr_cursor to a completely new impl mostly under CPointerManager Also adds beginSimple to OpenGL for simple render passes (e.g. cursor)
9 lines
170 B
C++
9 lines
170 B
C++
#include "IPointer.hpp"
|
|
|
|
uint32_t IPointer::getCapabilities() {
|
|
return HID_INPUT_CAPABILITY_POINTER;
|
|
}
|
|
|
|
eHIDType IPointer::getType() {
|
|
return HID_TYPE_POINTER;
|
|
}
|