1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21

cc / tiles / tile_manager_settings.h [blame]

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CC_TILES_TILE_MANAGER_SETTINGS_H_
#define CC_TILES_TILE_MANAGER_SETTINGS_H_

#include "cc/cc_export.h"

namespace cc {

struct CC_EXPORT TileManagerSettings {
  bool use_partial_raster = false;
  bool enable_checker_imaging = false;
  size_t min_image_bytes_to_checker = 1 * 1024 * 1024;
  bool needs_notify_ready_to_draw = true;
};

}  // namespace cc

#endif  // CC_TILES_TILE_MANAGER_SETTINGS_H_