| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.h" | 7 #include "native_client/src/shared/ppapi_proxy/plugin_ppb_graphics_3d.h" |
| 8 | 8 |
| 9 #include "gpu/command_buffer/client/gles2_implementation.h" | 9 #include "gpu/command_buffer/client/gles2_implementation.h" |
| 10 #include "native_client/src/shared/ppapi_proxy/command_buffer_nacl.h" | 10 #include "native_client/src/shared/ppapi_proxy/command_buffer_nacl.h" |
| 11 #include "native_client/src/shared/ppapi_proxy/object_serialize.h" | 11 #include "native_client/src/shared/ppapi_proxy/object_serialize.h" |
| 12 #include "native_client/src/shared/ppapi_proxy/plugin_callback.h" | 12 #include "native_client/src/shared/ppapi_proxy/plugin_callback.h" |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 &GetAttribs, | 235 &GetAttribs, |
| 236 &SetAttribs, | 236 &SetAttribs, |
| 237 &ResizeBuffers, | 237 &ResizeBuffers, |
| 238 &SwapBuffs, | 238 &SwapBuffs, |
| 239 }; | 239 }; |
| 240 return &intf; | 240 return &intf; |
| 241 } | 241 } |
| 242 | 242 |
| 243 } // namespace ppapi_proxy | 243 } // namespace ppapi_proxy |
| 244 | 244 |
| OLD | NEW |