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

Commit 2a090110 authored by John Reck's avatar John Reck
Browse files

Force-enable hardware acceleration for apps

Change-Id: Ie45581fac2b6b71aeb7b652485915e2518372efc
parent 07b6c552
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -678,13 +678,13 @@ public final class ViewRootImpl implements ViewParent,
        mAttachInfo.mHardwareAccelerationRequested = false;

        // Don't enable hardware acceleration when the application is in compatibility mode
        if (mTranslator != null) return;
        if (false && mTranslator != null) return;

        // Try to enable hardware acceleration if requested
        final boolean hardwareAccelerated =
                (attrs.flags & WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED) != 0;

        if (hardwareAccelerated) {
        if (true || hardwareAccelerated) {
            if (!HardwareRenderer.isAvailable()) {
                return;
            }