| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "gpu/ipc/common/gpu_surface_lookup.h" | 8 #include "gpu/ipc/common/gpu_surface_lookup.h" |
| 9 #include "gpu/ipc/service/pass_through_image_transport_surface.h" | 9 #include "gpu/ipc/service/pass_through_image_transport_surface.h" |
| 10 #include "ui/gl/gl_surface_egl.h" | 10 #include "ui/gl/gl_surface_egl.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 LOG(WARNING) << "Failed to acquire native widget."; | 30 LOG(WARNING) << "Failed to acquire native widget."; |
| 31 return nullptr; | 31 return nullptr; |
| 32 } | 32 } |
| 33 scoped_refptr<gl::GLSurface> surface = new gl::NativeViewGLSurfaceEGL(window); | 33 scoped_refptr<gl::GLSurface> surface = new gl::NativeViewGLSurfaceEGL(window); |
| 34 bool initialize_success = surface->Initialize(format); | 34 bool initialize_success = surface->Initialize(format); |
| 35 ANativeWindow_release(window); | 35 ANativeWindow_release(window); |
| 36 if (!initialize_success) | 36 if (!initialize_success) |
| 37 return scoped_refptr<gl::GLSurface>(); | 37 return scoped_refptr<gl::GLSurface>(); |
| 38 | 38 |
| 39 return scoped_refptr<gl::GLSurface>( | 39 return scoped_refptr<gl::GLSurface>( |
| 40 new PassThroughImageTransportSurface(manager, stub, surface.get())); | 40 new PassThroughImageTransportSurface(stub, surface.get())); |
| 41 } | 41 } |
| 42 | 42 |
| 43 } // namespace gpu | 43 } // namespace gpu |
| OLD | NEW |