| /* |
| * Copyright (C) 2007 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| // TODO(b/129481165): remove the #pragma below and fix conversion issues |
| #pragma clang diagnostic push |
| #pragma clang diagnostic ignored "-Wconversion" |
| #pragma clang diagnostic ignored "-Wextra" |
| |
| //#define LOG_NDEBUG 0 |
| #define ATRACE_TAG ATRACE_TAG_GRAPHICS |
| |
| #include "SurfaceFlinger.h" |
| |
| #include <android-base/parseint.h> |
| #include <android-base/properties.h> |
| #include <android-base/stringprintf.h> |
| #include <android-base/strings.h> |
| #include <android/configuration.h> |
| #include <android/gui/IDisplayEventConnection.h> |
| #include <android/hardware/configstore/1.0/ISurfaceFlingerConfigs.h> |
| #include <android/hardware/configstore/1.1/ISurfaceFlingerConfigs.h> |
| #include <android/hardware/configstore/1.1/types.h> |
| #include <android/hardware/power/Boost.h> |
| #include <android/native_window.h> |
| #include <android/os/IInputFlinger.h> |
| #include <binder/IPCThreadState.h> |
| #include <binder/IServiceManager.h> |
| #include <binder/PermissionCache.h> |
| #include <compositionengine/CompositionEngine.h> |
| #include <compositionengine/CompositionRefreshArgs.h> |
| #include <compositionengine/Display.h> |
| #include <compositionengine/DisplayColorProfile.h> |
| #include <compositionengine/DisplayCreationArgs.h> |
| #include <compositionengine/LayerFECompositionState.h> |
| #include <compositionengine/OutputLayer.h> |
| #include <compositionengine/RenderSurface.h> |
| #include <compositionengine/impl/OutputCompositionState.h> |
| #include <compositionengine/impl/OutputLayerCompositionState.h> |
| #include <configstore/Utils.h> |
| #include <cutils/compiler.h> |
| #include <cutils/properties.h> |
| #include <ftl/fake_guard.h> |
| #include <ftl/future.h> |
| #include <ftl/small_map.h> |
| #include <gui/BufferQueue.h> |
| #include <gui/DebugEGLImageTracker.h> |
| #include <gui/IProducerListener.h> |
| #include <gui/LayerDebugInfo.h> |
| #include <gui/LayerMetadata.h> |
| #include <gui/LayerState.h> |
| #include <gui/Surface.h> |
| #include <gui/TraceUtils.h> |
| #include <hidl/ServiceManagement.h> |
| #include <layerproto/LayerProtoParser.h> |
| #include <log/log.h> |
| #include <private/android_filesystem_config.h> |
| #include <private/gui/SyncFeatures.h> |
| #include <processgroup/processgroup.h> |
| #include <renderengine/RenderEngine.h> |
| #include <renderengine/impl/ExternalTexture.h> |
| #include <sys/types.h> |
| #include <ui/ColorSpace.h> |
| #include <ui/DataspaceUtils.h> |
| #include <ui/DebugUtils.h> |
| #include <ui/DisplayId.h> |
| #include <ui/DisplayMode.h> |
| #include <ui/DisplayStatInfo.h> |
| #include <ui/DisplayState.h> |
| #include <ui/DynamicDisplayInfo.h> |
| #include <ui/GraphicBufferAllocator.h> |
| #include <ui/PixelFormat.h> |
| #include <ui/StaticDisplayInfo.h> |
| #include <utils/StopWatch.h> |
| #include <utils/String16.h> |
| #include <utils/String8.h> |
| #include <utils/Timers.h> |
| #include <utils/misc.h> |
| |
| #include <algorithm> |
| #include <cerrno> |
| #include <cinttypes> |
| #include <cmath> |
| #include <cstdint> |
| #include <functional> |
| #include <memory> |
| #include <mutex> |
| #include <optional> |
| #include <type_traits> |
| #include <unordered_map> |
| |
| #include <ui/DisplayIdentification.h> |
| #include "BackgroundExecutor.h" |
| #include "BufferLayer.h" |
| #include "BufferQueueLayer.h" |
| #include "BufferStateLayer.h" |
| #include "Client.h" |
| #include "Colorizer.h" |
| #include "ContainerLayer.h" |
| #include "DisplayDevice.h" |
| #include "DisplayHardware/ComposerHal.h" |
| #include "DisplayHardware/FramebufferSurface.h" |
| #include "DisplayHardware/HWComposer.h" |
| #include "DisplayHardware/Hal.h" |
| #include "DisplayHardware/PowerAdvisor.h" |
| #include "DisplayHardware/VirtualDisplaySurface.h" |
| #include "DisplayRenderArea.h" |
| #include "EffectLayer.h" |
| #include "Effects/Daltonizer.h" |
| #include "FlagManager.h" |
| #include "FpsReporter.h" |
| #include "FrameTimeline/FrameTimeline.h" |
| #include "FrameTracer/FrameTracer.h" |
| #include "HdrLayerInfoReporter.h" |
| #include "Layer.h" |
| #include "LayerProtoHelper.h" |
| #include "LayerRenderArea.h" |
| #include "LayerVector.h" |
| #include "MonitoredProducer.h" |
| #include "MutexUtils.h" |
| #include "NativeWindowSurface.h" |
| #include "RefreshRateOverlay.h" |
| #include "RegionSamplingThread.h" |
| #include "Scheduler/DispSyncSource.h" |
| #include "Scheduler/EventThread.h" |
| #include "Scheduler/LayerHistory.h" |
| #include "Scheduler/Scheduler.h" |
| #include "Scheduler/VsyncConfiguration.h" |
| #include "Scheduler/VsyncController.h" |
| #include "StartPropertySetThread.h" |
| #include "SurfaceFlingerProperties.h" |
| #include "SurfaceInterceptor.h" |
| #include "TimeStats/TimeStats.h" |
| #include "TunnelModeEnabledReporter.h" |
| #include "WindowInfosListenerInvoker.h" |
| |
| #include <aidl/android/hardware/graphics/common/DisplayDecorationSupport.h> |
| #include <aidl/android/hardware/graphics/composer3/DisplayCapability.h> |
| #include <aidl/android/hardware/graphics/composer3/RenderIntent.h> |
| |
| #undef NO_THREAD_SAFETY_ANALYSIS |
| #define NO_THREAD_SAFETY_ANALYSIS \ |
| _Pragma("GCC error \"Prefer <ftl/fake_guard.h> or MutexUtils.h helpers.\"") |
| |
| namespace android { |
| |
| using namespace std::string_literals; |
| |
| using namespace hardware::configstore; |
| using namespace hardware::configstore::V1_0; |
| using namespace sysprop; |
| |
| using aidl::android::hardware::graphics::common::DisplayDecorationSupport; |
| using aidl::android::hardware::graphics::composer3::Capability; |
| using aidl::android::hardware::graphics::composer3::DisplayCapability; |
| using CompositionStrategyPredictionState = android::compositionengine::impl:: |
| OutputCompositionState::CompositionStrategyPredictionState; |
| |
| using base::StringAppendF; |
| using gui::DisplayInfo; |
| using gui::IDisplayEventConnection; |
| using gui::IWindowInfosListener; |
| using gui::WindowInfo; |
| using ui::ColorMode; |
| using ui::Dataspace; |
| using ui::DisplayPrimaries; |
| using ui::RenderIntent; |
| |
| using KernelIdleTimerController = scheduler::RefreshRateConfigs::KernelIdleTimerController; |
| |
| namespace hal = android::hardware::graphics::composer::hal; |
| |
| namespace { |
| |
| #pragma clang diagnostic push |
| #pragma clang diagnostic error "-Wswitch-enum" |
| |
| bool isWideColorMode(const ColorMode colorMode) { |
| switch (colorMode) { |
| case ColorMode::DISPLAY_P3: |
| case ColorMode::ADOBE_RGB: |
| case ColorMode::DCI_P3: |
| case ColorMode::BT2020: |
| case ColorMode::DISPLAY_BT2020: |
| case ColorMode::BT2100_PQ: |
| case ColorMode::BT2100_HLG: |
| return true; |
| case ColorMode::NATIVE: |
| case ColorMode::STANDARD_BT601_625: |
| case ColorMode::STANDARD_BT601_625_UNADJUSTED: |
| case ColorMode::STANDARD_BT601_525: |
| case ColorMode::STANDARD_BT601_525_UNADJUSTED: |
| case ColorMode::STANDARD_BT709: |
| case ColorMode::SRGB: |
| return false; |
| } |
| return false; |
| } |
| |
| #pragma clang diagnostic pop |
| |
| // TODO(b/141333600): Consolidate with DisplayMode::Builder::getDefaultDensity. |
| constexpr float FALLBACK_DENSITY = ACONFIGURATION_DENSITY_TV; |
| |
| float getDensityFromProperty(const char* property, bool required) { |
| char value[PROPERTY_VALUE_MAX]; |
| const float density = property_get(property, value, nullptr) > 0 ? std::atof(value) : 0.f; |
| if (!density && required) { |
| ALOGE("%s must be defined as a build property", property); |
| return FALLBACK_DENSITY; |
| } |
| return density; |
| } |
| |
| // Currently we only support V0_SRGB and DISPLAY_P3 as composition preference. |
| bool validateCompositionDataspace(Dataspace dataspace) { |
| return dataspace == Dataspace::V0_SRGB || dataspace == Dataspace::DISPLAY_P3; |
| } |
| |
| std::chrono::milliseconds getIdleTimerTimeout(DisplayId displayId) { |
| const auto displayIdleTimerMsKey = [displayId] { |
| std::stringstream ss; |
| ss << "debug.sf.set_idle_timer_ms_" << displayId.value; |
| return ss.str(); |
| }(); |
| |
| const int32_t displayIdleTimerMs = base::GetIntProperty(displayIdleTimerMsKey, 0); |
| if (displayIdleTimerMs > 0) { |
| return std::chrono::milliseconds(displayIdleTimerMs); |
| } |
| |
| const int32_t setIdleTimerMs = base::GetIntProperty("debug.sf.set_idle_timer_ms", 0); |
| const int32_t millis = setIdleTimerMs ? setIdleTimerMs : sysprop::set_idle_timer_ms(0); |
| return std::chrono::milliseconds(millis); |
| } |
| |
| bool getKernelIdleTimerSyspropConfig(DisplayId displayId) { |
| const auto displaySupportKernelIdleTimerKey = [displayId] { |
| std::stringstream ss; |
| ss << "debug.sf.support_kernel_idle_timer_" << displayId.value; |
| return ss.str(); |
| }(); |
| |
| const auto displaySupportKernelIdleTimer = |
| base::GetBoolProperty(displaySupportKernelIdleTimerKey, false); |
| return displaySupportKernelIdleTimer || sysprop::support_kernel_idle_timer(false); |
| } |
| |
| } // namespace anonymous |
| |
| // --------------------------------------------------------------------------- |
| |
| const String16 sHardwareTest("android.permission.HARDWARE_TEST"); |
| const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER"); |
| const String16 sRotateSurfaceFlinger("android.permission.ROTATE_SURFACE_FLINGER"); |
| const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER"); |
| const String16 sControlDisplayBrightness("android.permission.CONTROL_DISPLAY_BRIGHTNESS"); |
| const String16 sDump("android.permission.DUMP"); |
| const String16 sCaptureBlackoutContent("android.permission.CAPTURE_BLACKOUT_CONTENT"); |
| const String16 sInternalSystemWindow("android.permission.INTERNAL_SYSTEM_WINDOW"); |
| |
| const char* KERNEL_IDLE_TIMER_PROP = "graphics.display.kernel_idle_timer.enabled"; |
| |
| // --------------------------------------------------------------------------- |
| int64_t SurfaceFlinger::dispSyncPresentTimeOffset; |
| bool SurfaceFlinger::useHwcForRgbToYuv; |
| bool SurfaceFlinger::hasSyncFramework; |
| int64_t SurfaceFlinger::maxFrameBufferAcquiredBuffers; |
| uint32_t SurfaceFlinger::maxGraphicsWidth; |
| uint32_t SurfaceFlinger::maxGraphicsHeight; |
| bool SurfaceFlinger::hasWideColorDisplay; |
| bool SurfaceFlinger::useContextPriority; |
| Dataspace SurfaceFlinger::defaultCompositionDataspace = Dataspace::V0_SRGB; |
| ui::PixelFormat SurfaceFlinger::defaultCompositionPixelFormat = ui::PixelFormat::RGBA_8888; |
| Dataspace SurfaceFlinger::wideColorGamutCompositionDataspace = Dataspace::V0_SRGB; |
| ui::PixelFormat SurfaceFlinger::wideColorGamutCompositionPixelFormat = ui::PixelFormat::RGBA_8888; |
| LatchUnsignaledConfig SurfaceFlinger::enableLatchUnsignaledConfig; |
| |
| std::string decodeDisplayColorSetting(DisplayColorSetting displayColorSetting) { |
| switch(displayColorSetting) { |
| case DisplayColorSetting::kManaged: |
| return std::string("Managed"); |
| case DisplayColorSetting::kUnmanaged: |
| return std::string("Unmanaged"); |
| case DisplayColorSetting::kEnhanced: |
| return std::string("Enhanced"); |
| default: |
| return std::string("Unknown ") + |
| std::to_string(static_cast<int>(displayColorSetting)); |
| } |
| } |
| |
| bool callingThreadHasRotateSurfaceFlingerAccess() { |
| IPCThreadState* ipc = IPCThreadState::self(); |
| const int pid = ipc->getCallingPid(); |
| const int uid = ipc->getCallingUid(); |
| return uid == AID_GRAPHICS || uid == AID_SYSTEM || |
| PermissionCache::checkPermission(sRotateSurfaceFlinger, pid, uid); |
| } |
| |
| bool callingThreadHasInternalSystemWindowAccess() { |
| IPCThreadState* ipc = IPCThreadState::self(); |
| const int pid = ipc->getCallingPid(); |
| const int uid = ipc->getCallingUid(); |
| return uid == AID_GRAPHICS || uid == AID_SYSTEM || |
| PermissionCache::checkPermission(sInternalSystemWindow, pid, uid); |
| } |
| |
| SurfaceFlinger::SurfaceFlinger(Factory& factory, SkipInitializationTag) |
| : mFactory(factory), |
| mPid(getpid()), |
| mInterceptor(mFactory.createSurfaceInterceptor()), |
| mTimeStats(std::make_shared<impl::TimeStats>()), |
| mFrameTracer(mFactory.createFrameTracer()), |
| mFrameTimeline(mFactory.createFrameTimeline(mTimeStats, mPid)), |
| mCompositionEngine(mFactory.createCompositionEngine()), |
| mHwcServiceName(base::GetProperty("debug.sf.hwc_service_name"s, "default"s)), |
| mTunnelModeEnabledReporter(new TunnelModeEnabledReporter()), |
| mEmulatedDisplayDensity(getDensityFromProperty("qemu.sf.lcd_density", false)), |
| mInternalDisplayDensity( |
| getDensityFromProperty("ro.sf.lcd_density", !mEmulatedDisplayDensity)), |
| mPowerAdvisor(std::make_unique<Hwc2::impl::PowerAdvisor>(*this)), |
| mWindowInfosListenerInvoker(sp<WindowInfosListenerInvoker>::make(*this)) { |
| ALOGI("Using HWComposer service: %s", mHwcServiceName.c_str()); |
| } |
| |
| SurfaceFlinger::SurfaceFlinger(Factory& factory) : SurfaceFlinger(factory, SkipInitialization) { |
| ALOGI("SurfaceFlinger is starting"); |
| |
| hasSyncFramework = running_without_sync_framework(true); |
| |
| dispSyncPresentTimeOffset = present_time_offset_from_vsync_ns(0); |
| |
| useHwcForRgbToYuv = force_hwc_copy_for_virtual_displays(false); |
| |
| maxFrameBufferAcquiredBuffers = max_frame_buffer_acquired_buffers(2); |
| |
| maxGraphicsWidth = std::max(max_graphics_width(0), 0); |
| maxGraphicsHeight = std::max(max_graphics_height(0), 0); |
| |
| hasWideColorDisplay = has_wide_color_display(false); |
| mDefaultCompositionDataspace = |
| static_cast<ui::Dataspace>(default_composition_dataspace(Dataspace::V0_SRGB)); |
| mWideColorGamutCompositionDataspace = static_cast<ui::Dataspace>(wcg_composition_dataspace( |
| hasWideColorDisplay ? Dataspace::DISPLAY_P3 : Dataspace::V0_SRGB)); |
| defaultCompositionDataspace = mDefaultCompositionDataspace; |
| wideColorGamutCompositionDataspace = mWideColorGamutCompositionDataspace; |
| defaultCompositionPixelFormat = static_cast<ui::PixelFormat>( |
| default_composition_pixel_format(ui::PixelFormat::RGBA_8888)); |
| wideColorGamutCompositionPixelFormat = |
| static_cast<ui::PixelFormat>(wcg_composition_pixel_format(ui::PixelFormat::RGBA_8888)); |
| |
| mColorSpaceAgnosticDataspace = |
| static_cast<ui::Dataspace>(color_space_agnostic_dataspace(Dataspace::UNKNOWN)); |
| |
| mLayerCachingEnabled = [] { |
| const bool enable = |
| android::sysprop::SurfaceFlingerProperties::enable_layer_caching().value_or(false); |
| return base::GetBoolProperty(std::string("debug.sf.enable_layer_caching"), enable); |
| }(); |
| |
| useContextPriority = use_context_priority(true); |
| |
| mInternalDisplayPrimaries = sysprop::getDisplayNativePrimaries(); |
| |
| // debugging stuff... |
| char value[PROPERTY_VALUE_MAX]; |
| |
| property_get("ro.bq.gpu_to_cpu_unsupported", value, "0"); |
| mGpuToCpuSupported = !atoi(value); |
| |
| property_get("ro.build.type", value, "user"); |
| mIsUserBuild = strcmp(value, "user") == 0; |
| |
| mDebugFlashDelay = base::GetUintProperty("debug.sf.showupdates"s, 0u); |
| |
| // DDMS debugging deprecated (b/120782499) |
| property_get("debug.sf.ddms", value, "0"); |
| int debugDdms = atoi(value); |
| ALOGI_IF(debugDdms, "DDMS debugging not supported"); |
| |
| property_get("debug.sf.enable_gl_backpressure", value, "0"); |
| mPropagateBackpressureClientComposition = atoi(value); |
| ALOGI_IF(mPropagateBackpressureClientComposition, |
| "Enabling backpressure propagation for Client Composition"); |
| |
| property_get("ro.surface_flinger.supports_background_blur", value, "0"); |
| bool supportsBlurs = atoi(value); |
| mSupportsBlur = supportsBlurs; |
| ALOGI_IF(!mSupportsBlur, "Disabling blur effects, they are not supported."); |
| property_get("ro.sf.blurs_are_expensive", value, "0"); |
| mBlursAreExpensive = atoi(value); |
| |
| const size_t defaultListSize = ISurfaceComposer::MAX_LAYERS; |
| auto listSize = property_get_int32("debug.sf.max_igbp_list_size", int32_t(defaultListSize)); |
| mMaxGraphicBufferProducerListSize = (listSize > 0) ? size_t(listSize) : defaultListSize; |
| mGraphicBufferProducerListSizeLogThreshold = |
| std::max(static_cast<int>(0.95 * |
| static_cast<double>(mMaxGraphicBufferProducerListSize)), |
| 1); |
| |
| property_get("debug.sf.luma_sampling", value, "1"); |
| mLumaSampling = atoi(value); |
| |
| property_get("debug.sf.disable_client_composition_cache", value, "0"); |
| mDisableClientCompositionCache = atoi(value); |
| |
| property_get("debug.sf.predict_hwc_composition_strategy", value, "1"); |
| mPredictCompositionStrategy = atoi(value); |
| |
| property_get("debug.sf.treat_170m_as_sRGB", value, "0"); |
| mTreat170mAsSrgb = atoi(value); |
| |
| // We should be reading 'persist.sys.sf.color_saturation' here |
| // but since /data may be encrypted, we need to wait until after vold |
| // comes online to attempt to read the property. The property is |
| // instead read after the boot animation |
| |
| if (base::GetBoolProperty("debug.sf.treble_testing_override"s, false)) { |
| // Without the override SurfaceFlinger cannot connect to HIDL |
| // services that are not listed in the manifests. Considered |
| // deriving the setting from the set service name, but it |
| // would be brittle if the name that's not 'default' is used |
| // for production purposes later on. |
| ALOGI("Enabling Treble testing override"); |
| android::hardware::details::setTrebleTestingOverride(true); |
| } |
| |
| mRefreshRateOverlaySpinner = property_get_bool("sf.debug.show_refresh_rate_overlay_spinner", 0); |
| |
| if (!mIsUserBuild && base::GetBoolProperty("debug.sf.enable_transaction_tracing"s, true)) { |
| mTransactionTracing.emplace(); |
| } |
| |
| mIgnoreHdrCameraLayers = ignore_hdr_camera_layers(false); |
| |
| // Power hint session mode, representing which hint(s) to send: early, late, or both) |
| mPowerHintSessionMode = |
| {.late = base::GetBoolProperty("debug.sf.send_late_power_session_hint"s, true), |
| .early = base::GetBoolProperty("debug.sf.send_early_power_session_hint"s, false)}; |
| } |
| |
| LatchUnsignaledConfig SurfaceFlinger::getLatchUnsignaledConfig() { |
| if (base::GetBoolProperty("debug.sf.latch_unsignaled"s, false)) { |
| return LatchUnsignaledConfig::Always; |
| } |
| |
| if (base::GetBoolProperty("debug.sf.auto_latch_unsignaled"s, true)) { |
| return LatchUnsignaledConfig::AutoSingleLayer; |
| } |
| |
| return LatchUnsignaledConfig::Disabled; |
| } |
| |
| SurfaceFlinger::~SurfaceFlinger() = default; |
| |
| void SurfaceFlinger::binderDied(const wp<IBinder>&) { |
| // the window manager died on us. prepare its eulogy. |
| mBootFinished = false; |
| |
| // Sever the link to inputflinger since it's gone as well. |
| static_cast<void>(mScheduler->schedule([=] { mInputFlinger = nullptr; })); |
| |
| // restore initial conditions (default device unblank, etc) |
| initializeDisplays(); |
| |
| // restart the boot-animation |
| startBootAnim(); |
| } |
| |
| void SurfaceFlinger::run() { |
| mScheduler->run(); |
| } |
| |
| sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() { |
| const sp<Client> client = new Client(this); |
| return client->initCheck() == NO_ERROR ? client : nullptr; |
| } |
| |
| sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName, bool secure) { |
| // onTransact already checks for some permissions, but adding an additional check here. |
| // This is to ensure that only system and graphics can request to create a secure |
| // display. Secure displays can show secure content so we add an additional restriction on it. |
| const int uid = IPCThreadState::self()->getCallingUid(); |
| if (secure && uid != AID_GRAPHICS && uid != AID_SYSTEM) { |
| ALOGE("Only privileged processes can create a secure display"); |
| return nullptr; |
| } |
| |
| class DisplayToken : public BBinder { |
| sp<SurfaceFlinger> flinger; |
| virtual ~DisplayToken() { |
| // no more references, this display must be terminated |
| Mutex::Autolock _l(flinger->mStateLock); |
| flinger->mCurrentState.displays.removeItem(this); |
| flinger->setTransactionFlags(eDisplayTransactionNeeded); |
| } |
| public: |
| explicit DisplayToken(const sp<SurfaceFlinger>& flinger) |
| : flinger(flinger) { |
| } |
| }; |
| |
| sp<BBinder> token = new DisplayToken(this); |
| |
| Mutex::Autolock _l(mStateLock); |
| // Display ID is assigned when virtual display is allocated by HWC. |
| DisplayDeviceState state; |
| state.isSecure = secure; |
| state.displayName = displayName; |
| mCurrentState.displays.add(token, state); |
| mInterceptor->saveDisplayCreation(state); |
| return token; |
| } |
| |
| void SurfaceFlinger::destroyDisplay(const sp<IBinder>& displayToken) { |
| Mutex::Autolock lock(mStateLock); |
| |
| const ssize_t index = mCurrentState.displays.indexOfKey(displayToken); |
| if (index < 0) { |
| ALOGE("%s: Invalid display token %p", __func__, displayToken.get()); |
| return; |
| } |
| |
| const DisplayDeviceState& state = mCurrentState.displays.valueAt(index); |
| if (state.physical) { |
| ALOGE("%s: Invalid operation on physical display", __func__); |
| return; |
| } |
| mInterceptor->saveDisplayDeletion(state.sequenceId); |
| mCurrentState.displays.removeItemsAt(index); |
| setTransactionFlags(eDisplayTransactionNeeded); |
| } |
| |
| void SurfaceFlinger::enableHalVirtualDisplays(bool enable) { |
| auto& generator = mVirtualDisplayIdGenerators.hal; |
| if (!generator && enable) { |
| ALOGI("Enabling HAL virtual displays"); |
| generator.emplace(getHwComposer().getMaxVirtualDisplayCount()); |
| } else if (generator && !enable) { |
| ALOGW_IF(generator->inUse(), "Disabling HAL virtual displays while in use"); |
| generator.reset(); |
| } |
| } |
| |
| VirtualDisplayId SurfaceFlinger::acquireVirtualDisplay(ui::Size resolution, |
| ui::PixelFormat format) { |
| if (auto& generator = mVirtualDisplayIdGenerators.hal) { |
| if (const auto id = generator->generateId()) { |
| if (getHwComposer().allocateVirtualDisplay(*id, resolution, &format)) { |
| return *id; |
| } |
| |
| generator->releaseId(*id); |
| } else { |
| ALOGW("%s: Exhausted HAL virtual displays", __func__); |
| } |
| |
| ALOGW("%s: Falling back to GPU virtual display", __func__); |
| } |
| |
| const auto id = mVirtualDisplayIdGenerators.gpu.generateId(); |
| LOG_ALWAYS_FATAL_IF(!id, "Failed to generate ID for GPU virtual display"); |
| return *id; |
| } |
| |
| void SurfaceFlinger::releaseVirtualDisplay(VirtualDisplayId displayId) { |
| if (const auto id = HalVirtualDisplayId::tryCast(displayId)) { |
| if (auto& generator = mVirtualDisplayIdGenerators.hal) { |
| generator->releaseId(*id); |
| } |
| return; |
| } |
| |
| const auto id = GpuVirtualDisplayId::tryCast(displayId); |
| LOG_ALWAYS_FATAL_IF(!id); |
| mVirtualDisplayIdGenerators.gpu.releaseId(*id); |
| } |
| |
| std::vector<PhysicalDisplayId> SurfaceFlinger::getPhysicalDisplayIdsLocked() const { |
| std::vector<PhysicalDisplayId> displayIds; |
| displayIds.reserve(mPhysicalDisplayTokens.size()); |
| |
| const auto defaultDisplayId = getDefaultDisplayDeviceLocked()->getPhysicalId(); |
| displayIds.push_back(defaultDisplayId); |
| |
| for (const auto& [id, token] : mPhysicalDisplayTokens) { |
| if (id != defaultDisplayId) { |
| displayIds.push_back(id); |
| } |
| } |
| |
| return displayIds; |
| } |
| |
| status_t SurfaceFlinger::getPrimaryPhysicalDisplayId(PhysicalDisplayId* id) const { |
| Mutex::Autolock lock(mStateLock); |
| *id = getPrimaryDisplayIdLocked(); |
| return NO_ERROR; |
| } |
| |
| sp<IBinder> SurfaceFlinger::getPhysicalDisplayToken(PhysicalDisplayId displayId) const { |
| Mutex::Autolock lock(mStateLock); |
| return getPhysicalDisplayTokenLocked(displayId); |
| } |
| |
| status_t SurfaceFlinger::getColorManagement(bool* outGetColorManagement) const { |
| if (!outGetColorManagement) { |
| return BAD_VALUE; |
| } |
| *outGetColorManagement = useColorManagement; |
| return NO_ERROR; |
| } |
| |
| HWComposer& SurfaceFlinger::getHwComposer() const { |
| return mCompositionEngine->getHwComposer(); |
| } |
| |
| renderengine::RenderEngine& SurfaceFlinger::getRenderEngine() const { |
| return mCompositionEngine->getRenderEngine(); |
| } |
| |
| compositionengine::CompositionEngine& SurfaceFlinger::getCompositionEngine() const { |
| return *mCompositionEngine.get(); |
| } |
| |
| void SurfaceFlinger::bootFinished() { |
| if (mBootFinished == true) { |
| ALOGE("Extra call to bootFinished"); |
| return; |
| } |
| mBootFinished = true; |
| if (mStartPropertySetThread->join() != NO_ERROR) { |
| ALOGE("Join StartPropertySetThread failed!"); |
| } |
| |
| if (mRenderEnginePrimeCacheFuture.valid()) { |
| mRenderEnginePrimeCacheFuture.get(); |
| } |
| const nsecs_t now = systemTime(); |
| const nsecs_t duration = now - mBootTime; |
| ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) ); |
| |
| mFrameTracer->initialize(); |
| mFrameTimeline->onBootFinished(); |
| getRenderEngine().setEnableTracing(mFlagManager.use_skia_tracing()); |
| |
| // wait patiently for the window manager death |
| const String16 name("window"); |
| mWindowManager = defaultServiceManager()->getService(name); |
| if (mWindowManager != 0) { |
| mWindowManager->linkToDeath(static_cast<IBinder::DeathRecipient*>(this)); |
| } |
| |
| // stop boot animation |
| // formerly we would just kill the process, but we now ask it to exit so it |
| // can choose where to stop the animation. |
| property_set("service.bootanim.exit", "1"); |
| |
| const int LOGTAG_SF_STOP_BOOTANIM = 60110; |
| LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM, |
| ns2ms(systemTime(SYSTEM_TIME_MONOTONIC))); |
| |
| sp<IBinder> input(defaultServiceManager()->getService(String16("inputflinger"))); |
| |
| static_cast<void>(mScheduler->schedule([=] { |
| if (input == nullptr) { |
| ALOGE("Failed to link to input service"); |
| } else { |
| mInputFlinger = interface_cast<os::IInputFlinger>(input); |
| } |
| |
| readPersistentProperties(); |
| mPowerAdvisor->onBootFinished(); |
| const bool powerHintEnabled = mFlagManager.use_adpf_cpu_hint(); |
| mPowerAdvisor->enablePowerHint(powerHintEnabled); |
| const bool powerHintUsed = mPowerAdvisor->usePowerHintSession(); |
| ALOGD("Power hint is %s", |
| powerHintUsed ? "supported" : (powerHintEnabled ? "unsupported" : "disabled")); |
| if (powerHintUsed) { |
| std::optional<pid_t> renderEngineTid = getRenderEngine().getRenderEngineTid(); |
| std::vector<int32_t> tidList; |
| tidList.emplace_back(gettid()); |
| if (renderEngineTid.has_value()) { |
| tidList.emplace_back(*renderEngineTid); |
| } |
| if (!mPowerAdvisor->startPowerHintSession(tidList)) { |
| ALOGW("Cannot start power hint session"); |
| } |
| } |
| |
| mBootStage = BootStage::FINISHED; |
| |
| if (property_get_bool("sf.debug.show_refresh_rate_overlay", false)) { |
| FTL_FAKE_GUARD(mStateLock, enableRefreshRateOverlay(true)); |
| } |
| })); |
| } |
| |
| uint32_t SurfaceFlinger::getNewTexture() { |
| { |
| std::lock_guard lock(mTexturePoolMutex); |
| if (!mTexturePool.empty()) { |
| uint32_t name = mTexturePool.back(); |
| mTexturePool.pop_back(); |
| ATRACE_INT("TexturePoolSize", mTexturePool.size()); |
| return name; |
| } |
| |
| // The pool was too small, so increase it for the future |
| ++mTexturePoolSize; |
| } |
| |
| // The pool was empty, so we need to get a new texture name directly using a |
| // blocking call to the main thread |
| auto genTextures = [this] { |
| uint32_t name = 0; |
| getRenderEngine().genTextures(1, &name); |
| return name; |
| }; |
| if (std::this_thread::get_id() == mMainThreadId) { |
| return genTextures(); |
| } else { |
| return mScheduler->schedule(genTextures).get(); |
| } |
| } |
| |
| void SurfaceFlinger::deleteTextureAsync(uint32_t texture) { |
| std::lock_guard lock(mTexturePoolMutex); |
| // We don't change the pool size, so the fix-up logic in postComposition will decide whether |
| // to actually delete this or not based on mTexturePoolSize |
| mTexturePool.push_back(texture); |
| ATRACE_INT("TexturePoolSize", mTexturePool.size()); |
| } |
| |
| static std::optional<renderengine::RenderEngine::RenderEngineType> |
| chooseRenderEngineTypeViaSysProp() { |
| char prop[PROPERTY_VALUE_MAX]; |
| property_get(PROPERTY_DEBUG_RENDERENGINE_BACKEND, prop, ""); |
| |
| if (strcmp(prop, "gles") == 0) { |
| return renderengine::RenderEngine::RenderEngineType::GLES; |
| } else if (strcmp(prop, "threaded") == 0) { |
| return renderengine::RenderEngine::RenderEngineType::THREADED; |
| } else if (strcmp(prop, "skiagl") == 0) { |
| return renderengine::RenderEngine::RenderEngineType::SKIA_GL; |
| } else if (strcmp(prop, "skiaglthreaded") == 0) { |
| return renderengine::RenderEngine::RenderEngineType::SKIA_GL_THREADED; |
| } else { |
| ALOGE("Unrecognized RenderEngineType %s; ignoring!", prop); |
| return {}; |
| } |
| } |
| |
| // Do not call property_set on main thread which will be blocked by init |
| // Use StartPropertySetThread instead. |
| void SurfaceFlinger::init() { |
| ALOGI( "SurfaceFlinger's main thread ready to run. " |
| "Initializing graphics H/W..."); |
| Mutex::Autolock _l(mStateLock); |
| |
| // Get a RenderEngine for the given display / config (can't fail) |
| // TODO(b/77156734): We need to stop casting and use HAL types when possible. |
| // Sending maxFrameBufferAcquiredBuffers as the cache size is tightly tuned to single-display. |
| auto builder = renderengine::RenderEngineCreationArgs::Builder() |
| .setPixelFormat(static_cast<int32_t>(defaultCompositionPixelFormat)) |
| .setImageCacheSize(maxFrameBufferAcquiredBuffers) |
| .setUseColorManagerment(useColorManagement) |
| .setEnableProtectedContext(enable_protected_contents(false)) |
| .setPrecacheToneMapperShaderOnly(false) |
| .setSupportsBackgroundBlur(mSupportsBlur) |
| .setContextPriority( |
| useContextPriority |
| ? renderengine::RenderEngine::ContextPriority::REALTIME |
| : renderengine::RenderEngine::ContextPriority::MEDIUM); |
| if (auto type = chooseRenderEngineTypeViaSysProp()) { |
| builder.setRenderEngineType(type.value()); |
| } |
| mCompositionEngine->setRenderEngine(renderengine::RenderEngine::create(builder.build())); |
| mMaxRenderTargetSize = |
| std::min(getRenderEngine().getMaxTextureSize(), getRenderEngine().getMaxViewportDims()); |
| |
| // Set SF main policy after initializing RenderEngine which has its own policy. |
| if (!SetTaskProfiles(0, {"SFMainPolicy"})) { |
| ALOGW("Failed to set main task profile"); |
| } |
| |
| mCompositionEngine->setTimeStats(mTimeStats); |
| mCompositionEngine->setHwComposer(getFactory().createHWComposer(mHwcServiceName)); |
| mCompositionEngine->getHwComposer().setCallback(*this); |
| ClientCache::getInstance().setRenderEngine(&getRenderEngine()); |
| |
| enableLatchUnsignaledConfig = getLatchUnsignaledConfig(); |
| |
| if (base::GetBoolProperty("debug.sf.enable_hwc_vds"s, false)) { |
| enableHalVirtualDisplays(true); |
| } |
| |
| // Process any initial hotplug and resulting display changes. |
| processDisplayHotplugEventsLocked(); |
| const auto display = getDefaultDisplayDeviceLocked(); |
| LOG_ALWAYS_FATAL_IF(!display, "Missing primary display after registering composer callback."); |
| const auto displayId = display->getPhysicalId(); |
| LOG_ALWAYS_FATAL_IF(!getHwComposer().isConnected(displayId), |
| "Primary display is disconnected."); |
| |
| // initialize our drawing state |
| mDrawingState = mCurrentState; |
| |
| // set initial conditions (e.g. unblank default device) |
| initializeDisplays(); |
| |
| mPowerAdvisor->init(); |
| |
| char primeShaderCache[PROPERTY_VALUE_MAX]; |
| property_get("service.sf.prime_shader_cache", primeShaderCache, "1"); |
| if (atoi(primeShaderCache)) { |
| if (setSchedFifo(false) != NO_ERROR) { |
| ALOGW("Can't set SCHED_OTHER for primeCache"); |
| } |
| |
| mRenderEnginePrimeCacheFuture = getRenderEngine().primeCache(); |
| |
| if (setSchedFifo(true) != NO_ERROR) { |
| ALOGW("Can't set SCHED_OTHER for primeCache"); |
| } |
| } |
| |
| onActiveDisplaySizeChanged(display); |
| |
| // Inform native graphics APIs whether the present timestamp is supported: |
| |
| const bool presentFenceReliable = |
| !getHwComposer().hasCapability(Capability::PRESENT_FENCE_IS_NOT_RELIABLE); |
| mStartPropertySetThread = getFactory().createStartPropertySetThread(presentFenceReliable); |
| |
| if (mStartPropertySetThread->Start() != NO_ERROR) { |
| ALOGE("Run StartPropertySetThread failed!"); |
| } |
| |
| ALOGV("Done initializing"); |
| } |
| |
| void SurfaceFlinger::readPersistentProperties() { |
| Mutex::Autolock _l(mStateLock); |
| |
| char value[PROPERTY_VALUE_MAX]; |
| |
| property_get("persist.sys.sf.color_saturation", value, "1.0"); |
| mGlobalSaturationFactor = atof(value); |
| updateColorMatrixLocked(); |
| ALOGV("Saturation is set to %.2f", mGlobalSaturationFactor); |
| |
| property_get("persist.sys.sf.native_mode", value, "0"); |
| mDisplayColorSetting = static_cast<DisplayColorSetting>(atoi(value)); |
| |
| property_get("persist.sys.sf.color_mode", value, "0"); |
| mForceColorMode = static_cast<ColorMode>(atoi(value)); |
| } |
| |
| void SurfaceFlinger::startBootAnim() { |
| // Start boot animation service by setting a property mailbox |
| // if property setting thread is already running, Start() will be just a NOP |
| mStartPropertySetThread->Start(); |
| // Wait until property was set |
| if (mStartPropertySetThread->join() != NO_ERROR) { |
| ALOGE("Join StartPropertySetThread failed!"); |
| } |
| } |
| |
| // ---------------------------------------------------------------------------- |
| |
| bool SurfaceFlinger::authenticateSurfaceTexture( |
| const sp<IGraphicBufferProducer>& bufferProducer) const { |
| Mutex::Autolock _l(mStateLock); |
| return authenticateSurfaceTextureLocked(bufferProducer); |
| } |
| |
| bool SurfaceFlinger::authenticateSurfaceTextureLocked( |
| const sp<IGraphicBufferProducer>& /* bufferProducer */) const { |
| return false; |
| } |
| |
| status_t SurfaceFlinger::getSupportedFrameTimestamps( |
| std::vector<FrameEvent>* outSupported) const { |
| *outSupported = { |
| FrameEvent::REQUESTED_PRESENT, |
| FrameEvent::ACQUIRE, |
| FrameEvent::LATCH, |
| FrameEvent::FIRST_REFRESH_START, |
| FrameEvent::LAST_REFRESH_START, |
| FrameEvent::GPU_COMPOSITION_DONE, |
| FrameEvent::DEQUEUE_READY, |
| FrameEvent::RELEASE, |
| }; |
| |
| ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId); |
| |
| if (!getHwComposer().hasCapability(Capability::PRESENT_FENCE_IS_NOT_RELIABLE)) { |
| outSupported->push_back(FrameEvent::DISPLAY_PRESENT); |
| } |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getDisplayState(const sp<IBinder>& displayToken, ui::DisplayState* state) { |
| if (!displayToken || !state) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| return NAME_NOT_FOUND; |
| } |
| |
| state->layerStack = display->getLayerStack(); |
| state->orientation = display->getOrientation(); |
| |
| const Rect layerStackRect = display->getLayerStackSpaceRect(); |
| state->layerStackSpaceRect = |
| layerStackRect.isValid() ? layerStackRect.getSize() : display->getSize(); |
| |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getStaticDisplayInfo(const sp<IBinder>& displayToken, |
| ui::StaticDisplayInfo* info) { |
| if (!displayToken || !info) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| return NAME_NOT_FOUND; |
| } |
| |
| if (const auto connectionType = display->getConnectionType()) |
| info->connectionType = *connectionType; |
| else { |
| return INVALID_OPERATION; |
| } |
| |
| if (mEmulatedDisplayDensity) { |
| info->density = mEmulatedDisplayDensity; |
| } else { |
| info->density = info->connectionType == ui::DisplayConnectionType::Internal |
| ? mInternalDisplayDensity |
| : FALLBACK_DENSITY; |
| } |
| info->density /= ACONFIGURATION_DENSITY_MEDIUM; |
| |
| info->secure = display->isSecure(); |
| info->deviceProductInfo = display->getDeviceProductInfo(); |
| info->installOrientation = display->getPhysicalOrientation(); |
| |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getDynamicDisplayInfo(const sp<IBinder>& displayToken, |
| ui::DynamicDisplayInfo* info) { |
| if (!displayToken || !info) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| return NAME_NOT_FOUND; |
| } |
| |
| const auto displayId = PhysicalDisplayId::tryCast(display->getId()); |
| if (!displayId) { |
| return INVALID_OPERATION; |
| } |
| |
| info->activeDisplayModeId = display->getActiveMode()->getId().value(); |
| |
| const auto& supportedModes = display->getSupportedModes(); |
| info->supportedDisplayModes.clear(); |
| info->supportedDisplayModes.reserve(supportedModes.size()); |
| |
| for (const auto& [id, mode] : supportedModes) { |
| ui::DisplayMode outMode; |
| outMode.id = static_cast<int32_t>(id.value()); |
| |
| auto [width, height] = mode->getResolution(); |
| auto [xDpi, yDpi] = mode->getDpi(); |
| |
| if (const auto physicalOrientation = display->getPhysicalOrientation(); |
| physicalOrientation == ui::ROTATION_90 || physicalOrientation == ui::ROTATION_270) { |
| std::swap(width, height); |
| std::swap(xDpi, yDpi); |
| } |
| |
| outMode.resolution = ui::Size(width, height); |
| |
| outMode.xDpi = xDpi; |
| outMode.yDpi = yDpi; |
| |
| const nsecs_t period = mode->getVsyncPeriod(); |
| outMode.refreshRate = Fps::fromPeriodNsecs(period).getValue(); |
| |
| const auto vsyncConfigSet = |
| mVsyncConfiguration->getConfigsForRefreshRate(Fps::fromValue(outMode.refreshRate)); |
| outMode.appVsyncOffset = vsyncConfigSet.late.appOffset; |
| outMode.sfVsyncOffset = vsyncConfigSet.late.sfOffset; |
| outMode.group = mode->getGroup(); |
| |
| // This is how far in advance a buffer must be queued for |
| // presentation at a given time. If you want a buffer to appear |
| // on the screen at time N, you must submit the buffer before |
| // (N - presentationDeadline). |
| // |
| // Normally it's one full refresh period (to give SF a chance to |
| // latch the buffer), but this can be reduced by configuring a |
| // VsyncController offset. Any additional delays introduced by the hardware |
| // composer or panel must be accounted for here. |
| // |
| // We add an additional 1ms to allow for processing time and |
| // differences between the ideal and actual refresh rate. |
| outMode.presentationDeadline = period - outMode.sfVsyncOffset + 1000000; |
| |
| info->supportedDisplayModes.push_back(outMode); |
| } |
| |
| info->activeColorMode = display->getCompositionDisplay()->getState().colorMode; |
| info->supportedColorModes = getDisplayColorModes(*display); |
| info->hdrCapabilities = display->getHdrCapabilities(); |
| |
| info->autoLowLatencyModeSupported = |
| getHwComposer().hasDisplayCapability(*displayId, |
| DisplayCapability::AUTO_LOW_LATENCY_MODE); |
| info->gameContentTypeSupported = |
| getHwComposer().supportsContentType(*displayId, hal::ContentType::GAME); |
| |
| info->preferredBootDisplayMode = static_cast<ui::DisplayModeId>(-1); |
| |
| if (getHwComposer().hasCapability(Capability::BOOT_DISPLAY_CONFIG)) { |
| if (const auto hwcId = getHwComposer().getPreferredBootDisplayMode(*displayId)) { |
| if (const auto modeId = display->translateModeId(*hwcId)) { |
| info->preferredBootDisplayMode = modeId->value(); |
| } |
| } |
| } |
| |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>&, DisplayStatInfo* stats) { |
| if (!stats) { |
| return BAD_VALUE; |
| } |
| |
| *stats = mScheduler->getDisplayStatInfo(systemTime()); |
| return NO_ERROR; |
| } |
| |
| void SurfaceFlinger::setDesiredActiveMode(const ActiveModeInfo& info, bool force) { |
| ATRACE_CALL(); |
| |
| if (!info.mode) { |
| ALOGW("requested display mode is null"); |
| return; |
| } |
| auto display = getDisplayDeviceLocked(info.mode->getPhysicalDisplayId()); |
| if (!display) { |
| ALOGW("%s: display is no longer valid", __func__); |
| return; |
| } |
| |
| if (display->setDesiredActiveMode(info, force)) { |
| scheduleComposite(FrameHint::kNone); |
| |
| // Start receiving vsync samples now, so that we can detect a period |
| // switch. |
| mScheduler->resyncToHardwareVsync(true, info.mode->getFps()); |
| // As we called to set period, we will call to onRefreshRateChangeCompleted once |
| // VsyncController model is locked. |
| modulateVsync(&VsyncModulator::onRefreshRateChangeInitiated); |
| |
| updatePhaseConfiguration(info.mode->getFps()); |
| mScheduler->setModeChangePending(true); |
| } |
| } |
| |
| status_t SurfaceFlinger::setActiveModeFromBackdoor(const sp<IBinder>& displayToken, int modeId) { |
| ATRACE_CALL(); |
| |
| if (!displayToken) { |
| return BAD_VALUE; |
| } |
| |
| auto future = mScheduler->schedule([=]() -> status_t { |
| const auto display = FTL_FAKE_GUARD(mStateLock, getDisplayDeviceLocked(displayToken)); |
| if (!display) { |
| ALOGE("Attempt to set allowed display modes for invalid display token %p", |
| displayToken.get()); |
| return NAME_NOT_FOUND; |
| } |
| |
| if (display->isVirtual()) { |
| ALOGW("Attempt to set allowed display modes for virtual display"); |
| return INVALID_OPERATION; |
| } |
| |
| const auto mode = display->getMode(DisplayModeId{modeId}); |
| if (!mode) { |
| ALOGW("Attempt to switch to an unsupported mode %d.", modeId); |
| return BAD_VALUE; |
| } |
| |
| const auto fps = mode->getFps(); |
| // Keep the old switching type. |
| const auto allowGroupSwitching = |
| display->refreshRateConfigs().getCurrentPolicy().allowGroupSwitching; |
| const scheduler::RefreshRateConfigs::Policy policy{mode->getId(), |
| allowGroupSwitching, |
| {fps, fps}}; |
| constexpr bool kOverridePolicy = false; |
| |
| return setDesiredDisplayModeSpecsInternal(display, policy, kOverridePolicy); |
| }); |
| |
| return future.get(); |
| } |
| |
| void SurfaceFlinger::updateInternalStateWithChangedMode() { |
| ATRACE_CALL(); |
| |
| const auto display = getDefaultDisplayDeviceLocked(); |
| if (!display) { |
| return; |
| } |
| |
| const auto upcomingModeInfo = |
| FTL_FAKE_GUARD(kMainThreadContext, display->getUpcomingActiveMode()); |
| |
| if (!upcomingModeInfo.mode) { |
| // There is no pending mode change. This can happen if the active |
| // display changed and the mode change happened on a different display. |
| return; |
| } |
| |
| if (display->getActiveMode()->getResolution() != upcomingModeInfo.mode->getResolution()) { |
| auto& state = mCurrentState.displays.editValueFor(display->getDisplayToken()); |
| // We need to generate new sequenceId in order to recreate the display (and this |
| // way the framebuffer). |
| state.sequenceId = DisplayDeviceState{}.sequenceId; |
| state.physical->activeMode = upcomingModeInfo.mode; |
| processDisplayChangesLocked(); |
| |
| // processDisplayChangesLocked will update all necessary components so we're done here. |
| return; |
| } |
| |
| // We just created this display so we can call even if we are not on the main thread. |
| ftl::FakeGuard guard(kMainThreadContext); |
| display->setActiveMode(upcomingModeInfo.mode->getId()); |
| |
| const Fps refreshRate = upcomingModeInfo.mode->getFps(); |
| mRefreshRateStats->setRefreshRate(refreshRate); |
| updatePhaseConfiguration(refreshRate); |
| |
| if (upcomingModeInfo.event != DisplayModeEvent::None) { |
| mScheduler->onPrimaryDisplayModeChanged(mAppConnectionHandle, upcomingModeInfo.mode); |
| } |
| } |
| |
| void SurfaceFlinger::clearDesiredActiveModeState(const sp<DisplayDevice>& display) { |
| display->clearDesiredActiveModeState(); |
| if (isDisplayActiveLocked(display)) { |
| mScheduler->setModeChangePending(false); |
| } |
| } |
| |
| void SurfaceFlinger::desiredActiveModeChangeDone(const sp<DisplayDevice>& display) { |
| const auto refreshRate = display->getDesiredActiveMode()->mode->getFps(); |
| clearDesiredActiveModeState(display); |
| mScheduler->resyncToHardwareVsync(true, refreshRate); |
| updatePhaseConfiguration(refreshRate); |
| } |
| |
| void SurfaceFlinger::setActiveModeInHwcIfNeeded() { |
| ATRACE_CALL(); |
| |
| std::optional<PhysicalDisplayId> displayToUpdateImmediately; |
| |
| for (const auto& iter : mDisplays) { |
| const auto& display = iter.second; |
| if (!display || !display->isInternal()) { |
| continue; |
| } |
| |
| // Store the local variable to release the lock. |
| const auto desiredActiveMode = display->getDesiredActiveMode(); |
| if (!desiredActiveMode) { |
| // No desired active mode pending to be applied |
| continue; |
| } |
| |
| if (!isDisplayActiveLocked(display)) { |
| // display is no longer the active display, so abort the mode change |
| clearDesiredActiveModeState(display); |
| continue; |
| } |
| |
| const auto desiredMode = display->getMode(desiredActiveMode->mode->getId()); |
| if (!desiredMode) { |
| ALOGW("Desired display mode is no longer supported. Mode ID = %d", |
| desiredActiveMode->mode->getId().value()); |
| clearDesiredActiveModeState(display); |
| continue; |
| } |
| |
| const auto refreshRate = desiredMode->getFps(); |
| ALOGV("%s changing active mode to %d(%s) for display %s", __func__, |
| desiredMode->getId().value(), to_string(refreshRate).c_str(), |
| to_string(display->getId()).c_str()); |
| |
| if (display->getActiveMode()->getId() == desiredActiveMode->mode->getId()) { |
| // we are already in the requested mode, there is nothing left to do |
| desiredActiveModeChangeDone(display); |
| continue; |
| } |
| |
| // Desired active mode was set, it is different than the mode currently in use, however |
| // allowed modes might have changed by the time we process the refresh. |
| // Make sure the desired mode is still allowed |
| const auto displayModeAllowed = |
| display->refreshRateConfigs().isModeAllowed(desiredActiveMode->mode->getId()); |
| if (!displayModeAllowed) { |
| clearDesiredActiveModeState(display); |
| continue; |
| } |
| |
| // TODO(b/142753666) use constrains |
| hal::VsyncPeriodChangeConstraints constraints; |
| constraints.desiredTimeNanos = systemTime(); |
| constraints.seamlessRequired = false; |
| hal::VsyncPeriodChangeTimeline outTimeline; |
| |
| const auto status = FTL_FAKE_GUARD(kMainThreadContext, |
| display->initiateModeChange(*desiredActiveMode, |
| constraints, &outTimeline)); |
| |
| if (status != NO_ERROR) { |
| // initiateModeChange may fail if a hotplug event is just about |
| // to be sent. We just log the error in this case. |
| ALOGW("initiateModeChange failed: %d", status); |
| continue; |
| } |
| mScheduler->onNewVsyncPeriodChangeTimeline(outTimeline); |
| |
| if (outTimeline.refreshRequired) { |
| scheduleComposite(FrameHint::kNone); |
| mSetActiveModePending = true; |
| } else { |
| // Updating the internal state should be done outside the loop, |
| // because it can recreate a DisplayDevice and modify mDisplays |
| // which will invalidate the iterator. |
| displayToUpdateImmediately = display->getPhysicalId(); |
| } |
| } |
| |
| if (displayToUpdateImmediately) { |
| updateInternalStateWithChangedMode(); |
| |
| const auto display = getDisplayDeviceLocked(*displayToUpdateImmediately); |
| const auto desiredActiveMode = display->getDesiredActiveMode(); |
| if (desiredActiveMode && |
| display->getActiveMode()->getId() == desiredActiveMode->mode->getId()) { |
| desiredActiveModeChangeDone(display); |
| } |
| } |
| } |
| |
| void SurfaceFlinger::disableExpensiveRendering() { |
| const char* const whence = __func__; |
| auto future = mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) { |
| ATRACE_NAME(whence); |
| if (mPowerAdvisor->isUsingExpensiveRendering()) { |
| for (const auto& [_, display] : mDisplays) { |
| constexpr bool kDisable = false; |
| mPowerAdvisor->setExpensiveRenderingExpected(display->getId(), kDisable); |
| } |
| } |
| }); |
| |
| future.wait(); |
| } |
| |
| std::vector<ColorMode> SurfaceFlinger::getDisplayColorModes(const DisplayDevice& display) { |
| auto modes = getHwComposer().getColorModes(display.getPhysicalId()); |
| |
| // If the display is internal and the configuration claims it's not wide color capable, |
| // filter out all wide color modes. The typical reason why this happens is that the |
| // hardware is not good enough to support GPU composition of wide color, and thus the |
| // OEMs choose to disable this capability. |
| if (display.getConnectionType() == ui::DisplayConnectionType::Internal && |
| !hasWideColorDisplay) { |
| const auto newEnd = std::remove_if(modes.begin(), modes.end(), isWideColorMode); |
| modes.erase(newEnd, modes.end()); |
| } |
| |
| return modes; |
| } |
| |
| status_t SurfaceFlinger::getDisplayNativePrimaries(const sp<IBinder>& displayToken, |
| ui::DisplayPrimaries& primaries) { |
| if (!displayToken) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| return NAME_NOT_FOUND; |
| } |
| |
| const auto connectionType = display->getConnectionType(); |
| if (connectionType != ui::DisplayConnectionType::Internal) { |
| return INVALID_OPERATION; |
| } |
| |
| // TODO(b/229846990): For now, assume that all internal displays have the same primaries. |
| primaries = mInternalDisplayPrimaries; |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& displayToken, ColorMode mode) { |
| if (!displayToken) { |
| return BAD_VALUE; |
| } |
| |
| auto future = mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) -> status_t { |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| ALOGE("Attempt to set active color mode %s (%d) for invalid display token %p", |
| decodeColorMode(mode).c_str(), mode, displayToken.get()); |
| return NAME_NOT_FOUND; |
| } |
| |
| if (display->isVirtual()) { |
| ALOGW("Attempt to set active color mode %s (%d) for virtual display", |
| decodeColorMode(mode).c_str(), mode); |
| return INVALID_OPERATION; |
| } |
| |
| const auto modes = getDisplayColorModes(*display); |
| const bool exists = std::find(modes.begin(), modes.end(), mode) != modes.end(); |
| |
| if (mode < ColorMode::NATIVE || !exists) { |
| ALOGE("Attempt to set invalid active color mode %s (%d) for display token %p", |
| decodeColorMode(mode).c_str(), mode, displayToken.get()); |
| return BAD_VALUE; |
| } |
| |
| display->getCompositionDisplay()->setColorProfile( |
| {mode, Dataspace::UNKNOWN, RenderIntent::COLORIMETRIC, Dataspace::UNKNOWN}); |
| |
| return NO_ERROR; |
| }); |
| |
| // TODO(b/195698395): Propagate error. |
| future.wait(); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getBootDisplayModeSupport(bool* outSupport) const { |
| auto future = mScheduler->schedule( |
| [this] { return getHwComposer().hasCapability(Capability::BOOT_DISPLAY_CONFIG); }); |
| |
| *outSupport = future.get(); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::setBootDisplayMode(const sp<IBinder>& displayToken, |
| ui::DisplayModeId modeId) { |
| const char* const whence = __func__; |
| auto future = mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) -> status_t { |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| ALOGE("%s: Invalid display token %p", whence, displayToken.get()); |
| return NAME_NOT_FOUND; |
| } |
| |
| if (display->isVirtual()) { |
| ALOGE("%s: Invalid operation on virtual display", whence); |
| return INVALID_OPERATION; |
| } |
| |
| const auto displayId = display->getPhysicalId(); |
| const auto mode = display->getMode(DisplayModeId{modeId}); |
| if (!mode) { |
| ALOGE("%s: Invalid mode %d for display %s", whence, modeId, |
| to_string(displayId).c_str()); |
| return BAD_VALUE; |
| } |
| |
| return getHwComposer().setBootDisplayMode(displayId, mode->getHwcId()); |
| }); |
| return future.get(); |
| } |
| |
| status_t SurfaceFlinger::clearBootDisplayMode(const sp<IBinder>& displayToken) { |
| const char* const whence = __func__; |
| auto future = mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) -> status_t { |
| if (const auto displayId = getPhysicalDisplayIdLocked(displayToken)) { |
| return getHwComposer().clearBootDisplayMode(*displayId); |
| } else { |
| ALOGE("%s: Invalid display token %p", whence, displayToken.get()); |
| return BAD_VALUE; |
| } |
| }); |
| return future.get(); |
| } |
| |
| void SurfaceFlinger::setAutoLowLatencyMode(const sp<IBinder>& displayToken, bool on) { |
| const char* const whence = __func__; |
| static_cast<void>(mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) { |
| if (const auto displayId = getPhysicalDisplayIdLocked(displayToken)) { |
| getHwComposer().setAutoLowLatencyMode(*displayId, on); |
| } else { |
| ALOGE("%s: Invalid display token %p", whence, displayToken.get()); |
| } |
| })); |
| } |
| |
| void SurfaceFlinger::setGameContentType(const sp<IBinder>& displayToken, bool on) { |
| const char* const whence = __func__; |
| static_cast<void>(mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) { |
| if (const auto displayId = getPhysicalDisplayIdLocked(displayToken)) { |
| const auto type = on ? hal::ContentType::GAME : hal::ContentType::NONE; |
| getHwComposer().setContentType(*displayId, type); |
| } else { |
| ALOGE("%s: Invalid display token %p", whence, displayToken.get()); |
| } |
| })); |
| } |
| |
| status_t SurfaceFlinger::clearAnimationFrameStats() { |
| Mutex::Autolock _l(mStateLock); |
| mAnimFrameTracker.clearStats(); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const { |
| Mutex::Autolock _l(mStateLock); |
| mAnimFrameTracker.getStats(outStats); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::overrideHdrTypes(const sp<IBinder>& displayToken, |
| const std::vector<ui::Hdr>& hdrTypes) { |
| Mutex::Autolock lock(mStateLock); |
| |
| auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| ALOGE("%s: Invalid display token %p", __func__, displayToken.get()); |
| return NAME_NOT_FOUND; |
| } |
| |
| display->overrideHdrTypes(hdrTypes); |
| dispatchDisplayHotplugEvent(display->getPhysicalId(), true /* connected */); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::onPullAtom(const int32_t atomId, std::string* pulledData, bool* success) { |
| *success = mTimeStats->onPullAtom(atomId, pulledData); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getDisplayedContentSamplingAttributes(const sp<IBinder>& displayToken, |
| ui::PixelFormat* outFormat, |
| ui::Dataspace* outDataspace, |
| uint8_t* outComponentMask) const { |
| if (!outFormat || !outDataspace || !outComponentMask) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto displayId = getPhysicalDisplayIdLocked(displayToken); |
| if (!displayId) { |
| return NAME_NOT_FOUND; |
| } |
| |
| return getHwComposer().getDisplayedContentSamplingAttributes(*displayId, outFormat, |
| outDataspace, outComponentMask); |
| } |
| |
| status_t SurfaceFlinger::setDisplayContentSamplingEnabled(const sp<IBinder>& displayToken, |
| bool enable, uint8_t componentMask, |
| uint64_t maxFrames) { |
| const char* const whence = __func__; |
| auto future = mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) -> status_t { |
| if (const auto displayId = getPhysicalDisplayIdLocked(displayToken)) { |
| return getHwComposer().setDisplayContentSamplingEnabled(*displayId, enable, |
| componentMask, maxFrames); |
| } else { |
| ALOGE("%s: Invalid display token %p", whence, displayToken.get()); |
| return NAME_NOT_FOUND; |
| } |
| }); |
| |
| return future.get(); |
| } |
| |
| status_t SurfaceFlinger::getDisplayedContentSample(const sp<IBinder>& displayToken, |
| uint64_t maxFrames, uint64_t timestamp, |
| DisplayedFrameStats* outStats) const { |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto displayId = getPhysicalDisplayIdLocked(displayToken); |
| if (!displayId) { |
| return NAME_NOT_FOUND; |
| } |
| |
| return getHwComposer().getDisplayedContentSample(*displayId, maxFrames, timestamp, outStats); |
| } |
| |
| status_t SurfaceFlinger::getProtectedContentSupport(bool* outSupported) const { |
| if (!outSupported) { |
| return BAD_VALUE; |
| } |
| *outSupported = getRenderEngine().supportsProtectedContent(); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::isWideColorDisplay(const sp<IBinder>& displayToken, |
| bool* outIsWideColorDisplay) const { |
| if (!displayToken || !outIsWideColorDisplay) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| return NAME_NOT_FOUND; |
| } |
| |
| *outIsWideColorDisplay = |
| display->isPrimary() ? hasWideColorDisplay : display->hasWideColorGamut(); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::enableVSyncInjections(bool enable) { |
| auto future = mScheduler->schedule([=] { |
| Mutex::Autolock lock(mStateLock); |
| |
| if (const auto handle = mScheduler->enableVSyncInjection(enable)) { |
| mScheduler->setInjector(enable ? mScheduler->getEventConnection(handle) : nullptr); |
| } |
| }); |
| |
| future.wait(); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::injectVSync(nsecs_t when) { |
| Mutex::Autolock lock(mStateLock); |
| const DisplayStatInfo stats = mScheduler->getDisplayStatInfo(when); |
| const auto expectedPresent = calculateExpectedPresentTime(stats); |
| return mScheduler->injectVSync(when, /*expectedVSyncTime=*/expectedPresent, |
| /*deadlineTimestamp=*/expectedPresent) |
| ? NO_ERROR |
| : BAD_VALUE; |
| } |
| |
| status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) { |
| outLayers->clear(); |
| auto future = mScheduler->schedule([=] { |
| const auto display = FTL_FAKE_GUARD(mStateLock, getDefaultDisplayDeviceLocked()); |
| mDrawingState.traverseInZOrder([&](Layer* layer) { |
| outLayers->push_back(layer->getLayerDebugInfo(display.get())); |
| }); |
| }); |
| |
| future.wait(); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getCompositionPreference( |
| Dataspace* outDataspace, ui::PixelFormat* outPixelFormat, |
| Dataspace* outWideColorGamutDataspace, |
| ui::PixelFormat* outWideColorGamutPixelFormat) const { |
| *outDataspace = mDefaultCompositionDataspace; |
| *outPixelFormat = defaultCompositionPixelFormat; |
| *outWideColorGamutDataspace = mWideColorGamutCompositionDataspace; |
| *outWideColorGamutPixelFormat = wideColorGamutCompositionPixelFormat; |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::addRegionSamplingListener(const Rect& samplingArea, |
| const sp<IBinder>& stopLayerHandle, |
| const sp<IRegionSamplingListener>& listener) { |
| if (!listener || samplingArea == Rect::INVALID_RECT || samplingArea.isEmpty()) { |
| return BAD_VALUE; |
| } |
| |
| const wp<Layer> stopLayer = fromHandle(stopLayerHandle); |
| mRegionSamplingThread->addListener(samplingArea, stopLayer, listener); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::removeRegionSamplingListener(const sp<IRegionSamplingListener>& listener) { |
| if (!listener) { |
| return BAD_VALUE; |
| } |
| mRegionSamplingThread->removeListener(listener); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::addFpsListener(int32_t taskId, const sp<gui::IFpsListener>& listener) { |
| if (!listener) { |
| return BAD_VALUE; |
| } |
| |
| mFpsReporter->addListener(listener, taskId); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::removeFpsListener(const sp<gui::IFpsListener>& listener) { |
| if (!listener) { |
| return BAD_VALUE; |
| } |
| mFpsReporter->removeListener(listener); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::addTunnelModeEnabledListener( |
| const sp<gui::ITunnelModeEnabledListener>& listener) { |
| if (!listener) { |
| return BAD_VALUE; |
| } |
| |
| mTunnelModeEnabledReporter->addListener(listener); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::removeTunnelModeEnabledListener( |
| const sp<gui::ITunnelModeEnabledListener>& listener) { |
| if (!listener) { |
| return BAD_VALUE; |
| } |
| |
| mTunnelModeEnabledReporter->removeListener(listener); |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getDisplayBrightnessSupport(const sp<IBinder>& displayToken, |
| bool* outSupport) const { |
| if (!displayToken || !outSupport) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto displayId = getPhysicalDisplayIdLocked(displayToken); |
| if (!displayId) { |
| return NAME_NOT_FOUND; |
| } |
| *outSupport = getHwComposer().hasDisplayCapability(*displayId, DisplayCapability::BRIGHTNESS); |
| return NO_ERROR; |
| } |
| |
| bool SurfaceFlinger::hasVisibleHdrLayer(const sp<DisplayDevice>& display) { |
| bool hasHdrLayers = false; |
| mDrawingState.traverse([&, |
| compositionDisplay = display->getCompositionDisplay()](Layer* layer) { |
| hasHdrLayers |= (layer->isVisible() && |
| compositionDisplay->includesLayer(layer->getCompositionEngineLayerFE()) && |
| isHdrDataspace(layer->getDataSpace())); |
| }); |
| return hasHdrLayers; |
| } |
| |
| status_t SurfaceFlinger::setDisplayBrightness(const sp<IBinder>& displayToken, |
| const gui::DisplayBrightness& brightness) { |
| if (!displayToken) { |
| return BAD_VALUE; |
| } |
| |
| const char* const whence = __func__; |
| return ftl::Future(mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) { |
| if (const auto display = getDisplayDeviceLocked(displayToken)) { |
| const bool supportsDisplayBrightnessCommand = |
| getHwComposer().getComposer()->isSupported( |
| Hwc2::Composer::OptionalFeature::DisplayBrightnessCommand); |
| // If we support applying display brightness as a command, then we also support |
| // dimming SDR layers. |
| if (supportsDisplayBrightnessCommand) { |
| auto compositionDisplay = display->getCompositionDisplay(); |
| float currentDimmingRatio = |
| compositionDisplay->editState().sdrWhitePointNits / |
| compositionDisplay->editState().displayBrightnessNits; |
| compositionDisplay->setDisplayBrightness(brightness.sdrWhitePointNits, |
| brightness.displayBrightnessNits); |
| FTL_FAKE_GUARD(kMainThreadContext, |
| display->stageBrightness(brightness.displayBrightness)); |
| |
| if (brightness.sdrWhitePointNits / brightness.displayBrightnessNits != |
| currentDimmingRatio) { |
| scheduleComposite(FrameHint::kNone); |
| } else { |
| scheduleCommit(FrameHint::kNone); |
| } |
| return ftl::yield<status_t>(OK); |
| } else { |
| return getHwComposer() |
| .setDisplayBrightness(display->getPhysicalId(), |
| brightness.displayBrightness, |
| brightness.displayBrightnessNits, |
| Hwc2::Composer::DisplayBrightnessOptions{ |
| .applyImmediately = true}); |
| } |
| |
| } else { |
| ALOGE("%s: Invalid display token %p", whence, displayToken.get()); |
| return ftl::yield<status_t>(NAME_NOT_FOUND); |
| } |
| })) |
| .then([](ftl::Future<status_t> task) { return task; }) |
| .get(); |
| } |
| |
| status_t SurfaceFlinger::addHdrLayerInfoListener(const sp<IBinder>& displayToken, |
| const sp<gui::IHdrLayerInfoListener>& listener) { |
| if (!displayToken) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| return NAME_NOT_FOUND; |
| } |
| const auto displayId = display->getId(); |
| sp<HdrLayerInfoReporter>& hdrInfoReporter = mHdrLayerInfoListeners[displayId]; |
| if (!hdrInfoReporter) { |
| hdrInfoReporter = sp<HdrLayerInfoReporter>::make(); |
| } |
| hdrInfoReporter->addListener(listener); |
| |
| |
| mAddingHDRLayerInfoListener = true; |
| return OK; |
| } |
| |
| status_t SurfaceFlinger::removeHdrLayerInfoListener( |
| const sp<IBinder>& displayToken, const sp<gui::IHdrLayerInfoListener>& listener) { |
| if (!displayToken) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto display = getDisplayDeviceLocked(displayToken); |
| if (!display) { |
| return NAME_NOT_FOUND; |
| } |
| const auto displayId = display->getId(); |
| sp<HdrLayerInfoReporter>& hdrInfoReporter = mHdrLayerInfoListeners[displayId]; |
| if (hdrInfoReporter) { |
| hdrInfoReporter->removeListener(listener); |
| } |
| return OK; |
| } |
| |
| status_t SurfaceFlinger::notifyPowerBoost(int32_t boostId) { |
| using hardware::power::Boost; |
| Boost powerBoost = static_cast<Boost>(boostId); |
| |
| if (powerBoost == Boost::INTERACTION) { |
| mScheduler->onTouchHint(); |
| } |
| |
| return NO_ERROR; |
| } |
| |
| status_t SurfaceFlinger::getDisplayDecorationSupport( |
| const sp<IBinder>& displayToken, |
| std::optional<DisplayDecorationSupport>* outSupport) const { |
| if (!displayToken || !outSupport) { |
| return BAD_VALUE; |
| } |
| |
| Mutex::Autolock lock(mStateLock); |
| |
| const auto displayId = getPhysicalDisplayIdLocked(displayToken); |
| if (!displayId) { |
| return NAME_NOT_FOUND; |
| } |
| getHwComposer().getDisplayDecorationSupport(*displayId, outSupport); |
| return NO_ERROR; |
| } |
| |
| // ---------------------------------------------------------------------------- |
| |
| sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection( |
| ISurfaceComposer::VsyncSource vsyncSource, |
| ISurfaceComposer::EventRegistrationFlags eventRegistration) { |
| const auto& handle = |
| vsyncSource == eVsyncSourceSurfaceFlinger ? mSfConnectionHandle : mAppConnectionHandle; |
| |
| return mScheduler->createDisplayEventConnection(handle, eventRegistration); |
| } |
| |
| void SurfaceFlinger::scheduleCommit(FrameHint hint) { |
| if (hint == FrameHint::kActive) { |
| mScheduler->resetIdleTimer(); |
| } |
| mPowerAdvisor->notifyDisplayUpdateImminent(); |
| mScheduler->scheduleFrame(); |
| } |
| |
| void SurfaceFlinger::scheduleComposite(FrameHint hint) { |
| mMustComposite = true; |
| scheduleCommit(hint); |
| } |
| |
| void SurfaceFlinger::scheduleRepaint() { |
| mGeometryDirty = true; |
| scheduleComposite(FrameHint::kActive); |
| } |
| |
| void SurfaceFlinger::scheduleSample() { |
| static_cast<void>(mScheduler->schedule([this] { sample(); })); |
| } |
| |
| nsecs_t SurfaceFlinger::getVsyncPeriodFromHWC() const { |
| if (const auto display = getDefaultDisplayDeviceLocked()) { |
| return display->getVsyncPeriodFromHWC(); |
| } |
| |
| return 0; |
| } |
| |
| void SurfaceFlinger::onComposerHalVsync(hal::HWDisplayId hwcDisplayId, int64_t timestamp, |
| std::optional<hal::VsyncPeriodNanos> vsyncPeriod) { |
| const std::string tracePeriod = [vsyncPeriod]() { |
| if (ATRACE_ENABLED() && vsyncPeriod) { |
| std::stringstream ss; |
| ss << "(" << *vsyncPeriod << ")"; |
| return ss.str(); |
| } |
| return std::string(); |
| }(); |
| ATRACE_FORMAT("onComposerHalVsync%s", tracePeriod.c_str()); |
| |
| Mutex::Autolock lock(mStateLock); |
| const auto displayId = getHwComposer().toPhysicalDisplayId(hwcDisplayId); |
| if (displayId) { |
| const auto token = getPhysicalDisplayTokenLocked(*displayId); |
| const auto display = getDisplayDeviceLocked(token); |
| display->onVsync(timestamp); |
| } |
| |
| if (!getHwComposer().onVsync(hwcDisplayId, timestamp)) { |
| return; |
| } |
| |
| const bool isActiveDisplay = |
| displayId && getPhysicalDisplayTokenLocked(*displayId) == mActiveDisplayToken; |
| if (!isActiveDisplay) { |
| // For now, we don't do anything with non active display vsyncs. |
| return; |
| } |
| |
| bool periodFlushed = false; |
| mScheduler->addResyncSample(timestamp, vsyncPeriod, &periodFlushed); |
| if (periodFlushed) { |
| modulateVsync(&VsyncModulator::onRefreshRateChangeCompleted); |
| } |
| } |
| |
| void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) { |
| std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock); |
| *compositorTiming = getBE().mCompositorTiming; |
| } |
| |
| void SurfaceFlinger::onComposerHalHotplug(hal::HWDisplayId hwcDisplayId, |
| hal::Connection connection) { |
| const bool connected = connection == hal::Connection::CONNECTED; |
| ALOGI("%s HAL display %" PRIu64, connected ? "Connecting" : "Disconnecting", hwcDisplayId); |
| |
| // Only lock if we're not on the main thread. This function is normally |
| // called on a hwbinder thread, but for the primary display it's called on |
| // the main thread with the state lock already held, so don't attempt to |
| // acquire it here. |
| ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId); |
| |
| mPendingHotplugEvents.emplace_back(HotplugEvent{hwcDisplayId, connection}); |
| |
| if (std::this_thread::get_id() == mMainThreadId) { |
| // Process all pending hot plug events immediately if we are on the main thread. |
| processDisplayHotplugEventsLocked(); |
| } |
| |
| setTransactionFlags(eDisplayTransactionNeeded); |
| } |
| |
| void SurfaceFlinger::onComposerHalVsyncPeriodTimingChanged( |
| hal::HWDisplayId, const hal::VsyncPeriodChangeTimeline& timeline) { |
| Mutex::Autolock lock(mStateLock); |
| mScheduler->onNewVsyncPeriodChangeTimeline(timeline); |
| |
| if (timeline.refreshRequired) { |
| scheduleComposite(FrameHint::kNone); |
| } |
| } |
| |
| void SurfaceFlinger::onComposerHalSeamlessPossible(hal::HWDisplayId) { |
| // TODO(b/142753666): use constraints when calling to setActiveModeWithConstraints and |
| // use this callback to know when to retry in case of SEAMLESS_NOT_POSSIBLE. |
| } |
| |
| void SurfaceFlinger::onComposerHalRefresh(hal::HWDisplayId) { |
| Mutex::Autolock lock(mStateLock); |
| scheduleComposite(FrameHint::kNone); |
| } |
| |
| void SurfaceFlinger::onComposerHalVsyncIdle(hal::HWDisplayId) { |
| ATRACE_CALL(); |
| mScheduler->forceNextResync(); |
| } |
| |
| void SurfaceFlinger::setVsyncEnabled(bool enabled) { |
| ATRACE_CALL(); |
| |
| // On main thread to avoid race conditions with display power state. |
| static_cast<void>(mScheduler->schedule([=]() FTL_FAKE_GUARD(mStateLock) { |
| mHWCVsyncPendingState = enabled ? hal::Vsync::ENABLE : hal::Vsync::DISABLE; |
| |
| if (const auto display = getDefaultDisplayDeviceLocked(); |
| display && display->isPoweredOn()) { |
| setHWCVsyncEnabled(display->getPhysicalId(), mHWCVsyncPendingState); |
| } |
| })); |
| } |
| |
| SurfaceFlinger::FenceWithFenceTime SurfaceFlinger::previousFrameFence() { |
| const auto now = systemTime(); |
| const auto vsyncPeriod = mScheduler->getDisplayStatInfo(now).vsyncPeriod; |
| const bool expectedPresentTimeIsTheNextVsync = mExpectedPresentTime - now <= vsyncPeriod; |
| |
| size_t shift = 0; |
| if (!expectedPresentTimeIsTheNextVsync) { |
| shift = static_cast<size_t>((mExpectedPresentTime - now) / vsyncPeriod); |
| if (shift >= mPreviousPresentFences.size()) { |
| shift = mPreviousPresentFences.size() - 1; |
| } |
| } |
| ATRACE_FORMAT("previousFrameFence shift=%zu", shift); |
| return mPreviousPresentFences[shift]; |
| } |
| |
| bool SurfaceFlinger::previousFramePending(int graceTimeMs) { |
| ATRACE_CALL(); |
| const std::shared_ptr<FenceTime>& fence = previousFrameFence().fenceTime; |
| |
| if (fence == FenceTime::NO_FENCE) { |
| return false; |
| } |
| |
| const status_t status = fence->wait(graceTimeMs); |
| // This is the same as Fence::Status::Unsignaled, but it saves a getStatus() call, |
| // which calls wait(0) again internally |
| return status == -ETIME; |
| } |
| |
| nsecs_t SurfaceFlinger::previousFramePresentTime() { |
| const std::shared_ptr<FenceTime>& fence = previousFrameFence().fenceTime; |
| |
| if (fence == FenceTime::NO_FENCE) { |
| return Fence::SIGNAL_TIME_INVALID; |
| } |
| |
| return fence->getSignalTime(); |
| } |
| |
| nsecs_t SurfaceFlinger::calculateExpectedPresentTime(DisplayStatInfo stats) const { |
| // Inflate the expected present time if we're targetting the next vsync. |
| return mVsyncModulator->getVsyncConfig().sfOffset > 0 ? stats.vsyncTime |
| : stats.vsyncTime + stats.vsyncPeriod; |
| } |
| |
| bool SurfaceFlinger::commit(nsecs_t frameTime, int64_t vsyncId, nsecs_t expectedVsyncTime) |
| FTL_FAKE_GUARD(kMainThreadContext) { |
| // calculate the expected present time once and use the cached |
| // value throughout this frame to make sure all layers are |
| // seeing this same value. |
| if (expectedVsyncTime >= frameTime) { |
| mExpectedPresentTime = expectedVsyncTime; |
| } else { |
| const DisplayStatInfo stats = mScheduler->getDisplayStatInfo(frameTime); |
| mExpectedPresentTime = calculateExpectedPresentTime(stats); |
| } |
| |
| const nsecs_t lastScheduledPresentTime = mScheduledPresentTime; |
| mScheduledPresentTime = expectedVsyncTime; |
| |
| const auto vsyncIn = [&] { |
| if (!ATRACE_ENABLED()) return 0.f; |
| return (mExpectedPresentTime - systemTime()) / 1e6f; |
| }(); |
| ATRACE_FORMAT("%s %" PRId64 " vsyncIn %.2fms%s", __func__, vsyncId, vsyncIn, |
| mExpectedPresentTime == expectedVsyncTime ? "" : " (adjusted)"); |
| |
| // When Backpressure propagation is enabled we want to give a small grace period |
| // for the present fence to fire instead of just giving up on this frame to handle cases |
| // where present fence is just about to get signaled. |
| const int graceTimeForPresentFenceMs = |
| (mPropagateBackpressureClientComposition || !mHadClientComposition) ? 1 : 0; |
| |
| // Pending frames may trigger backpressure propagation. |
| const TracedOrdinal<bool> framePending = {"PrevFramePending", |
| previousFramePending(graceTimeForPresentFenceMs)}; |
| |
| // Frame missed counts for metrics tracking. |
| // A frame is missed if the prior frame is still pending. If no longer pending, |
| // then we still count the frame as missed if the predicted present time |
| // was further in the past than when the fence actually fired. |
| |
| // Add some slop to correct for drift. This should generally be |
| // smaller than a typical frame duration, but should not be so small |
| // that it reports reasonable drift as a missed frame. |
| const DisplayStatInfo stats = mScheduler->getDisplayStatInfo(systemTime()); |
| const nsecs_t frameMissedSlop = stats.vsyncPeriod / 2; |
| const nsecs_t previousPresentTime = previousFramePresentTime(); |
| const TracedOrdinal<bool> frameMissed = {"PrevFrameMissed", |
| framePending || |
| (previousPresentTime >= 0 && |
| (lastScheduledPresentTime < |
| previousPresentTime - frameMissedSlop))}; |
| const TracedOrdinal<bool> hwcFrameMissed = {"PrevHwcFrameMissed", |
| mHadDeviceComposition && frameMissed}; |
| const TracedOrdinal<bool> gpuFrameMissed = {"PrevGpuFrameMissed", |
| mHadClientComposition && frameMissed}; |
| |
| if (frameMissed) { |
| mFrameMissedCount++; |
| mTimeStats->incrementMissedFrames(); |
| } |
| |
| if (hwcFrameMissed) { |
| mHwcFrameMissedCount++; |
| } |
| |
| if (gpuFrameMissed) { |
| mGpuFrameMissedCount++; |
| } |
| |
| // If we are in the middle of a mode change and the fence hasn't |
| // fired yet just wait for the next commit. |
| if (mSetActiveModePending) { |
| if (framePending) { |
| mScheduler->scheduleFrame(); |
| return false; |
| } |
| |
| // We received the present fence from the HWC, so we assume it successfully updated |
| // the mode, hence we update SF. |
| mSetActiveModePending = false; |
| { |
| Mutex::Autolock lock(mStateLock); |
| updateInternalStateWithChangedMode(); |
| } |
| } |
| |
| if (framePending) { |
| if ((hwcFrameMissed && !gpuFrameMissed) || mPropagateBackpressureClientComposition) { |
| scheduleCommit(FrameHint::kNone); |
| return false; |
| } |
| } |
| |
| // Save this once per commit + composite to ensure consistency |
| // TODO (b/240619471): consider removing active display check once AOD is fixed |
| const auto activeDisplay = |
| FTL_FAKE_GUARD(mStateLock, getDisplayDeviceLocked(mActiveDisplayToken)); |
| mPowerHintSessionEnabled = mPowerAdvisor->usePowerHintSession() && activeDisplay && |
| activeDisplay->getPowerMode() == hal::PowerMode::ON; |
| if (mPowerHintSessionEnabled) { |
| const auto& display = FTL_FAKE_GUARD(mStateLock, getDefaultDisplayDeviceLocked()).get(); |
| // get stable vsync period from display mode |
| const nsecs_t vsyncPeriod = display->getActiveMode()->getVsyncPeriod(); |
| mPowerAdvisor->setCommitStart(frameTime); |
| mPowerAdvisor->setExpectedPresentTime(mExpectedPresentTime); |
| const nsecs_t idealSfWorkDuration = |
| mVsyncModulator->getVsyncConfig().sfWorkDuration.count(); |
| // Frame delay is how long we should have minus how long we actually have |
| mPowerAdvisor->setFrameDelay(idealSfWorkDuration - (mExpectedPresentTime - frameTime)); |
| mPowerAdvisor->setTotalFrameTargetWorkDuration(idealSfWorkDuration); |
| mPowerAdvisor->setTargetWorkDuration(vsyncPeriod); |
| |
| // Send early hint here to make sure there's not another frame pending |
| if (mPowerHintSessionMode.early) { |
| // Send a rough prediction for this frame based on last frame's timing info |
| mPowerAdvisor->sendPredictedWorkDuration(); |
| } |
| } |
| |
| if (mTracingEnabledChanged) { |
| mLayerTracingEnabled = mLayerTracing.isEnabled(); |
| mTracingEnabledChanged = false; |
| } |
| |
| if (mRefreshRateOverlaySpinner) { |
| Mutex::Autolock lock(mStateLock); |
| if (const auto display = getDefaultDisplayDeviceLocked()) { |
| display->animateRefreshRateOverlay(); |
| } |
| } |
| |
| // Composite if transactions were committed, or if requested by HWC. |
| bool mustComposite = mMustComposite.exchange(false); |
| { |
| mFrameTimeline->setSfWakeUp(vsyncId, frameTime, Fps::fromPeriodNsecs(stats.vsyncPeriod)); |
| |
| bool needsTraversal = false; |
| if (clearTransactionFlags(eTransactionFlushNeeded)) { |
| // Locking: |
| // 1. to prevent onHandleDestroyed from being called while the state lock is held, |
| // we must keep a copy of the transactions (specifically the composer |
| // states) around outside the scope of the lock |
| // 2. Transactions and created layers do not share a lock. To prevent applying |
| // transactions with layers still in the createdLayer queue, flush the transactions |
| // before committing the created layers. |
| std::vector<TransactionState> transactions = flushTransactions(); |
| needsTraversal |= commitCreatedLayers(); |
| needsTraversal |= applyTransactions(transactions, vsyncId); |
| } |
| |
| const bool shouldCommit = |
| (getTransactionFlags() & ~eTransactionFlushNeeded) || needsTraversal; |
| if (shouldCommit) { |
| commitTransactions(); |
| } |
| |
| if (transactionFlushNeeded()) { |
| setTransactionFlags(eTransactionFlushNeeded); |
| } |
| |
| mustComposite |= shouldCommit; |
| mustComposite |= latchBuffers(); |
| |
| // This has to be called after latchBuffers because we want to include the layers that have |
| // been latched in the commit callback |
| if (!needsTraversal) { |
| // Invoke empty transaction callbacks early. |
| mTransactionCallbackInvoker.sendCallbacks(false /* onCommitOnly */); |
| } else { |
| // Invoke OnCommit callbacks. |
| mTransactionCallbackInvoker.sendCallbacks(true /* onCommitOnly */); |
| } |
| |
| updateLayerGeometry(); |
| } |
| |
| // Layers need to get updated (in the previous line) before we can use them for |
| // choosing the refresh rate. |
| // Hold mStateLock as chooseRefreshRateForContent promotes wp<Layer> to sp<Layer> |
| // and may eventually call to ~Layer() if it holds the last reference |
| { |
| Mutex::Autolock _l(mStateLock); |
| mScheduler->chooseRefreshRateForContent(); |
| setActiveModeInHwcIfNeeded(); |
| } |
| |
| updateCursorAsync(); |
| updateInputFlinger(); |
| |
| if (mLayerTracingEnabled && !mLayerTracing.flagIsSet(LayerTracing::TRACE_COMPOSITION)) { |
| // This will block and tracing should only be enabled for debugging. |
| mLayerTracing.notify(mVisibleRegionsDirty, frameTime); |
| } |
| |
| persistDisplayBrightness(mustComposite); |
| |
| return mustComposite && CC_LIKELY(mBootStage != BootStage::BOOTLOADER); |
| } |
| |
| void SurfaceFlinger::composite(nsecs_t frameTime, int64_t vsyncId) |
| FTL_FAKE_GUARD(kMainThreadContext) { |
| ATRACE_FORMAT("%s %" PRId64, __func__, vsyncId); |
| |
| compositionengine::CompositionRefreshArgs refreshArgs; |
| const auto& displays = FTL_FAKE_GUARD(mStateLock, mDisplays); |
| refreshArgs.outputs.reserve(displays.size()); |
| std::vector<DisplayId> displayIds; |
| for (const auto& [_, display] : displays) { |
| refreshArgs.outputs.push_back(display->getCompositionDisplay()); |
| displayIds.push_back(display->getId()); |
| } |
| mPowerAdvisor->setDisplays(displayIds); |
| mDrawingState.traverseInZOrder([&refreshArgs](Layer* layer) { |
| if (auto layerFE = layer->getCompositionEngineLayerFE()) |
| refreshArgs.layers.push_back(layerFE); |
| }); |
| refreshArgs.layersWithQueuedFrames.reserve(mLayersWithQueuedFrames.size()); |
| for (auto layer : mLayersWithQueuedFrames) { |
| if (auto layerFE = layer->getCompositionEngineLayerFE()) |
| refreshArgs.layersWithQueuedFrames.push_back(layerFE); |
| } |
| |
| refreshArgs.outputColorSetting = useColorManagement |
| ? mDisplayColorSetting |
| : compositionengine::OutputColorSetting::kUnmanaged; |
| refreshArgs.colorSpaceAgnosticDataspace = mColorSpaceAgnosticDataspace; |
| refreshArgs.forceOutputColorMode = mForceColorMode; |
| |
| refreshArgs.updatingOutputGeometryThisFrame = mVisibleRegionsDirty; |
| refreshArgs.updatingGeometryThisFrame = mGeometryDirty.exchange(false) || mVisibleRegionsDirty; |
| refreshArgs.blursAreExpensive = mBlursAreExpensive; |
| refreshArgs.internalDisplayRotationFlags = DisplayDevice::getPrimaryDisplayRotationFlags(); |
| |
| if (CC_UNLIKELY(mDrawingState.colorMatrixChanged)) { |
| refreshArgs.colorTransformMatrix = mDrawingState.colorMatrix; |
| mDrawingState.colorMatrixChanged = false; |
| } |
| |
| refreshArgs.devOptForceClientComposition = mDebugDisableHWC; |
| |
| if (mDebugFlashDelay != 0) { |
| refreshArgs.devOptForceClientComposition = true; |
| refreshArgs.devOptFlashDirtyRegionsDelay = std::chrono::milliseconds(mDebugFlashDelay); |
| } |
| |
| const auto expectedPresentTime = mExpectedPresentTime.load(); |
| const auto prevVsyncTime = mScheduler->getPreviousVsyncFrom(expectedPresentTime); |
| const auto hwcMinWorkDuration = mVsyncConfiguration->getCurrentConfigs().hwcMinWorkDuration; |
| refreshArgs.earliestPresentTime = prevVsyncTime - hwcMinWorkDuration; |
| refreshArgs.previousPresentFence = mPreviousPresentFences[0].fenceTime; |
| refreshArgs.scheduledFrameTime = mScheduler->getScheduledFrameTime(); |
| refreshArgs.expectedPresentTime = expectedPresentTime; |
| |
| // Store the present time just before calling to the composition engine so we could notify |
| // the scheduler. |
| const auto presentTime = systemTime(); |
| |
| mCompositionEngine->present(refreshArgs); |
| |
| mTimeStats->recordFrameDuration(frameTime, systemTime()); |
| |
| // Send a power hint hint after presentation is finished |
| if (mPowerHintSessionEnabled) { |
| mPowerAdvisor->setSfPresentTiming(mPreviousPresentFences[0].fenceTime->getSignalTime(), |
| systemTime()); |
| if (mPowerHintSessionMode.late) { |
| mPowerAdvisor->sendActualWorkDuration(); |
| } |
| } |
| |
| if (mScheduler->onPostComposition(presentTime)) { |
| scheduleComposite(FrameHint::kNone); |
| } |
| |
| postFrame(); |
| postComposition(); |
| |
| const bool prevFrameHadClientComposition = mHadClientComposition; |
| |
| mHadClientComposition = mHadDeviceComposition = mReusedClientComposition = false; |
| TimeStats::ClientCompositionRecord clientCompositionRecord; |
| for (const auto& [_, display] : displays) { |
| const auto& state = display->getCompositionDisplay()->getState(); |
| mHadClientComposition |= state.usesClientComposition && !state.reusedClientComposition; |
| mHadDeviceComposition |= state.usesDeviceComposition; |
| mReusedClientComposition |= state.reusedClientComposition; |
| clientCompositionRecord.predicted |= |
| (state.strategyPrediction != CompositionStrategyPredictionState::DISABLED); |
| clientCompositionRecord.predictionSucceeded |= |
| (state.strategyPrediction == CompositionStrategyPredictionState::SUCCESS); |
| } |
| |
| clientCompositionRecord.hadClientComposition = mHadClientComposition; |
| clientCompositionRecord.reused = mReusedClientComposition; |
| clientCompositionRecord.changed = prevFrameHadClientComposition != mHadClientComposition; |
| mTimeStats->pushCompositionStrategyState(clientCompositionRecord); |
| |
| // TODO: b/160583065 Enable skip validation when SF caches all client composition layers |
| const bool usedGpuComposition = mHadClientComposition || mReusedClientComposition; |
| modulateVsync(&VsyncModulator::onDisplayRefresh, usedGpuComposition); |
| |
| mLayersWithQueuedFrames.clear(); |
| if (mLayerTracingEnabled && mLayerTracing.flagIsSet(LayerTracing::TRACE_COMPOSITION)) { |
| // This will block and should only be used for debugging. |
| mLayerTracing.notify(mVisibleRegionsDirty, frameTime); |
| } |
| |
| mVisibleRegionsWereDirtyThisFrame = mVisibleRegionsDirty; // Cache value for use in post-comp |
| mVisibleRegionsDirty = false; |
| |
| if (mCompositionEngine->needsAnotherUpdate()) { |
| scheduleCommit(FrameHint::kNone); |
| } |
| |
| if (mPowerHintSessionEnabled) { |
| mPowerAdvisor->setCompositeEnd(systemTime()); |
| } |
| } |
| |
| void SurfaceFlinger::updateLayerGeometry() { |
| ATRACE_CALL(); |
| |
| if (mVisibleRegionsDirty) { |
| computeLayerBounds(); |
| } |
| |
| for (auto& layer : mLayersPendingRefresh) { |
| Region visibleReg; |
| visibleReg.set(layer->getScreenBounds()); |
| invalidateLayerStack(layer, visibleReg); |
| } |
| mLayersPendingRefresh.clear(); |
| } |
| |
| void SurfaceFlinger::updateCompositorTiming(const DisplayStatInfo& stats, nsecs_t compositeTime, |
| std::shared_ptr<FenceTime>& presentFenceTime) { |
| // Update queue of past composite+present times and determine the |
| // most recently known composite to present latency. |
| getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime}); |
| nsecs_t compositeToPresentLatency = -1; |
| while (!getBE().mCompositePresentTimes.empty()) { |
| SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front(); |
| // Cached values should have been updated before calling this method, |
| // which helps avoid duplicate syscalls. |
| nsecs_t displayTime = cpt.display->getCachedSignalTime(); |
| if (displayTime == Fence::SIGNAL_TIME_PENDING) { |
| break; |
| } |
| compositeToPresentLatency = displayTime - cpt.composite; |
| getBE().mCompositePresentTimes.pop(); |
| } |
| |
| // Don't let mCompositePresentTimes grow unbounded, just in case. |
| while (getBE().mCompositePresentTimes.size() > 16) { |
| getBE().mCompositePresentTimes.pop(); |
| } |
| |
| setCompositorTimingSnapped(stats, compositeToPresentLatency); |
| } |
| |
| void SurfaceFlinger::setCompositorTimingSnapped(const DisplayStatInfo& stats, |
| nsecs_t compositeToPresentLatency) { |
| // Avoid division by 0 by defaulting to 60Hz |
| const auto vsyncPeriod = stats.vsyncPeriod ?: (60_Hz).getPeriodNsecs(); |
| |
| // Integer division and modulo round toward 0 not -inf, so we need to |
| // treat negative and positive offsets differently. |
| nsecs_t idealLatency = (mVsyncConfiguration->getCurrentConfigs().late.sfOffset > 0) |
| ? (vsyncPeriod - |
| (mVsyncConfiguration->getCurrentConfigs().late.sfOffset % vsyncPeriod)) |
| : ((-mVsyncConfiguration->getCurrentConfigs().late.sfOffset) % vsyncPeriod); |
| |
| // Just in case mVsyncConfiguration->getCurrentConfigs().late.sf == -vsyncInterval. |
| if (idealLatency <= 0) { |
| idealLatency = vsyncPeriod; |
| } |
| |
| // Snap the latency to a value that removes scheduling jitter from the |
| // composition and present times, which often have >1ms of jitter. |
| // Reducing jitter is important if an app attempts to extrapolate |
| // something (such as user input) to an accurate diasplay time. |
| // Snapping also allows an app to precisely calculate |
| // mVsyncConfiguration->getCurrentConfigs().late.sf with (presentLatency % interval). |
| const nsecs_t bias = vsyncPeriod / 2; |
| const int64_t extraVsyncs = ((compositeToPresentLatency - idealLatency + bias) / vsyncPeriod); |
| const nsecs_t snappedCompositeToPresentLatency = |
| (extraVsyncs > 0) ? idealLatency + (extraVsyncs * vsyncPeriod) : idealLatency; |
| |
| std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock); |
| getBE().mCompositorTiming.deadline = stats.vsyncTime - idealLatency; |
| getBE().mCompositorTiming.interval = vsyncPeriod; |
| getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency; |
| } |
| |
| bool SurfaceFlinger::isHdrLayer(Layer* layer) const { |
| // Treat all layers as non-HDR if: |
| // 1. They do not have a valid HDR dataspace. Currently we treat those as PQ or HLG. and |
| // 2. The layer is allowed to be dimmed. WindowManager may disable dimming in order to |
| // keep animations invoking SDR screenshots of HDR layers seamless. Treat such tagged |
| // layers as HDR so that DisplayManagerService does not try to change the screen brightness |
| if (!isHdrDataspace(layer->getDataSpace()) && layer->isDimmingEnabled()) { |
| return false; |
| } |
| if (mIgnoreHdrCameraLayers) { |
| auto buffer = layer->getBuffer(); |
| if (buffer && (buffer->getUsage() & GRALLOC_USAGE_HW_CAMERA_WRITE) != 0) { |
| return false; |
| } |
| } |
| return true; |
| } |
| |
| ui::Rotation SurfaceFlinger::getPhysicalDisplayOrientation(DisplayId displayId, |
| bool isPrimary) const { |
| const auto id = PhysicalDisplayId::tryCast(displayId); |
| if (!id) { |
| return ui::ROTATION_0; |
| } |
| if (getHwComposer().getComposer()->isSupported( |
| Hwc2::Composer::OptionalFeature::PhysicalDisplayOrientation)) { |
| switch (getHwComposer().getPhysicalDisplayOrientation(*id)) { |
| case Hwc2::AidlTransform::ROT_90: |
| return ui::ROTATION_90; |
| case Hwc2::AidlTransform::ROT_180: |
| return ui::ROTATION_180; |
| case Hwc2::AidlTransform::ROT_270: |
| return ui::ROTATION_270; |
| default: |
| return ui::ROTATION_0; |
| } |
| } |
| |
| if (isPrimary) { |
| using Values = SurfaceFlingerProperties::primary_display_orientation_values; |
| switch (primary_display_orientation(Values::ORIENTATION_0)) { |
| case Values::ORIENTATION_90: |
| return ui::ROTATION_90; |
| case Values::ORIENTATION_180: |
| return ui::ROTATION_180; |
| case Values::ORIENTATION_270: |
| return ui::ROTATION_270; |
| default: |
| break; |
| } |
| } |
| return ui::ROTATION_0; |
| } |
| |
| void SurfaceFlinger::postComposition() { |
| ATRACE_CALL(); |
| ALOGV("postComposition"); |
| |
| const auto* display = FTL_FAKE_GUARD(mStateLock, getDefaultDisplayDeviceLocked()).get(); |
| |
| std::shared_ptr<FenceTime> glCompositionDoneFenceTime; |
| if (display && display->getCompositionDisplay()->getState().usesClientComposition) { |
| glCompositionDoneFenceTime = |
| std::make_shared<FenceTime>(display->getCompositionDisplay() |
| ->getRenderSurface() |
| ->getClientTargetAcquireFence()); |
| } else { |
| glCompositionDoneFenceTime = FenceTime::NO_FENCE; |
| } |
| |
| for (size_t i = mPreviousPresentFences.size()-1; i >= 1; i--) { |
| mPreviousPresentFences[i] = mPreviousPresentFences[i-1]; |
| } |
| |
| mPreviousPresentFences[0].fence = |
| display ? getHwComposer().getPresentFence(display->getPhysicalId()) : Fence::NO_FENCE; |
| mPreviousPresentFences[0].fenceTime = |
| std::make_shared<FenceTime>(mPreviousPresentFences[0].fence); |
| |
| nsecs_t now = systemTime(); |
| |
| // Set presentation information before calling Layer::releasePendingBuffer, such that jank |
| // information from previous' frame classification is already available when sending jank info |
| // to clients, so they get jank classification as early as possible. |
| mFrameTimeline->setSfPresent(/* sfPresentTime */ now, mPreviousPresentFences[0].fenceTime, |
| glCompositionDoneFenceTime); |
| |
| const DisplayStatInfo stats = mScheduler->getDisplayStatInfo(now); |
| |
| // We use the CompositionEngine::getLastFrameRefreshTimestamp() which might |
| // be sampled a little later than when we started doing work for this frame, |
| // but that should be okay since updateCompositorTiming has snapping logic. |
| updateCompositorTiming(stats, mCompositionEngine->getLastFrameRefreshTimestamp(), |
| mPreviousPresentFences[0].fenceTime); |
| CompositorTiming compositorTiming; |
| { |
| std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock); |
| compositorTiming = getBE().mCompositorTiming; |
| } |
| |
| for (const auto& layer: mLayersWithQueuedFrames) { |
| layer->onPostComposition(display, glCompositionDoneFenceTime, |
| mPreviousPresentFences[0].fenceTime, compositorTiming); |
| layer->releasePendingBuffer(/*dequeueReadyTime*/ now); |
| } |
| |
| std::vector<std::pair<std::shared_ptr<compositionengine::Display>, sp<HdrLayerInfoReporter>>> |
| hdrInfoListeners; |
| bool haveNewListeners = false; |
| { |
| Mutex::Autolock lock(mStateLock); |
| if (mFpsReporter) { |
| mFpsReporter->dispatchLayerFps(); |
| } |
| |
| if (mTunnelModeEnabledReporter) { |
| mTunnelModeEnabledReporter->updateTunnelModeStatus(); |
| } |
| hdrInfoListeners.reserve(mHdrLayerInfoListeners.size()); |
| for (const auto& [displayId, reporter] : mHdrLayerInfoListeners) { |
| if (reporter && reporter->hasListeners()) { |
| if (const auto display = getDisplayDeviceLocked(displayId)) { |
| hdrInfoListeners.emplace_back(display->getCompositionDisplay(), reporter); |
| } |
| } |
| } |
| haveNewListeners = mAddingHDRLayerInfoListener; // grab this with state lock |
| mAddingHDRLayerInfoListener = false; |
| } |
| |
| if (haveNewListeners || mSomeDataspaceChanged || mVisibleRegionsWereDirtyThisFrame) { |
| for (auto& [compositionDisplay, listener] : hdrInfoListeners) { |
| HdrLayerInfoReporter::HdrLayerInfo info; |
| int32_t maxArea = 0; |
| mDrawingState.traverse([&, compositionDisplay = compositionDisplay](Layer* layer) { |
| const auto layerFe = layer->getCompositionEngineLayerFE(); |
| if (layer->isVisible() && compositionDisplay->includesLayer(layerFe)) { |
| if (isHdrLayer(layer)) { |
| const auto* outputLayer = |
| compositionDisplay->getOutputLayerForLayer(layerFe); |
| if (outputLayer) { |
| info.numberOfHdrLayers++; |
| const auto displayFrame = outputLayer->getState().displayFrame; |
| const int32_t area = displayFrame.width() * displayFrame.height(); |
| if (area > maxArea) { |
| maxArea = area; |
| info.maxW = displayFrame.width(); |
| info.maxH = displayFrame.height(); |
| } |
| } |
| } |
| } |
| }); |
| listener->dispatchHdrLayerInfo(info); |
| } |
| } |
| |
| mSomeDataspaceChanged = false; |
| mVisibleRegionsWereDirtyThisFrame = false; |
| |
| mTransactionCallbackInvoker.addPresentFence(mPreviousPresentFences[0].fence); |
| mTransactionCallbackInvoker.sendCallbacks(false /* onCommitOnly */); |
| mTransactionCallbackInvoker.clearCompletedTransactions(); |
| |
| if (display && display->isInternal() && display->getPowerMode() == hal::PowerMode::ON && |
| mPreviousPresentFences[0].fenceTime->isValid()) { |
| mScheduler->addPresentFence(mPreviousPresentFences[0].fenceTime); |
| } |
| |
| const bool isDisplayConnected = |
| display && getHwComposer().isConnected(display->getPhysicalId()); |
| |
| if (!hasSyncFramework) { |
| if (isDisplayConnected && display->isPoweredOn()) { |
| mScheduler->enableHardwareVsync(); |
| } |
| } |
| |
| if (mAnimCompositionPending) { |
| mAnimCompositionPending = false; |
| |
| if (mPreviousPresentFences[0].fenceTime->isValid()) { |
| mAnimFrameTracker.setActualPresentFence(mPreviousPresentFences[0].fenceTime); |
| } else if (isDisplayConnected) { |
| // The HWC doesn't support present fences, so use the refresh |
| // timestamp instead. |
| const nsecs_t presentTime = display->getRefreshTimestamp(); |
| mAnimFrameTracker.setActualPresentTime(presentTime); |
| } |
| mAnimFrameTracker.advanceFrame(); |
| } |
| |
| mTimeStats->incrementTotalFrames(); |
| |
| mTimeStats->setPresentFenceGlobal(mPreviousPresentFences[0].fenceTime); |
| |
| const size_t sfConnections = mScheduler->getEventThreadConnectionCount(mSfConnectionHandle); |
| const size_t appConnections = mScheduler->getEventThreadConnectionCount(mAppConnectionHandle); |
| mTimeStats->recordDisplayEventConnectionCount(sfConnections + appConnections); |
| |
| if (isDisplayConnected && !display->isPoweredOn()) { |
| getRenderEngine().cleanupPostRender(); |
| return; |
| } |
| |
| nsecs_t currentTime = systemTime(); |
| if (mHasPoweredOff) { |
| mHasPoweredOff = false; |
| } else { |
| nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime; |
| size_t numPeriods = static_cast<size_t>(elapsedTime / stats.vsyncPeriod); |
| if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) { |
| getBE().mFrameBuckets[numPeriods] += elapsedTime; |
| } else { |
| getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime; |
| } |
| getBE().mTotalTime += elapsedTime; |
| } |
| getBE().mLastSwapTime = currentTime; |
| |
| // Cleanup any outstanding resources due to rendering a prior frame. |
| getRenderEngine().cleanupPostRender(); |
| |
| { |
| std::lock_guard lock(mTexturePoolMutex); |
| if (mTexturePool.size() < mTexturePoolSize) { |
| const size_t refillCount = mTexturePoolSize - mTexturePool.size(); |
| const size_t offset = mTexturePool.size(); |
| mTexturePool.resize(mTexturePoolSize); |
| getRenderEngine().genTextures(refillCount, mTexturePool.data() + offset); |
| ATRACE_INT("TexturePoolSize", mTexturePool.size()); |
| } else if (mTexturePool.size() > mTexturePoolSize) { |
| const size_t deleteCount = mTexturePool.size() - mTexturePoolSize; |
| const size_t offset = mTexturePoolSize; |
| getRenderEngine().deleteTextures(deleteCount, mTexturePool.data() + offset); |
| mTexturePool.resize(mTexturePoolSize); |
| ATRACE_INT("TexturePoolSize", mTexturePool.size()); |
| } |
| } |
| |
| // Even though ATRACE_INT64 already checks if tracing is enabled, it doesn't prevent the |
| // side-effect of getTotalSize(), so we check that again here |
| if (ATRACE_ENABLED()) { |
| // getTotalSize returns the total number of buffers that were allocated by SurfaceFlinger |
| ATRACE_INT64("Total Buffer Size", GraphicBufferAllocator::get().getTotalSize()); |
| } |
| } |
| |
| FloatRect SurfaceFlinger::getMaxDisplayBounds() { |
| const ui::Size maxSize = [this] { |
| ftl::FakeGuard guard(mStateLock); |
| |
| // The LayerTraceGenerator tool runs without displays. |
| if (mDisplays.empty()) return ui::Size{5000, 5000}; |
| |
| return std::accumulate(mDisplays.begin(), mDisplays.end(), ui::kEmptySize, |
| [](ui::Size size, const auto& pair) -> ui::Size { |
| const auto& display = pair.second; |
| return {std::max(size.getWidth(), display->getWidth()), |
| std::max(size.getHeight(), display->getHeight())}; |
| }); |
| }(); |
| |
| // Ignore display bounds for now since they will be computed later. Use a large Rect bound |
| // to ensure it's bigger than an actual display will be. |
| const float xMax = maxSize.getWidth() * 10.f; |
| const float yMax = maxSize.getHeight() * 10.f; |
| |
| return {-xMax, -yMax, xMax, yMax}; |
| } |
| |
| void SurfaceFlinger::computeLayerBounds() { |
| const FloatRect maxBounds = getMaxDisplayBounds(); |
| for (const auto& layer : mDrawingState.layersSortedByZ) { |
| layer->computeBounds(maxBounds, ui::Transform(), 0.f /* shadowRadius */); |
| } |
| } |
| |
| void SurfaceFlinger::postFrame() { |
| const auto display = FTL_FAKE_GUARD(mStateLock, getDefaultDisplayDeviceLocked()); |
| if (display && getHwComposer().isConnected(display->getPhysicalId())) { |
| uint32_t flipCount = display->getPageFlipCount(); |
| if (flipCount % LOG_FRAME_STATS_PERIOD == 0) { |
| logFrameStats(); |
| } |
| } |
| } |
| |
| void SurfaceFlinger::commitTransactions() { |
| ATRACE_CALL(); |
| |
| // Keep a copy of the drawing state (that is going to be overwritten |
| // by commitTransactionsLocked) outside of mStateLock so that the side |
| // effects of the State assignment don't happen with mStateLock held, |
| // which can cause deadlocks. |
| State drawingState(mDrawingState); |
| |
| Mutex::Autolock lock(mStateLock); |
| mDebugInTransaction = systemTime(); |
| |
| // Here we're guaranteed that some transaction flags are set |
| // so we can call commitTransactionsLocked unconditionally. |
| // We clear the flags with mStateLock held to guarantee that |
| // mCurrentState won't change until the transaction is committed. |
| modulateVsync(&VsyncModulator::onTransactionCommit); |
| commitTransactionsLocked(clearTransactionFlags(eTransactionMask)); |
| |
| mDebugInTransaction = 0; |
| } |
| |
| std::pair<DisplayModes, DisplayModePtr> SurfaceFlinger::loadDisplayModes( |
| PhysicalDisplayId displayId) const { |
| std::vector<HWComposer::HWCDisplayMode> hwcModes; |
| std::optional<hal::HWDisplayId> activeModeHwcId; |
| |
| int attempt = 0; |
| constexpr int kMaxAttempts = 3; |
| do { |
| hwcModes = getHwComposer().getModes(displayId); |
| activeModeHwcId = getHwComposer().getActiveMode(displayId); |
| LOG_ALWAYS_FATAL_IF(!activeModeHwcId, "HWC returned no active mode"); |
| |
| const auto isActiveMode = [activeModeHwcId](const HWComposer::HWCDisplayMode& mode) { |
| return mode.hwcId == *activeModeHwcId; |
| }; |
| |
| if (std::any_of(hwcModes.begin(), hwcModes.end(), isActiveMode)) { |
| break; |
| } |
| } while (++attempt < kMaxAttempts); |
| |
| LOG_ALWAYS_FATAL_IF(attempt == kMaxAttempts, |
| "After %d attempts HWC still returns an active mode which is not" |
| " supported. Active mode ID = %" PRIu64 ". Supported modes = %s", |
| kMaxAttempts, *activeModeHwcId, base::Join(hwcModes, ", ").c_str()); |
| |
| DisplayModes oldModes; |
| if (const auto token = getPhysicalDisplayTokenLocked(displayId)) { |
| oldModes = getDisplayDeviceLocked(token)->getSupportedModes(); |
| } |
| |
| ui::DisplayModeId nextModeId = 1 + |
| std::accumulate(oldModes.begin(), oldModes.end(), static_cast<ui::DisplayModeId>(-1), |
| [](ui::DisplayModeId max, const auto& pair) { |
| return std::max(max, pair.first.value()); |
| }); |
| |
| DisplayModes newModes; |
| for (const auto& hwcMode : hwcModes) { |
| const DisplayModeId id{nextModeId++}; |
| newModes.try_emplace(id, |
| DisplayMode::Builder(hwcMode.hwcId) |
| .setId(id) |
| .setPhysicalDisplayId(displayId) |
| .setResolution({hwcMode.width, hwcMode.height}) |
| .setVsyncPeriod(hwcMode.vsyncPeriod) |
| .setDpiX(hwcMode.dpiX) |
| .setDpiY(hwcMode.dpiY) |
| .setGroup(hwcMode.configGroup) |
| .build()); |
| } |
| |
| const bool sameModes = |
| std::equal(newModes.begin(), newModes.end(), oldModes.begin(), oldModes.end(), |
| [](const auto& lhs, const auto& rhs) { |
| return equalsExceptDisplayModeId(*lhs.second, *rhs.second); |
| }); |
| |
| // Keep IDs if modes have not changed. |
| const auto& modes = sameModes ? oldModes : newModes; |
| const DisplayModePtr activeMode = |
| std::find_if(modes.begin(), modes.end(), [activeModeHwcId](const auto& pair) { |
| return pair.second->getHwcId() == activeModeHwcId; |
| })->second; |
| |
| return {modes, activeMode}; |
| } |
| |
| void SurfaceFlinger::processDisplayHotplugEventsLocked() { |
| for (const auto& event : mPendingHotplugEvents) { |
| std::optional<DisplayIdentificationInfo> info = |
| getHwComposer().onHotplug(event.hwcDisplayId, event.connection); |
| |
| if (!info) { |
| continue; |
| } |
| |
| const auto displayId = info->id; |
| const auto token = mPhysicalDisplayTokens.get(displayId); |
| |
| if (event.connection == hal::Connection::CONNECTED) { |
| auto [supportedModes, activeMode] = loadDisplayModes(displayId); |
| |
| if (!token) { |
| ALOGV("Creating display %s", to_string(displayId).c_str()); |
| |
| DisplayDeviceState state; |
| state.physical = {.id = displayId, |
| .type = getHwComposer().getDisplayConnectionType(displayId), |
| .hwcDisplayId = event.hwcDisplayId, |
| .deviceProductInfo = std::move(info->deviceProductInfo), |
| .supportedModes = std::move(supportedModes), |
| .activeMode = std::move(activeMode)}; |
| state.isSecure = true; // All physical displays are currently considered secure. |
| state.displayName = std::move(info->name); |
| |
| sp<IBinder> token = new BBinder(); |
| mCurrentState.displays.add(token, state); |
| mPhysicalDisplayTokens.try_emplace(displayId, std::move(token)); |
| mInterceptor->saveDisplayCreation(state); |
| } else { |
| ALOGV("Recreating display %s", to_string(displayId).c_str()); |
| |
| auto& state = mCurrentState.displays.editValueFor(token->get()); |
| state.sequenceId = DisplayDeviceState{}.sequenceId; // Generate new sequenceId. |
| state.physical->supportedModes = std::move(supportedModes); |
| state.physical->activeMode = std::move(activeMode); |
| if (getHwComposer().updatesDeviceProductInfoOnHotplugReconnect()) { |
| state.physical->deviceProductInfo = std::move(info->deviceProductInfo); |
| } |
| } |
| } else { |
| ALOGV("Removing display %s", to_string(displayId).c_str()); |
| |
| if (const ssize_t index = mCurrentState.displays.indexOfKey(token->get()); index >= 0) { |
| const DisplayDeviceState& state = mCurrentState.displays.valueAt(index); |
| mInterceptor->saveDisplayDeletion(state.sequenceId); |
| mCurrentState.displays.removeItemsAt(index); |
| } |
| |
| mPhysicalDisplayTokens.erase(displayId); |
| } |
| |
| processDisplayChangesLocked(); |
| } |
| |
| mPendingHotplugEvents.clear(); |
| } |
| |
| void SurfaceFlinger::dispatchDisplayHotplugEvent(PhysicalDisplayId displayId, bool connected) { |
| ALOGI("Dispatching display hotplug event displayId=%s, connected=%d", |
| to_string(displayId).c_str(), connected); |
| mScheduler->onHotplugReceived(mAppConnectionHandle, displayId, connected); |
| mScheduler->onHotplugReceived(mSfConnectionHandle, displayId, connected); |
| } |
| |
| sp<DisplayDevice> SurfaceFlinger::setupNewDisplayDeviceInternal( |
| const wp<IBinder>& displayToken, |
| std::shared_ptr<compositionengine::Display> compositionDisplay, |
| const DisplayDeviceState& state, |
| const sp<compositionengine::DisplaySurface>& displaySurface, |
| const sp<IGraphicBufferProducer>& producer) { |
| DisplayDeviceCreationArgs creationArgs(this, getHwComposer(), displayToken, compositionDisplay); |
| creationArgs.sequenceId = state.sequenceId; |
| creationArgs.isSecure =<
|