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

Unified Diff: ui/gl/gl_surface_egl.cc

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
Index: ui/gl/gl_surface_egl.cc
diff --git a/ui/gl/gl_surface_egl.cc b/ui/gl/gl_surface_egl.cc
index 3f8923ae895ecc38887237d6bd09f3c9425aa6e1..b12d9271b908f3699eca6454a5fc9178c679ece0 100644
--- a/ui/gl/gl_surface_egl.cc
+++ b/ui/gl/gl_surface_egl.cc
@@ -276,7 +276,7 @@ bool NativeViewGLSurfaceEGL::Initialize(VSyncProvider* sync_provider) {
surface_ = eglCreateWindowSurface(
GetDisplay(),
GetConfig(),
- window_,
+ reinterpret_cast<EGLNativeWindowType>(window_),
gfx::g_driver_egl.ext.b_EGL_NV_post_sub_buffer ?
egl_window_attributes_sub_buffer :
NULL);
@@ -720,6 +720,9 @@ GLSurface::CreateViewGLSurface(gfx::AcceleratedWidget window) {
scoped_refptr<NativeViewGLSurfaceEGL> surface;
VSyncProvider* sync_provider = NULL;
#if defined(USE_OZONE)
+ COMPILE_ASSERT(sizeof(EGLNativeWindowType) >=
+ sizeof(gfx::AcceleratedWidget),
+ EGLNativeWindowType_wide_enough);
window = gfx::SurfaceFactoryOzone::GetInstance()->RealizeAcceleratedWidget(
window);
sync_provider =
@@ -749,8 +752,7 @@ GLSurface::CreateOffscreenGLSurface(const gfx::Size& size) {
}
case kGLImplementationEGLGLES2: {
scoped_refptr<GLSurface> surface;
- if (g_egl_surfaceless_context_supported &&
- (size.width() == 0 && size.height() == 0)) {
+ if (g_egl_surfaceless_context_supported) {
surface = new SurfacelessEGL(size);
} else
surface = new PbufferGLSurfaceEGL(size);
« ui/gl/gl_image_egl.cc ('K') | « ui/gl/gl_implementation.cc ('k') | ui/ozone/ozone.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698