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

Unified Diff: ui/gfx/ozone/dri/dri_surface.cc

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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 | « ui/gfx/ozone/dri/dri_surface.h ('k') | ui/gfx/ozone/dri/dri_surface_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/ozone/dri/dri_surface.cc
diff --git a/ui/gfx/ozone/dri/dri_surface.cc b/ui/gfx/ozone/dri/dri_surface.cc
index d4200999d84022cf79a10d91c0ed89e5cde6b7bb..4d141d1c69e3e3f567038315f5133234f6e105f4 100644
--- a/ui/gfx/ozone/dri/dri_surface.cc
+++ b/ui/gfx/ozone/dri/dri_surface.cc
@@ -48,6 +48,13 @@ DriSurface::DriSurface(
}
DriSurface::~DriSurface() {
+ for (unsigned int i = 0; i < 2; ++i) {
+ // If the surface fails to initialize, it may not have all the buffers
+ // created. If we fail to register a framebuffer than there is no reason to
+ // unregister it.
+ if (bitmaps_[i] && bitmaps_[i]->get_framebuffer())
+ controller_->RemoveFramebuffer(bitmaps_[i]->get_framebuffer());
+ }
}
bool DriSurface::Initialize() {
@@ -62,6 +69,16 @@ bool DriSurface::Initialize() {
if (!bitmaps_[i]->Initialize()) {
return false;
}
+
+ uint32_t framebuffer = 0;
+ if (!controller_->AddFramebuffer(bitmaps_[i]->GetColorDepth(),
+ bitmaps_[i]->bytesPerPixel() << 3,
+ bitmaps_[i]->rowBytes(),
+ bitmaps_[i]->get_handle(),
+ &framebuffer)) {
+ return false;
+ }
+ bitmaps_[i]->set_framebuffer(framebuffer);
}
skia_device_ = skia::AdoptRef(
« no previous file with comments | « ui/gfx/ozone/dri/dri_surface.h ('k') | ui/gfx/ozone/dri/dri_surface_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698