Requires: I367b2c395aeb8cb7cb9e3cc38eca98477befe007 Change-Id: I881db78186fa9c7b350e79ac4ef90f53ee4cfbcf
23 lines
444 B
C++
23 lines
444 B
C++
/*
|
|
* Copyright (C) 2022 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <compositionengine/UdfpsExtension.h>
|
|
#include <display/drm/sde_drm.h>
|
|
|
|
uint32_t getUdfpsDimZOrder(uint32_t z) {
|
|
return z;
|
|
}
|
|
|
|
uint32_t getUdfpsZOrder(uint32_t z, bool touched) {
|
|
if (touched) {
|
|
z |= FOD_PRESSED_LAYER_ZORDER;
|
|
}
|
|
return z;
|
|
}
|
|
|
|
uint64_t getUdfpsUsageBits(uint64_t usageBits, bool) {
|
|
return usageBits;
|
|
}
|