mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-21 12:29:04 -06:00
Merge commit '5c45815b9c509cbf98d1f3c7ad1e6035c4962a81' into feature/remote_redesign
This commit is contained in:
@@ -40,7 +40,7 @@ include(${OPENSPACE_EXT_DIR}/ghoul/ext/CopySharedLibraries.cmake)
|
||||
test_compiler_compatibility()
|
||||
cleanup_project()
|
||||
set_build_output_directories()
|
||||
configure_openspace_version(0 1 0 "prerelease-5")
|
||||
configure_openspace_version(0 1 1 "prerelease-6")
|
||||
|
||||
option(OPENSPACE_WARNINGS_AS_ERRORS "Treat warnings as errors" OFF)
|
||||
option(OPENSPACE_DISABLE_EXTERNAL_WARNINGS "Disable warnings in external libraries" ON)
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
namespace {
|
||||
const std::string _loggerCat = "SyncWidget";
|
||||
|
||||
const std::string _configurationFile = "libtorrent.config";
|
||||
const std::string _configurationFile = "Launcher.config";
|
||||
|
||||
const int nColumns = 3;
|
||||
|
||||
|
||||
@@ -268,6 +268,10 @@ void mainDecodeFun() {
|
||||
|
||||
void mainLogCallback(const char* msg){
|
||||
std::string message = msg;
|
||||
if (message == ".")
|
||||
// We don't want the empty '.' message that SGCT sends while it is waiting for
|
||||
// connections from other network nodes
|
||||
return;
|
||||
// Remove the trailing \n that is passed along
|
||||
LINFOC("SGCT", message.substr(0, std::max<size_t>(message.size() - 1, 0)));
|
||||
}
|
||||
|
||||
Submodule ext/ghoul updated: f87ad95260...310b4ece36
@@ -226,7 +226,7 @@ std::vector<DownloadManager::FileFuture*> DownloadManager::downloadRequestFiles(
|
||||
int nFinished = 0;
|
||||
while (std::getline(temporary, line)) {
|
||||
++nFiles;
|
||||
std::string file = ghoul::filesystem::File(line).filename();
|
||||
std::string file = ghoul::filesystem::File(line, true).filename();
|
||||
|
||||
LDEBUG("\tLine: " << line << " ; Dest: " << destination.path() + "/" + file);
|
||||
|
||||
|
||||
@@ -178,12 +178,12 @@ bool RenderEngine::initialize() {
|
||||
_mainCamera->setPosition(psc(0.f, 0.f, 1.499823f, 11.f));
|
||||
OsEng.interactionHandler()->setCamera(_mainCamera);
|
||||
|
||||
#ifdef GHOUL_USE_FREEIMAGE
|
||||
ghoul::io::TextureReader::ref().addReader(new ghoul::io::impl::TextureReaderFreeImage);
|
||||
#endif // GHOUL_USE_FREEIMAGE
|
||||
#ifdef GHOUL_USE_DEVIL
|
||||
ghoul::io::TextureReader::ref().addReader(new ghoul::io::impl::TextureReaderDevIL);
|
||||
#endif // GHOUL_USE_DEVIL
|
||||
#ifdef GHOUL_USE_FREEIMAGE
|
||||
ghoul::io::TextureReader::ref().addReader(new ghoul::io::impl::TextureReaderFreeImage);
|
||||
#endif // GHOUL_USE_FREEIMAGE
|
||||
|
||||
ghoul::io::TextureReader::ref().addReader(new ghoul::io::impl::TextureReaderCMAP);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user