Skip to content
Snippets Groups Projects
Commit 70a872c4 authored by Richard Linden's avatar Richard Linden
Browse files

EXP-700 WIP SLPlugin(s) takes high CPU%

clamp maximum framerate of slplugin to 100Hz
also added assert to catch cases where we're requesting infinite framerate
parent c7a2f5c4
No related branches found
No related tags found
No related merge requests found
...@@ -410,7 +410,7 @@ void LLPluginProcessChild::receiveMessageRaw(const std::string &message) ...@@ -410,7 +410,7 @@ void LLPluginProcessChild::receiveMessageRaw(const std::string &message)
} }
else if(message_name == "sleep_time") else if(message_name == "sleep_time")
{ {
mSleepTime = parsed.getValueReal("time"); mSleepTime = llmax(parsed.getValueReal("time"), 1.0 / 100.0); // clamp to maximum of 100Hz
} }
else if(message_name == "crash") else if(message_name == "crash")
{ {
......
...@@ -927,6 +927,7 @@ void LLPluginProcessParent::receiveMessage(const LLPluginMessage &message) ...@@ -927,6 +927,7 @@ void LLPluginProcessParent::receiveMessage(const LLPluginMessage &message)
} }
// Send initial sleep time // Send initial sleep time
llassert_always(mSleepTime != 0.f);
setSleepTime(mSleepTime, true); setSleepTime(mSleepTime, true);
setState(STATE_RUNNING); setState(STATE_RUNNING);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment