Removed unused library

This commit is contained in:
utkarshgautamnyu 2017-10-25 19:52:37 -07:00
parent 6c553e5923
commit 2fa7c0a07d
3 changed files with 1 additions and 13 deletions

View file

@ -51,16 +51,6 @@ FBXBaker::~FBXBaker() {
}
}
//void FBXBaker::abort() {
// Baker::abort();
//
// // tell our underlying TextureBaker instances to abort
// // the FBXBaker will wait until all are aborted before emitting its own abort signal
// for (auto& textureBaker : bakingTextures) {
// textureBaker->abort();
// }
//}
void FBXBaker::bake() {
qDebug() << "FBXBaker" << modelURL << "bake starting";

View file

@ -42,7 +42,6 @@ public:
public slots:
virtual void bake() override;
//virtual void abort() override;
signals:
void sourceCopyReadyToLoad();

View file

@ -11,7 +11,6 @@
#include "ModelBaker.h"
#include <image\Image.h>
#include <PathUtils.h>
#include <FBXReader.h>
@ -45,7 +44,7 @@ void ModelBaker::abort() {
Baker::abort();
// tell our underlying TextureBaker instances to abort
// the FBXBaker will wait until all are aborted before emitting its own abort signal
// the ModelBaker will wait until all are aborted before emitting its own abort signal
for (auto& textureBaker : bakingTextures) {
textureBaker->abort();
}