mirror of
https://github.com/Evolution-X-Devices/device_oneplus_lemonades
synced 2026-01-27 17:13:05 +00:00
24 lines
621 B
C++
24 lines
621 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2025 The LineageOS Project
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "TouchscreenGesture.h"
|
|
|
|
namespace aidl {
|
|
namespace vendor {
|
|
namespace lineage {
|
|
namespace touch {
|
|
|
|
const int TouchscreenGesture::kSupportedGestures = makeBitField(
|
|
kGestureUpVee, kGestureLeftVee, kGestureRightVee, kGestureCircle, kGestureDoubleSwipe,
|
|
kGestureLeftToRight, kGestureRightToLeft, kGestureUpToDown, kGestureDownToUp, kGestureM,
|
|
kGestureW, kGestureSingleTap, kGestureS);
|
|
|
|
} // namespace touch
|
|
} // namespace lineage
|
|
} // namespace vendor
|
|
} // namespace aidl
|