Skip to content

Commit

Permalink
Relocate the render aspect outside of core
Browse files Browse the repository at this point in the history
Change-Id: I636442d2d71342fd248b90674176cede895feab2
Reviewed-by: Sean Harmer <[email protected]>
  • Loading branch information
seanharmer authored and The Qt Project committed Mar 29, 2014
1 parent 6b9ff7a commit 39a3a07
Show file tree
Hide file tree
Showing 131 changed files with 9 additions and 9 deletions.
3 changes: 3 additions & 0 deletions qt3d.pro
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ load(qt_parts)
contains(QT_CONFIG, opengles1) {
error("Qt3D does not support OpenGL ES 1!")
}

OTHER_FILES += \
sync.profile
6 changes: 1 addition & 5 deletions src/core/aspects/qaspectmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

#include "qaspectmanager.h"

#include "rendereraspect.h"
#include "abstractaspect.h"
#include "qchangearbiter.h"
// TODO Make the kind of job manager configurable (e.g. ThreadWeaver vs Intel TBB)
#include "qjobmanager.h"
Expand All @@ -52,21 +52,17 @@
#include <node.h>
#include <entity.h>
#include <camera.h>
#include <scene.h>
#include <matrixtransform.h>
#include <rotatetransform.h>
#include <translatetransform.h>
#include <lookattransform.h>
#include <scaletransform.h>

#include <QDebug>
#include <QElapsedTimer>
#include <QEventLoop>
#include <QThread>
#include <QWaitCondition>
#include <QWindow>
#include <QPluginLoader>
#include <QDir>
#include <QtQml>

namespace Qt3D {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/core/render/render.pro → src/render/render.pro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ load(qt_module)
include (backend/render-backend.pri)
include (frontend/render-frontend.pri)
include (io/render-io.pri)
include(../../3rdparty/assimp/assimp.pri)
include(../3rdparty/assimp/assimp.pri)


RESOURCES += $$PWD/render.qrc
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions src/src.pro
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS += core \
core/render
SUBDIRS += \
core \
render
2 changes: 1 addition & 1 deletion sync.profile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%modules = ( # path to module name map
"Qt3DCore" => "$basedir/src/core",
"Qt3DRenderer" => "$basedir/src/core/render",
"Qt3DRenderer" => "$basedir/src/render",
);
%moduleheaders = ( # restrict the module headers to those found in relative path
);
Expand Down

0 comments on commit 39a3a07

Please sign in to comment.