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

Commit a5761b16 authored by Arne Coucheron's avatar Arne Coucheron
Browse files

sf: Fix blending mode for legacy BSP

 * After 0c5f3af3, glitches when blending is observed on
   A family devices. Modify ifdef to not include QCOM_BSP_LEGACY.

Change-Id: Ibb53df5709abbb0e7132065aec23a14f7accf4b3
parent 839f0dd9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -467,7 +467,7 @@ void Layer::setGeometry(

    // this gives us only the "orientation" component of the transform
    const State& s(getDrawingState());
#ifdef QTI_BSP
#if defined(QCOM_BSP) && !defined(QCOM_BSP_LEGACY)
    if (!isOpaque(s)) {
#else
    if (!isOpaque(s) || s.alpha != 0xFF) {