attempt to use fbo clear function

This commit is contained in:
itsmattkc
2019-12-10 21:32:21 +11:00
parent 91c7d8aa4d
commit f5d66436fa
8 changed files with 13 additions and 32 deletions
+3 -3
View File
@@ -81,13 +81,13 @@ void VideoRenderBackend::InvalidateCache(const rational &start_range, const rati
rational compare = cache_queue_.at(i).in();
rational compare_diff = compare - last_time;
if (compare_diff > diff) {
cache_queue_.insert(i, new_range);
if (compare == r) {
added = true;
break;
}
if (compare == r) {
if (compare_diff > diff) {
cache_queue_.insert(i, new_range);
added = true;
break;
}