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

Unified Diff: ui/gl/gl_surface.cc

Issue 14189031: Merge 195349 "Reland "gpu: Fix Vivante's "hisilicon" GPUs"" (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1453/src/
Patch Set: Created 7 years, 8 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/gl/gl_surface.h ('k') | ui/gl/gl_surface_egl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_surface.cc
===================================================================
--- ui/gl/gl_surface.cc (revision 195901)
+++ ui/gl/gl_surface.cc (working copy)
@@ -84,6 +84,11 @@
return false;
}
+bool GLSurface::Recreate() {
+ NOTIMPLEMENTED();
+ return false;
+}
+
bool GLSurface::DeferDraws() {
return false;
}
@@ -185,6 +190,10 @@
return surface_->Resize(size);
}
+bool GLSurfaceAdapter::Recreate() {
+ return surface_->Recreate();
+}
+
bool GLSurfaceAdapter::DeferDraws() {
return surface_->DeferDraws();
}
« no previous file with comments | « ui/gl/gl_surface.h ('k') | ui/gl/gl_surface_egl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698