Removed KRContext::getStreamingEnabled and KRContext::setStreamingEnabled, as streaming is always enabled in the runtime now. m_streamingEnabled remains as a signal that the managers have completed loading and that streaming should start.

This commit is contained in:
2022-07-11 22:27:44 -07:00
parent fed12dbc96
commit 4bc44a8e52
3 changed files with 2 additions and 16 deletions

View File

@@ -621,17 +621,6 @@ long KRContext::getAbsoluteTimeMilliseconds()
#endif
}
bool KRContext::getStreamingEnabled()
{
return m_streamingEnabled;
}
void KRContext::setStreamingEnabled(bool enable)
{
m_streamingEnabled = enable;
}
#if TARGET_OS_IPHONE || TARGET_OS_MAC
void KRContext::getMemoryStats(long &free_memory)