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

Commit cb585c99 authored by Dan Stoza's avatar Dan Stoza Committed by android-build-merger
Browse files

HWC2: Clear transform for SolidColor layers am: c6c8954b

am: bc028a8e

Change-Id: Ia0677c2fc2bab208cff34841c740949d2a5aedda
parents 84b0adae bc028a8e
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -730,11 +730,22 @@ void Layer::setPerFrameData(const sp<const DisplayDevice>& displayDevice) {
    // SolidColor layers
    if (mActiveBuffer == nullptr) {
        setCompositionType(hwcId, HWC2::Composition::SolidColor);

        // For now, we only support black for DimLayer
        error = hwcLayer->setColor({0, 0, 0, 255});
        if (error != HWC2::Error::None) {
            ALOGE("[%s] Failed to set color: %s (%d)", mName.string(),
                    to_string(error).c_str(), static_cast<int32_t>(error));
        }

        // Clear out the transform, because it doesn't make sense absent a
        // source buffer
        error = hwcLayer->setTransform(HWC2::Transform::None);
        if (error != HWC2::Error::None) {
            ALOGE("[%s] Failed to clear transform: %s (%d)", mName.string(),
                    to_string(error).c_str(), static_cast<int32_t>(error));
        }

        return;
    }