mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-09 13:59:39 +02:00
made updates to fix building
This commit is contained in:
parent
290e3d307c
commit
463afd6be5
7 changed files with 77 additions and 80 deletions
|
@ -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();
|
||||
|
|
|
@ -20,8 +20,7 @@
|
|||
BakeAssetTask::BakeAssetTask(const AssetHash& assetHash, const AssetPath& assetPath, const QString& filePath) :
|
||||
_assetHash(assetHash),
|
||||
_assetPath(assetPath),
|
||||
_filePath(filePath)
|
||||
{
|
||||
_filePath(filePath) {
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue