Index: content/common/gpu/image_transport_surface_linux.cc |
diff --git a/content/common/gpu/image_transport_surface_linux.cc b/content/common/gpu/image_transport_surface_linux.cc |
index b648b197c5c525225c50bf2193605b134b3a22ed..abbda9bb959f4342fa8e4b4cfeb9176217e97848 100644 |
--- a/content/common/gpu/image_transport_surface_linux.cc |
+++ b/content/common/gpu/image_transport_surface_linux.cc |
@@ -13,8 +13,12 @@ scoped_refptr<gfx::GLSurface> ImageTransportSurface::CreateNativeSurface( |
const gfx::GLSurfaceHandle& handle) { |
DCHECK(handle.handle); |
DCHECK(handle.transport_type == gfx::NATIVE_DIRECT); |
- scoped_refptr<gfx::GLSurface> surface = |
- gfx::GLSurface::CreateViewGLSurface(handle.handle); |
+ scoped_refptr<gfx::GLSurface> surface; |
+#if defined(USE_OZONE) |
+ surface = gfx::GLSurface::CreateSurfacelessViewGLSurface(handle.handle); |
+#endif |
+ if (!surface.get()) |
Pawel Osciak
2015/02/24 00:13:46
Just (!surface) should suffice.
achaulk
2015/02/24 19:07:21
Done.
|
+ surface = gfx::GLSurface::CreateViewGLSurface(handle.handle); |
if (!surface.get()) |
return surface; |
return scoped_refptr<gfx::GLSurface>(new PassThroughImageTransportSurface( |