Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(424)

Side by Side Diff: cc/output/renderer_settings.cc

Issue 675083002: Add cc::RendererSettings for use in with cc::Display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 partial_swap_enabled(false),
17 should_clear_root_render_pass(true),
18 refresh_rate(60.0),
19 highp_threshold_min(0),
20 use_rgba_4444_textures(false),
21 texture_id_allocation_chunk_size(64) {
22 }
23
24 RendererSettings::~RendererSettings() {
25 }
26
27 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698