b1f26c0899
* This can be used by any Xiaomi device that has a touch display that supports multiple sample rates and Xiaomi touch. * Most newer Xiaomi phones with high screen refresh rates fit this category: * e.g. Mi 10/Pro/Ultra/T/T Pro, Xiaomi SM8350 platform phones & Xiaomi SM6375 phones Change-Id: Iaf956420157bbc978690fac9053d507ccaea847a
31 lines
675 B
C++
31 lines
675 B
C++
/*
|
|
* Copyright (C) 2022 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vendor/lineage/touch/1.0/IHighTouchPollingRate.h>
|
|
|
|
namespace vendor {
|
|
namespace lineage {
|
|
namespace touch {
|
|
namespace V1_0 {
|
|
namespace implementation {
|
|
|
|
using ::android::hardware::Return;
|
|
|
|
class HighTouchPollingRate : public IHighTouchPollingRate {
|
|
public:
|
|
// Methods from ::vendor::lineage::touch::V1_0::IHighTouchPollingRate follow.
|
|
Return<bool> isEnabled() override;
|
|
Return<bool> setEnabled(bool enabled) override;
|
|
};
|
|
|
|
} // namespace implementation
|
|
} // namespace V1_0
|
|
} // namespace touch
|
|
} // namespace lineage
|
|
} // namespace vendor
|