mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 15:46:00 +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
160 B
C++
9 lines
160 B
C++
#include "ITouch.hpp"
|
|
|
|
uint32_t ITouch::getCapabilities() {
|
|
return HID_INPUT_CAPABILITY_TOUCH;
|
|
}
|
|
|
|
eHIDType ITouch::getType() {
|
|
return HID_TYPE_TOUCH;
|
|
}
|