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

Unified Diff: cc/output/renderer_settings.cc

Issue 2612023002: cc: Implement overdraw feedback debugging feature. (Closed)
Patch Set: make sure overdraw_feedback_ is initialized and reset properly Created 3 years, 11 months 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_settings.h ('k') | cc/test/data/translucent_rectangles.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/renderer_settings.cc
diff --git a/cc/output/renderer_settings.cc b/cc/output/renderer_settings.cc
index c4125954ec51f2801b6e81490bb82e887657f49f..6ba4b48ca3fb1be51c655eed0d681804240fe46c 100644
--- a/cc/output/renderer_settings.cc
+++ b/cc/output/renderer_settings.cc
@@ -21,6 +21,7 @@ RendererSettings::RendererSettings()
disable_display_vsync(false),
release_overlay_resources_after_gpu_query(false),
gl_composited_texture_quad_border(false),
+ show_overdraw_feedback(false),
refresh_rate(60.0),
highp_threshold_min(0),
texture_id_allocation_chunk_size(64),
@@ -42,6 +43,9 @@ bool RendererSettings::operator==(const RendererSettings& other) const {
disable_display_vsync == other.disable_display_vsync &&
release_overlay_resources_after_gpu_query ==
other.release_overlay_resources_after_gpu_query &&
+ gl_composited_texture_quad_border ==
+ other.gl_composited_texture_quad_border &&
+ show_overdraw_feedback == other.show_overdraw_feedback &&
refresh_rate == other.refresh_rate &&
highp_threshold_min == other.highp_threshold_min &&
texture_id_allocation_chunk_size ==
« no previous file with comments | « cc/output/renderer_settings.h ('k') | cc/test/data/translucent_rectangles.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698