made updates to fix building

This commit is contained in:
utkarshgautamnyu 2017-09-28 11:12:26 -07:00
parent 290e3d307c
commit 463afd6be5
7 changed files with 77 additions and 80 deletions

View file

@ -235,8 +235,7 @@ void updateConsumedCores() {
AssetServer::AssetServer(ReceivedMessage& message) :
ThreadedAssignment(message),
_transferTaskPool(this),
_bakingTaskPool(this)
{
_bakingTaskPool(this) {
// store the current state of image compression so we can reset it when this assignment is complete
_wasColorTextureCompressionEnabled = image::isColorTexturesCompressionEnabled();
_wasGrayscaleTextureCompressionEnabled = image::isGrayscaleTexturesCompressionEnabled();

View file

@ -20,8 +20,7 @@
BakeAssetTask::BakeAssetTask(const AssetHash& assetHash, const AssetPath& assetPath, const QString& filePath) :
_assetHash(assetHash),
_assetPath(assetPath),
_filePath(filePath)
{
_filePath(filePath) {
}

View file

@ -18,8 +18,7 @@ const int ASCII_CHARACTERS_UPPER_LIMIT = 126;
JSBaker::JSBaker(const QUrl& jsURL, const QString& bakedOutputDir) :
_jsURL(jsURL),
_bakedOutputDir(bakedOutputDir)
{
_bakedOutputDir(bakedOutputDir) {
};