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

Commit 1e34a708 authored by Leon Scroggins III's avatar Leon Scroggins III
Browse files

Correct a trace in cleanupPostRender

Bug: 190529454
Test: NA

Ic2f4384cd1957c928a0ef656a98eb0041e29622c accidentally used the wrong
method name in cleanupPostRender, leading to misleading traces. Use the
proper name.

Change-Id: Ifa7248b03b13b2e3f41e841f3d9f082da7abcbe9
parent 6cbd3ccf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -292,7 +292,7 @@ void RenderEngineThreaded::cleanupPostRender() {
    {
        std::lock_guard lock(mThreadMutex);
        mFunctionCalls.push([=](renderengine::RenderEngine& instance) {
            ATRACE_NAME("REThreaded::unmapExternalTextureBuffer");
            ATRACE_NAME("REThreaded::cleanupPostRender");
            instance.cleanupPostRender();
        });
    }