朱子楚\zhuzi a3f375c9ef update
2024-04-11 14:51:43 +08:00

20 lines
493 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);
}