Files
device_oneplus_lemonades/touch/include/TouchscreenGestureConfig.h
Bruno Martins a0fcc17829 lemonades: Switch to Touch AIDL
Change-Id: I92a19fedb9ea482616c2e3d550e30b69d2a3a5c7
2025-06-06 20:59:15 +00:00

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