From 9e3c08db40b8916968b9f30096c7be3f00ce9647 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:44:51 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- gfx/thebes/gfxPlatformGtk.h | 81 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 gfx/thebes/gfxPlatformGtk.h (limited to 'gfx/thebes/gfxPlatformGtk.h') diff --git a/gfx/thebes/gfxPlatformGtk.h b/gfx/thebes/gfxPlatformGtk.h new file mode 100644 index 0000000000..ffcd5e43e6 --- /dev/null +++ b/gfx/thebes/gfxPlatformGtk.h @@ -0,0 +1,81 @@ +/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * 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 GFX_PLATFORM_GTK_H +#define GFX_PLATFORM_GTK_H + +#include "gfxPlatform.h" +#include "nsAutoRef.h" +#include "nsTArray.h" +#include "mozilla/gfx/gfxVars.h" + +#ifdef MOZ_X11 +struct _XDisplay; +typedef struct _XDisplay Display; +#endif // MOZ_X11 + +class gfxPlatformGtk final : public gfxPlatform { + friend class gfxPlatform; + + public: + gfxPlatformGtk(); + virtual ~gfxPlatformGtk(); + + static gfxPlatformGtk* GetPlatform() { + return (gfxPlatformGtk*)gfxPlatform::GetPlatform(); + } + + void ReadSystemFontList(mozilla::dom::SystemFontList* retValue) override; + + already_AddRefed CreateOffscreenSurface( + const IntSize& aSize, gfxImageFormat aFormat) override; + + nsresult GetFontList(nsAtom* aLangGroup, const nsACString& aGenericFamily, + nsTArray& aListOfFonts) override; + + void GetCommonFallbackFonts(uint32_t aCh, Script aRunScript, + eFontPresentation aPresentation, + nsTArray& aFontList) override; + + bool CreatePlatformFontList() override; + + static int32_t GetFontScaleDPI(); + static double GetFontScaleFactor(); + + gfxImageFormat GetOffscreenFormat() override; + + bool SupportsApzWheelInput() const override { return true; } + + void FontsPrefsChanged(const char* aPref) override; + + bool SupportsPluginDirectBitmapDrawing() override { return true; } + + bool AccelerateLayersByDefault() override; + + already_AddRefed CreateGlobalHardwareVsyncSource() + override; + + bool IsX11Display() { return mIsX11Display; } + bool IsWaylandDisplay() override { + return !mIsX11Display && !gfxPlatform::IsHeadless(); + } + + static bool CheckVariationFontSupport(); + + protected: + void InitX11EGLConfig(); + void InitDmabufConfig(); + bool InitVAAPIConfig(bool aForceEnabledByUser); + void InitPlatformGPUProcessPrefs() override; + void InitWebRenderConfig() override; + void BuildContentDeviceData(mozilla::gfx::ContentDeviceData* aOut) override; + + private: + nsTArray GetPlatformCMSOutputProfileData() override; + + bool mIsX11Display; +}; + +#endif /* GFX_PLATFORM_GTK_H */ -- cgit v1.2.3