blob: b313d331d59fd3ac076036bef00a5e964c2ab4fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "VideoLayerBridge.h"
#include "drm/DRMUtils.h"
#include "threads/CriticalSection.h"
#include "threads/SystemClock.h"
#include "windowing/WinSystem.h"
#include "platform/linux/input/LibInputHandler.h"
#include <utility>
#include <gbm.h>
class IDispResource;
namespace KODI
{
namespace WINDOWING
{
namespace GBM
{
class CWinSystemGbm : public CWinSystemBase
{
public:
CWinSystemGbm();
~CWinSystemGbm() override = default;
const std::string GetName() override { return "gbm"; }
bool InitWindowSystem() override;
bool DestroyWindowSystem() override;
bool ResizeWindow(int newWidth, int newHeight, int newLeft, int newTop) override;
bool SetFullScreen(bool fullScreen, RESOLUTION_INFO& res, bool blankOtherDisplays) override;
bool DisplayHardwareScalingEnabled() override;
void UpdateDisplayHardwareScaling(const RESOLUTION_INFO& resInfo) override;
void FlipPage(bool rendered, bool videoLayer);
bool CanDoWindowed() override { return false; }
void UpdateResolutions() override;
bool UseLimitedColor() override;
bool Hide() override;
bool Show(bool raise = true) override;
void Register(IDispResource* resource) override;
void Unregister(IDispResource* resource) override;
bool SetHDR(const VideoPicture* videoPicture) override;
bool IsHDRDisplay() override;
std::shared_ptr<CVideoLayerBridge> GetVideoLayerBridge() const { return m_videoLayerBridge; }
void RegisterVideoLayerBridge(std::shared_ptr<CVideoLayerBridge> bridge)
{
m_videoLayerBridge = std::move(bridge);
};
CGBMUtils::CGBMDevice* GetGBMDevice() const { return m_GBM->GetDevice(); }
std::shared_ptr<CDRMUtils> GetDrm() const { return m_DRM; }
std::vector<std::string> GetConnectedOutputs() override;
protected:
void OnLostDevice();
std::unique_ptr<CVideoSync> GetVideoSync(void* clock) override;
std::shared_ptr<CDRMUtils> m_DRM;
std::unique_ptr<CGBMUtils> m_GBM;
std::shared_ptr<CVideoLayerBridge> m_videoLayerBridge;
CCriticalSection m_resourceSection;
std::vector<IDispResource*> m_resources;
bool m_dispReset = false;
XbmcThreads::EndTime<> m_dispResetTimer;
std::unique_ptr<CLibInputHandler> m_libinput;
private:
uint32_t m_hdr_blob_id = 0;
};
}
}
}
|