camera shim: dont call function

this fixes camera for some reason
This commit is contained in:
ivanmeler 2023-05-03 17:39:23 +00:00
parent a65872c48e
commit 9356a65243
2 changed files with 0 additions and 5 deletions

View file

@ -20,7 +20,6 @@ LOCAL_SRC_FILES := \
camera_cameraclient.cpp \
DisplayEventReceiver.cpp
LOCAL_SHARED_LIBRARIES := libgui
LOCAL_MODULE := libshims_cameraclient
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_CLASS := SHARED_LIBRARIES

View file

@ -1,10 +1,6 @@
#include <stdint.h>
#include <gui/ISurfaceComposer.h>
namespace android {
extern "C" void _ZN7android20DisplayEventReceiverC1ENS_16ISurfaceComposer11VsyncSourceENS1_13ConfigChangedE(void* vsyncSource, ISurfaceComposer::ConfigChanged configChanged);
extern "C" void _ZN7android20DisplayEventReceiverC1ENS_16ISurfaceComposer11VsyncSourceE(void *vsyncSource) {
_ZN7android20DisplayEventReceiverC1ENS_16ISurfaceComposer11VsyncSourceENS1_13ConfigChangedE(vsyncSource, ISurfaceComposer::eConfigChangedSuppress);
}
}