mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-07-07 03:25:24 +08:00
22 lines
526 B
C++
22 lines
526 B
C++
#include "FpsItem.h"
|
|
|
|
#include <QTimer>
|
|
#include <QQuickWindow>
|
|
|
|
FpsItem::FpsItem() {
|
|
_fps = 0;
|
|
auto *timer = new QTimer(this);
|
|
connect(timer, &QTimer::timeout, this, [this] {
|
|
fps(_frameCount);
|
|
_frameCount = 0;
|
|
});
|
|
connect(this, &QQuickItem::windowChanged, this, [this] {
|
|
if (window()) {
|
|
connect(
|
|
window(), &QQuickWindow::afterRendering, this, [this] { _frameCount++; },
|
|
Qt::DirectConnection);
|
|
}
|
|
});
|
|
timer->start(1000);
|
|
}
|