| 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 "cc/debug/fake_web_graphics_context_3d.h" | 5 #include "cc/test/fake_web_graphics_context_3d.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "third_party/khronos/GLES2/gl2.h" | 8 #include "third_party/khronos/GLES2/gl2.h" |
| 9 | 9 |
| 10 using WebKit::WGC3Dboolean; | 10 using WebKit::WGC3Dboolean; |
| 11 using WebKit::WGC3Denum; | 11 using WebKit::WGC3Denum; |
| 12 using WebKit::WGC3Dsizei; | 12 using WebKit::WGC3Dsizei; |
| 13 using WebKit::WebGLId; | 13 using WebKit::WebGLId; |
| 14 using WebKit::WebGraphicsContext3D; | 14 using WebKit::WebGraphicsContext3D; |
| 15 | 15 |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 WebKit::WGC3Denum internalformat) { | 364 WebKit::WGC3Denum internalformat) { |
| 365 return 0; | 365 return 0; |
| 366 } | 366 } |
| 367 | 367 |
| 368 void* FakeWebGraphicsContext3D::mapImageCHROMIUM(WebKit::WGC3Duint image_id, | 368 void* FakeWebGraphicsContext3D::mapImageCHROMIUM(WebKit::WGC3Duint image_id, |
| 369 WebKit::WGC3Denum access) { | 369 WebKit::WGC3Denum access) { |
| 370 return 0; | 370 return 0; |
| 371 } | 371 } |
| 372 | 372 |
| 373 } // namespace cc | 373 } // namespace cc |
| OLD | NEW |