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

Unified Diff: cc/output/direct_renderer.h

Issue 2646243002: Use IDCompositionSurface to implement DirectCompositionSurfaceWin. (Closed)
Patch Set: better Created 3 years, 10 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 | « no previous file | cc/output/direct_renderer.cc » ('j') | gpu/ipc/service/direct_composition_surface_win.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/direct_renderer.h
diff --git a/cc/output/direct_renderer.h b/cc/output/direct_renderer.h
index d08d58d59e71297435ad048252eaea9b8f9e6142..e6a76003895db80c72a121f71ae69f1827602bb1 100644
--- a/cc/output/direct_renderer.h
+++ b/cc/output/direct_renderer.h
@@ -185,12 +185,15 @@ class CC_EXPORT DirectRenderer {
// Whether it's valid to SwapBuffers with an empty rect. Trivially true when
// using partial swap.
- bool allow_empty_swap_;
+ bool allow_empty_swap_ = false;
// Whether partial swap can be used.
- bool use_partial_swap_;
+ bool use_partial_swap_ = false;
// Whether overdraw feedback is enabled and can be used.
bool overdraw_feedback_ = false;
+ // Whether the SetDrawRectangle command is in use.
+ bool use_set_draw_rectangle_ = false;
+
// TODO(danakj): Just use a vector of pairs here? Hash map is way overkill.
std::unordered_map<int, std::unique_ptr<ScopedResource>>
render_pass_textures_;
« no previous file with comments | « no previous file | cc/output/direct_renderer.cc » ('j') | gpu/ipc/service/direct_composition_surface_win.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698