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

Unified Diff: ui/gl/gl_surface.cc

Issue 2347383002: X11: Use better visuals for OpenGL (Closed)
Patch Set: auto* Created 4 years, 3 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.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_surface.cc
diff --git a/ui/gl/gl_surface.cc b/ui/gl/gl_surface.cc
index a457ea32a579a1fee52786d2010bc49be72800fe..7fcb093c9f6434d524d5f4d41f9b90f87c68b546 100644
--- a/ui/gl/gl_surface.cc
+++ b/ui/gl/gl_surface.cc
@@ -130,6 +130,10 @@ void* GLSurface::GetConfig() {
return NULL;
}
+unsigned long GLSurface::GetCompatibilityKey() {
+ return 0;
+}
+
GLSurface::Format GLSurface::GetFormat() {
NOTIMPLEMENTED();
return SURFACE_DEFAULT;
@@ -320,6 +324,10 @@ void* GLSurfaceAdapter::GetConfig() {
return surface_->GetConfig();
}
+unsigned long GLSurfaceAdapter::GetCompatibilityKey() {
+ return surface_->GetCompatibilityKey();
+}
+
GLSurface::Format GLSurfaceAdapter::GetFormat() {
return surface_->GetFormat();
}
« no previous file with comments | « ui/gl/gl_surface.h ('k') | ui/gl/gl_surface_egl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698