OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "examples/ganesh_app/texture_uploader.h" | 5 #include "examples/ganesh_app/texture_uploader.h" |
6 | 6 |
7 #ifndef GL_GLEXT_PROTOTYPES | 7 #ifndef GL_GLEXT_PROTOTYPES |
8 #define GL_GLEXT_PROTOTYPES | 8 #define GL_GLEXT_PROTOTYPES |
9 #endif | 9 #endif |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "gpu/GLES2/gl2chromium.h" | 12 #include "gpu/GLES2/gl2chromium.h" |
13 #include "gpu/GLES2/gl2extchromium.h" | 13 #include "gpu/GLES2/gl2extchromium.h" |
14 #include "mojo/public/c/gles2/gles2.h" | 14 #include "mojo/public/c/gles2/gles2.h" |
15 #include "mojo/public/cpp/application/connect.h" | 15 #include "mojo/public/cpp/application/connect.h" |
16 #include "mojo/public/interfaces/application/shell.mojom.h" | 16 #include "mojo/public/interfaces/application/shell.mojom.h" |
17 #include "mojo/services/public/cpp/geometry/geometry_util.h" | 17 #include "mojo/services/geometry/public/cpp/geometry_util.h" |
18 #include "mojo/services/surfaces/public/cpp/surfaces_utils.h" | 18 #include "mojo/services/surfaces/public/cpp/surfaces_utils.h" |
19 | 19 |
20 namespace examples { | 20 namespace examples { |
21 | 21 |
22 TextureUploader::Client::~Client() { | 22 TextureUploader::Client::~Client() { |
23 } | 23 } |
24 | 24 |
25 TextureUploader::TextureUploader(Client* client, | 25 TextureUploader::TextureUploader(Client* client, |
26 mojo::Shell* shell, | 26 mojo::Shell* shell, |
27 base::WeakPtr<mojo::GLContext> context) | 27 base::WeakPtr<mojo::GLContext> context) |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 uint32_t id_namespace) { | 165 uint32_t id_namespace) { |
166 surface_ = surface.Pass(); | 166 surface_ = surface.Pass(); |
167 surface_.set_client(this); | 167 surface_.set_client(this); |
168 id_namespace_ = id_namespace; | 168 id_namespace_ = id_namespace; |
169 | 169 |
170 if (pending_upload_) | 170 if (pending_upload_) |
171 Upload(pending_upload_.Pass()); | 171 Upload(pending_upload_.Pass()); |
172 } | 172 } |
173 | 173 |
174 } // namespace examples | 174 } // namespace examples |
OLD | NEW |