[M108 Migration][VD] Avoid pending frame counter becoming negative
[platform/framework/web/chromium-efl.git] / cc / tiles / tiling_set_raster_queue_required.cc
index 8fba912..0679098 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
+// Copyright 2014 The Chromium Authors
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
@@ -105,7 +105,7 @@ TilingSetRasterQueueRequired::TilingIterator::TilingIterator(
   if (tile && tile->draw_info().NeedsRaster() &&
       !tiling_->IsTileOccluded(tile)) {
     current_tile_ = tiling_->MakePrioritizedTile(
-        tile, tiling_->ComputePriorityRectTypeForTile(tile));
+        tile, tiling_->ComputePriorityRectTypeForTile(tile), false);
     return;
   }
   ++(*this);
@@ -143,7 +143,7 @@ TilingSetRasterQueueRequired::TilingIterator&
   }
 
   current_tile_ = tiling_->MakePrioritizedTile(
-      tile, tiling_->ComputePriorityRectTypeForTile(tile));
+      tile, tiling_->ComputePriorityRectTypeForTile(tile), false);
   return *this;
 }