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

Unified Diff: cc/output/renderer_settings.h

Issue 754433003: Update from https://crrev.com/305340 (Closed) Base URL: git@github.com:domokit/mojo.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/output/renderer.h ('k') | cc/output/renderer_settings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/renderer_settings.h
diff --git a/cc/output/renderer_settings.h b/cc/output/renderer_settings.h
new file mode 100644
index 0000000000000000000000000000000000000000..748d2306cc13c3a6601d406d00be22198feb9f65
--- /dev/null
+++ b/cc/output/renderer_settings.h
@@ -0,0 +1,31 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_OUTPUT_RENDERER_SETTINGS_H_
+#define CC_OUTPUT_RENDERER_SETTINGS_H_
+
+#include "base/basictypes.h"
+#include "cc/base/cc_export.h"
+
+namespace cc {
+
+class CC_EXPORT RendererSettings {
+ public:
+ RendererSettings();
+ ~RendererSettings();
+
+ bool allow_antialiasing;
+ bool force_antialiasing;
+ bool force_blending_with_shaders;
+ bool partial_swap_enabled;
+ bool should_clear_root_render_pass;
+ double refresh_rate;
+ int highp_threshold_min;
+ bool use_rgba_4444_textures;
+ size_t texture_id_allocation_chunk_size;
+};
+
+} // namespace cc
+
+#endif // CC_OUTPUT_RENDERER_SETTINGS_H_
« no previous file with comments | « cc/output/renderer.h ('k') | cc/output/renderer_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698