mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-22 04:49:12 -06:00
Rename 'slave' to 'client' in the remaining code
This commit is contained in:
@@ -57,7 +57,7 @@ public:
|
||||
|
||||
/**
|
||||
* Decodes the <code>SyncBuffer</code> into the added Syncables.
|
||||
* This method is only called on the SGCT slave nodes
|
||||
* This method is only called on the SGCT client nodes
|
||||
*/
|
||||
void decodeSyncables(std::vector<std::byte> data);
|
||||
|
||||
|
||||
@@ -172,7 +172,7 @@ private:
|
||||
|
||||
ghoul::opengl::OpenGLStateCache* _openglStateCache = nullptr;
|
||||
|
||||
properties::BoolProperty _showOverlayOnSlaves;
|
||||
properties::BoolProperty _showOverlayOnClients;
|
||||
properties::BoolProperty _showLog;
|
||||
properties::FloatProperty _verticalLogOffset;
|
||||
properties::BoolProperty _showVersionInfo;
|
||||
|
||||
@@ -115,10 +115,10 @@ private:
|
||||
|
||||
std::queue<QueueItem> _incomingScripts;
|
||||
|
||||
// Slave scripts are mutex protected since decode and rendering may
|
||||
// happen asynchronously.
|
||||
std::mutex _slaveScriptsMutex;
|
||||
std::queue<std::string> _slaveScriptQueue;
|
||||
// Client scripts are mutex protected since decode and rendering may happen
|
||||
// asynchronously
|
||||
std::mutex _clientScriptsMutex;
|
||||
std::queue<std::string> _clientScriptQueue;
|
||||
std::queue<QueueItem> _masterScriptQueue;
|
||||
|
||||
std::vector<std::string> _scriptsToSync;
|
||||
|
||||
Reference in New Issue
Block a user