mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
More unused
This commit is contained in:
parent
17edd38cb9
commit
b63df98b8b
2 changed files with 2 additions and 5 deletions
|
@ -33,7 +33,6 @@
|
|||
#include <QObject>
|
||||
#include <QWheelEvent>
|
||||
#include <QScreen>
|
||||
#include <QShortcut>
|
||||
#include <QTimer>
|
||||
#include <QUrl>
|
||||
#include <QWindow>
|
||||
|
@ -951,11 +950,11 @@ void Application::initializeGL() {
|
|||
_entityEditSender.initialize(_enableProcessOctreeThread);
|
||||
|
||||
// call our timer function every second
|
||||
connect(&checkFPStimer, &QTimer::timeout, &Application::checkFPS);
|
||||
connect(&checkFPStimer, &QTimer::timeout, this, &Application::checkFPS);
|
||||
checkFPStimer.start(1000);
|
||||
|
||||
// call our idle function whenever we can
|
||||
connect(&idleTimer, &QTimer::timeout, &Application::idle);
|
||||
connect(&idleTimer, &QTimer::timeout, this, &Application::idle);
|
||||
idleTimer.start(TARGET_SIM_FRAME_PERIOD_MS);
|
||||
_idleLoopStdev.reset();
|
||||
|
||||
|
|
|
@ -37,7 +37,6 @@
|
|||
#include <ViewFrustum.h>
|
||||
#include <SimpleMovingAverage.h>
|
||||
|
||||
|
||||
#include "Bookmarks.h"
|
||||
#include "Camera.h"
|
||||
#include "Environment.h"
|
||||
|
@ -119,7 +118,6 @@ public:
|
|||
QSize getDeviceSize() const;
|
||||
bool hasFocus() const;
|
||||
PickRay computePickRay() const;
|
||||
PickRay computeViewPickRay(float xRatio, float yRatio) const;
|
||||
|
||||
bool isThrottleRendering() const;
|
||||
|
||||
|
|
Loading…
Reference in a new issue