Files
device_oneplus_8750-common/touch/include/TouchscreenGestureConfig.h
Bruno Martins 22dd5c8500 sm8550-common: Switch to Touch AIDL
Change-Id: I92a19fedb9ea482616c2e3d550e30b69d2a3a5c7
2025-06-06 20:57:21 +00:00

25 lines
635 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, kGestureDownVee, kGestureLeftVee, kGestureRightVee,
kGestureCircle, kGestureDoubleSwipe,
kGestureLeftToRight, kGestureRightToLeft, kGestureUpToDown, kGestureDownToUp,
kGestureM, kGestureW, kGestureSingleTap);
} // namespace touch
} // namespace lineage
} // namespace vendor
} // namespace aidl