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

Unified Diff: ui/ozone/platform/drm/gpu/drm_surface.cc

Issue 1518063002: Fix FNL Werror=maybe-unitialized and skia API changes in FNL build (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years 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 | « mojo/public/cpp/bindings/tests/array_unittest.cc ('k') | ui/ozone/platform/drm/gpu/drm_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/drm_surface.cc
diff --git a/ui/ozone/platform/drm/gpu/drm_surface.cc b/ui/ozone/platform/drm/gpu/drm_surface.cc
index 707f3c98477982e20b6fc0e6e406055261aac050..074ac5eb13ef76b3d3594bf9ce32edb6f72b5de3 100644
--- a/ui/ozone/platform/drm/gpu/drm_surface.cc
+++ b/ui/ozone/platform/drm/gpu/drm_surface.cc
@@ -90,7 +90,7 @@ void DrmSurface::SchedulePageFlip() {
RectToSkRect(UnionRects(pending_image_damage_, last_damage_));
// Copy damage region.
- canvas->drawImageRect(pending_image_.get(), &real_damage, real_damage, NULL);
+ canvas->drawImageRect(pending_image_.get(), real_damage, real_damage, NULL);
last_damage_ = pending_image_damage_;
pending_image_.clear();
« no previous file with comments | « mojo/public/cpp/bindings/tests/array_unittest.cc ('k') | ui/ozone/platform/drm/gpu/drm_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698