| 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/command_buffer/client/gl_in_process_context.h" | 5 #include "gpu/ipc/gl_in_process_context.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <utility> | 12 #include <utility> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include <GLES2/gl2.h> | 15 #include <GLES2/gl2.h> |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 if (!context->Initialize(surface, is_offscreen, share_context, window, | 203 if (!context->Initialize(surface, is_offscreen, share_context, window, |
| 204 attribs, service, memory_limits, | 204 attribs, service, memory_limits, |
| 205 gpu_memory_buffer_manager, image_factory, | 205 gpu_memory_buffer_manager, image_factory, |
| 206 std::move(task_runner))) | 206 std::move(task_runner))) |
| 207 return NULL; | 207 return NULL; |
| 208 | 208 |
| 209 return context.release(); | 209 return context.release(); |
| 210 } | 210 } |
| 211 | 211 |
| 212 } // namespace gpu | 212 } // namespace gpu |
| OLD | NEW |