Files
Ashley Hale d4445a3946 Bug 2055054 - query HDR display information and show it in about:support r=gfx-reviewers,geckoview-reviewers,win-reviewers,bradwerth,nalexander,yjuglaret
This also fixes a bug in initializing MaxContentLightLevel but we currently aren't using that value so it does not change observed behavior.

Differential Revision: https://phabricator.services.mozilla.com/D312205
2026-07-20 09:55:53 +00:00

92 lines
2.9 KiB
C++

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_widget_Screen_h
#define mozilla_widget_Screen_h
#include "Units.h"
#include "mozilla/HalScreenConfiguration.h" // For hal::ScreenOrientation
#include "nsIScreen.h"
namespace mozilla {
namespace dom {
class ScreenDetails;
} // namespace dom
namespace widget {
class Screen final : public nsIScreen {
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISCREEN
using OrientationAngle = uint16_t;
enum class IsPseudoDisplay : bool { No, Yes };
enum class IsHDR : bool { No, Yes };
Screen(LayoutDeviceIntRect aRect, LayoutDeviceIntRect aAvailRect,
uint32_t aPixelDepth, uint32_t aColorDepth, uint32_t aRefreshRate,
DesktopToLayoutDeviceScale aContentsScale,
CSSToLayoutDeviceScale aDefaultCssScale, float aDpi,
IsPseudoDisplay aIsPseudoDisplay, IsHDR aIsHDR,
float aSDRContentBrightness, float aHDRPeakBrightness,
hal::ScreenOrientation = hal::ScreenOrientation::None,
OrientationAngle = 0);
explicit Screen(const dom::ScreenDetails& aScreenDetails);
Screen(const Screen& aOther);
dom::ScreenDetails ToScreenDetails() const;
OrientationAngle GetOrientationAngle() const { return mOrientationAngle; }
hal::ScreenOrientation GetOrientationType() const {
return mScreenOrientation;
}
/**
* Return default orientation type that angle is 0.
* This returns LandscapePrimary or PortraitPrimary.
*/
hal::ScreenOrientation GetDefaultOrientationType() const;
float GetDPI() const { return mDPI; }
const LayoutDeviceIntRect& GetRect() const { return mRect; }
const LayoutDeviceIntRect& GetAvailRect() const { return mAvailRect; }
const DesktopToLayoutDeviceScale& GetContentsScaleFactor() const {
return mContentsScale;
}
enum class IncludeOSZoom : bool { No, Yes };
CSSToLayoutDeviceScale GetCSSToLayoutDeviceScale(IncludeOSZoom) const;
bool GetIsHDR() const { return mIsHDR; }
float GetSDRContentBrightness() const { return mSDRContentBrightness; }
float GetHDRPeakBrightness() const { return mHDRPeakBrightness; }
private:
virtual ~Screen() = default;
const LayoutDeviceIntRect mRect;
const LayoutDeviceIntRect mAvailRect;
const DesktopIntRect mRectDisplayPix;
const DesktopIntRect mAvailRectDisplayPix;
const uint32_t mPixelDepth;
const uint32_t mColorDepth;
const uint32_t mRefreshRate;
const DesktopToLayoutDeviceScale mContentsScale;
const CSSToLayoutDeviceScale mDefaultCssScale;
const float mDPI;
const hal::ScreenOrientation mScreenOrientation;
const OrientationAngle mOrientationAngle;
const bool mIsPseudoDisplay;
const bool mIsHDR;
const float mSDRContentBrightness;
const float mHDRPeakBrightness;
};
} // namespace widget
} // namespace mozilla
#endif