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

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

HWC2: Clear transform for SolidColor layers

am: f1098abe

Change-Id: Iff664310ed2275c0ce9b7afaf8041b8a30ea3a6c
parents b4365b8d f1098abe
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -727,11 +727,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;
    }