[M108 Migration][VD] Avoid pending frame counter becoming negative
[platform/framework/web/chromium-efl.git] / cc / tiles / tile_manager_settings.h
1 // Copyright 2017 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_TILES_TILE_MANAGER_SETTINGS_H_
6 #define CC_TILES_TILE_MANAGER_SETTINGS_H_
7
8 #include "cc/cc_export.h"
9
10 namespace cc {
11
12 struct CC_EXPORT TileManagerSettings {
13   bool use_partial_raster = false;
14   bool enable_checker_imaging = false;
15   size_t min_image_bytes_to_checker = 1 * 1024 * 1024;
16   bool needs_notify_ready_to_draw = true;
17 };
18
19 }  // namespace cc
20
21 #endif  // CC_TILES_TILE_MANAGER_SETTINGS_H_