You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
/* |
|
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include "renderloop.h" |
|
#include "renderjournal.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; |
|
bool hasFullscreenSurface = false; |
|
|
|
enum class SyncMode { |
|
Fixed, |
|
Adaptive, |
|
}; |
|
SyncMode presentMode = SyncMode::Fixed; |
|
}; |
|
|
|
} // namespace KWin
|
|
|