2022-11-01 19:45:23 +01:00
|
|
|
/*
|
2023-06-26 13:10:07 +02:00
|
|
|
* Copyright (C) 2022-2023 The LineageOS Project
|
2022-11-01 19:45:23 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2023-06-26 13:10:07 +02:00
|
|
|
#include <utils/Errors.h>
|
2022-11-01 19:45:23 +01:00
|
|
|
|
2023-06-26 13:10:07 +02:00
|
|
|
using android::status_t;
|
|
|
|
|
|
|
|
extern "C" status_t _ZN7android21SurfaceComposerClient11Transaction5applyEbb(void* thisptr,
|
|
|
|
bool synchronous,
|
|
|
|
bool oneWay);
|
|
|
|
|
|
|
|
extern "C" status_t _ZN7android21SurfaceComposerClient11Transaction5applyEb(void* thisptr,
|
|
|
|
bool synchronous) {
|
|
|
|
return _ZN7android21SurfaceComposerClient11Transaction5applyEbb(thisptr, synchronous, false);
|
2022-11-01 19:45:23 +01:00
|
|
|
}
|