fixed bug where an unindexed video would cache a blank first frame

This commit is contained in:
itsmattkc
2019-09-10 19:12:19 +10:00
parent 4c40475a6c
commit 69ca2b2a50
7 changed files with 14 additions and 6 deletions
+5
View File
@@ -287,6 +287,11 @@ const rational &NodeParam::LastRequestedTime()
return time_;
}
bool NodeParam::ValueCachingEnabled()
{
return value_caching_;
}
void NodeParam::SetValueCachingEnabled(bool enabled)
{
value_caching_ = enabled;