| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "gpu/ipc/service/image_transport_surface.h" | 5 #include "gpu/ipc/service/image_transport_surface.h" |
| 6 | 6 |
| 7 #include "gpu/ipc/service/pass_through_image_transport_surface.h" | 7 #include "gpu/ipc/service/pass_through_image_transport_surface.h" |
| 8 #include "ui/gl/init/gl_factory.h" | 8 #include "ui/gl/init/gl_factory.h" |
| 9 | 9 |
| 10 namespace gpu { | 10 namespace gpu { |
| 11 | 11 |
| 12 // static | 12 // static |
| 13 scoped_refptr<gl::GLSurface> ImageTransportSurface::CreateNativeSurface( | 13 scoped_refptr<gl::GLSurface> ImageTransportSurface::CreateNativeSurface( |
| 14 base::WeakPtr<ImageTransportSurfaceDelegate> delegate, | 14 base::WeakPtr<ImageTransportSurfaceDelegate> delegate, |
| 15 SurfaceHandle surface_handle, | 15 SurfaceHandle surface_handle, |
| 16 gl::GLSurface::Format format) { | 16 gl::GLSurfaceFormat format) { |
| 17 DCHECK_NE(surface_handle, kNullSurfaceHandle); | 17 DCHECK_NE(surface_handle, kNullSurfaceHandle); |
| 18 scoped_refptr<gl::GLSurface> surface; | 18 scoped_refptr<gl::GLSurface> surface; |
| 19 #if defined(USE_OZONE) | 19 #if defined(USE_OZONE) |
| 20 surface = gl::init::CreateSurfacelessViewGLSurface(surface_handle); | 20 surface = gl::init::CreateSurfacelessViewGLSurface(surface_handle); |
| 21 #endif | 21 #endif |
| 22 if (!surface) | 22 if (!surface) |
| 23 surface = gl::init::CreateViewGLSurface(surface_handle); | 23 surface = gl::init::CreateViewGLSurface(surface_handle); |
| 24 if (!surface) | 24 if (!surface) |
| 25 return surface; | 25 return surface; |
| 26 return scoped_refptr<gl::GLSurface>( | 26 return scoped_refptr<gl::GLSurface>( |
| 27 new PassThroughImageTransportSurface(delegate, surface.get())); | 27 new PassThroughImageTransportSurface(delegate, surface.get())); |
| 28 } | 28 } |
| 29 | 29 |
| 30 } // namespace gpu | 30 } // namespace gpu |
| OLD | NEW |