Cherrypick remaining changes from the feature/catch2 branch sans the big switch to SGCT 3.0

This commit is contained in:
Alexander Bock
2020-02-11 00:21:42 +01:00
parent 9cb1169d58
commit c8799dcc80
25 changed files with 92 additions and 63 deletions
@@ -96,13 +96,9 @@ struct WindowDelegate {
glm::ivec4 (*viewportPixelCoordinates)() = []() { return glm::ivec4(0, 0, 0, 0); };
bool (*isExternalControlConnected)() = []() { return false; };
void (*sendMessageToExternalControl)(const std::vector<char>& message) =
[](const std::vector<char>&) {};
bool (*isSimpleRendering)() = []() { return true; };
bool (*isFisheyeRendering)() = []() { return false; };
unsigned int(*takeScreenshot)(bool applyWarping) = [](bool) { return 0u; };
+1 -1
View File
@@ -61,7 +61,7 @@ class AssetListener;
class AssetLoader {
public:
AssetLoader(ghoul::lua::LuaState& luaState, SynchronizationWatcher* syncWatcher,
AssetLoader(ghoul::lua::LuaState* luaState, SynchronizationWatcher* syncWatcher,
std::string assetRootDirectory);
~AssetLoader();