Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e901bce2 authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

Fix build am: aaef0983 am: 5a556bc7

am: 025d6efd

Change-Id: I523da99a804e27c6ab4a35aecfb3c3a820ebd45d
parents 84a794e0 025d6efd
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -933,9 +933,14 @@ status_t SurfaceFlinger::injectVSync(nsecs_t when) {

// ----------------------------------------------------------------------------

sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection() {
sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
        ISurfaceComposer::VsyncSource vsyncSource) {
    if (vsyncSource == eVsyncSourceSurfaceFlinger) {
        return mSFEventThread->createEventConnection();
    } else {
        return mEventThread->createEventConnection();
    }
}

// ----------------------------------------------------------------------------