7096e3ead8
The .clang-format file is based on the one in ECM except the following style options: - AlwaysBreakBeforeMultilineStrings - BinPackArguments - BinPackParameters - ColumnLimit - BreakBeforeBraces - KeepEmptyLinesAtTheStartOfBlocks
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "renderjournal.h"
|
|
#include "renderloop.h"
|
|
|
|
#include <QTimer>
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
class KWIN_EXPORT RenderLoopPrivate
|
|
{
|
|
public:
|
|
static RenderLoopPrivate *get(RenderLoop *loop);
|
|
explicit RenderLoopPrivate(RenderLoop *q);
|
|
|
|
void dispatch();
|
|
void invalidate();
|
|
|
|
void delayScheduleRepaint();
|
|
void scheduleRepaint();
|
|
void maybeScheduleRepaint();
|
|
|
|
void notifyFrameFailed();
|
|
void notifyFrameCompleted(std::chrono::nanoseconds timestamp);
|
|
|
|
RenderLoop *q;
|
|
std::chrono::nanoseconds lastPresentationTimestamp = std::chrono::nanoseconds::zero();
|
|
std::chrono::nanoseconds nextPresentationTimestamp = std::chrono::nanoseconds::zero();
|
|
QTimer compositeTimer;
|
|
RenderJournal renderJournal;
|
|
int refreshRate = 60000;
|
|
int pendingFrameCount = 0;
|
|
int inhibitCount = 0;
|
|
bool pendingReschedule = false;
|
|
bool pendingRepaint = false;
|
|
RenderLoop::VrrPolicy vrrPolicy = RenderLoop::VrrPolicy::Never;
|
|
Item *fullscreenItem = nullptr;
|
|
|
|
enum class SyncMode {
|
|
Fixed,
|
|
Adaptive,
|
|
};
|
|
SyncMode presentMode = SyncMode::Fixed;
|
|
};
|
|
|
|
} // namespace KWin
|