mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
code review, remove some unneeded automoc includes
This commit is contained in:
parent
cb04894e33
commit
bbe9b5c26f
8 changed files with 3 additions and 14 deletions
|
@ -445,5 +445,3 @@ void GraphicsScriptingInterface::registerMetaTypes(QScriptEngine* engine) {
|
|||
|
||||
Q_UNUSED(metaTypeIds);
|
||||
}
|
||||
|
||||
#include "GraphicsScriptingInterface.moc"
|
||||
|
|
|
@ -401,6 +401,3 @@ scriptable::ScriptableMesh::~ScriptableMesh() {
|
|||
#endif
|
||||
strongMesh.reset();
|
||||
}
|
||||
|
||||
#include "ScriptableMesh.moc"
|
||||
|
||||
|
|
|
@ -240,5 +240,3 @@ glm::uint32 scriptable::ScriptableModel::forEachVertexAttribute(QScriptValue cal
|
|||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
#include "ScriptableModel.moc"
|
||||
|
|
|
@ -207,7 +207,7 @@ bool OffscreenUi::isPointOnDesktopWindow(QVariant point) {
|
|||
void OffscreenUi::hide(const QString& name) {
|
||||
auto rootItem = getRootItem();
|
||||
if (rootItem) {
|
||||
QQuickItem* item = getRootItem()->findChild<QQuickItem*>(name);
|
||||
QQuickItem* item = rootItem->findChild<QQuickItem*>(name);
|
||||
if (item) {
|
||||
QQmlProperty(item, OFFSCREEN_VISIBILITY_PROPERTY).write(false);
|
||||
}
|
||||
|
|
|
@ -169,5 +169,3 @@ int main(int argc, char** argv) {
|
|||
qDebug() << (duration / 1000.0f);
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include "main.moc"
|
||||
|
|
|
@ -85,7 +85,7 @@ class MyTestWindow : public TestWindow {
|
|||
|
||||
void updateCamera() {
|
||||
float t = _time.elapsed() * 1e-3f;
|
||||
glm::vec3 up{ 0.0f, 1.0f, 0.0f };
|
||||
static const glm::vec3 up{ 0.0f, 1.0f, 0.0f };
|
||||
|
||||
float distance = 3.0f;
|
||||
glm::vec3 camera_position{ distance * sinf(t), 0.5f, distance * cosf(t) };
|
||||
|
|
|
@ -102,7 +102,7 @@ class MyTestWindow : public TestWindow {
|
|||
#ifdef INTERACTIVE
|
||||
t = _time.elapsed() * 1e-3f;
|
||||
#endif
|
||||
glm::vec3 up { 0.0f, 1.0f, 0.0f };
|
||||
static const glm::vec3 up { 0.0f, 1.0f, 0.0f };
|
||||
|
||||
float distance = 3.0f;
|
||||
glm::vec3 camera_position { distance * sinf(t), 0.5f, distance * cosf(t) };
|
||||
|
|
|
@ -1103,5 +1103,3 @@ int main(int argc, char** argv) {
|
|||
app.exec();
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include "main.moc"
|
||||
|
|
Loading…
Reference in a new issue