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 "cc/test/test_gpu_memory_buffer_manager.h" | 5 #include "cc/test/test_gpu_memory_buffer_manager.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "ui/gfx/gpu_memory_buffer.h" | 8 #include "ui/gfx/gpu_memory_buffer.h" |
9 | 9 |
10 namespace cc { | 10 namespace cc { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 return make_scoped_ptr<gfx::GpuMemoryBuffer>( | 86 return make_scoped_ptr<gfx::GpuMemoryBuffer>( |
87 new GpuMemoryBufferImpl(size, format, shared_memory.Pass())); | 87 new GpuMemoryBufferImpl(size, format, shared_memory.Pass())); |
88 } | 88 } |
89 | 89 |
90 gfx::GpuMemoryBuffer* | 90 gfx::GpuMemoryBuffer* |
91 TestGpuMemoryBufferManager::GpuMemoryBufferFromClientBuffer( | 91 TestGpuMemoryBufferManager::GpuMemoryBufferFromClientBuffer( |
92 ClientBuffer buffer) { | 92 ClientBuffer buffer) { |
93 return reinterpret_cast<gfx::GpuMemoryBuffer*>(buffer); | 93 return reinterpret_cast<gfx::GpuMemoryBuffer*>(buffer); |
94 } | 94 } |
95 | 95 |
| 96 void TestGpuMemoryBufferManager::SetDestructionSyncPoint( |
| 97 gfx::GpuMemoryBuffer* buffer, |
| 98 uint32 sync_point) { |
| 99 } |
| 100 |
96 } // namespace cc | 101 } // namespace cc |
OLD | NEW |