OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "cc/output/renderer_settings.h" |
| 6 |
| 7 #include <limits> |
| 8 |
| 9 #include "base/logging.h" |
| 10 |
| 11 namespace cc { |
| 12 |
| 13 RendererSettings::RendererSettings() |
| 14 : allow_antialiasing(true), |
| 15 force_antialiasing(false), |
| 16 force_blending_with_shaders(false), |
| 17 partial_swap_enabled(false), |
| 18 should_clear_root_render_pass(true), |
| 19 refresh_rate(60.0), |
| 20 highp_threshold_min(0), |
| 21 use_rgba_4444_textures(false), |
| 22 texture_id_allocation_chunk_size(64) { |
| 23 } |
| 24 |
| 25 RendererSettings::~RendererSettings() { |
| 26 } |
| 27 |
| 28 } // namespace cc |
OLD | NEW |