OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_ | 5 #ifndef BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_ |
6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_ | 6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "cc/output/buffer_to_texture_target_map.h" |
11 #include "gpu/command_buffer/client/gpu_memory_buffer_manager.h" | 12 #include "gpu/command_buffer/client/gpu_memory_buffer_manager.h" |
12 | 13 |
13 namespace blimp { | 14 namespace blimp { |
14 namespace client { | 15 namespace client { |
15 | 16 |
16 class BlimpGpuMemoryBufferManager : public gpu::GpuMemoryBufferManager { | 17 class BlimpGpuMemoryBufferManager : public gpu::GpuMemoryBufferManager { |
17 public: | 18 public: |
18 BlimpGpuMemoryBufferManager(); | 19 BlimpGpuMemoryBufferManager(); |
19 ~BlimpGpuMemoryBufferManager() override; | 20 ~BlimpGpuMemoryBufferManager() override; |
20 | 21 |
| 22 static cc::BufferToTextureTargetMap GetDefaultBufferToTextureTargetMap(); |
| 23 |
21 // Overridden from gpu::GpuMemoryBufferManager: | 24 // Overridden from gpu::GpuMemoryBufferManager: |
22 std::unique_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( | 25 std::unique_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( |
23 const gfx::Size& size, | 26 const gfx::Size& size, |
24 gfx::BufferFormat format, | 27 gfx::BufferFormat format, |
25 gfx::BufferUsage usage, | 28 gfx::BufferUsage usage, |
26 gpu::SurfaceHandle surface_handle) override; | 29 gpu::SurfaceHandle surface_handle) override; |
27 std::unique_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBufferFromHandle( | 30 std::unique_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBufferFromHandle( |
28 const gfx::GpuMemoryBufferHandle& handle, | 31 const gfx::GpuMemoryBufferHandle& handle, |
29 const gfx::Size& size, | 32 const gfx::Size& size, |
30 gfx::BufferFormat format) override; | 33 gfx::BufferFormat format) override; |
31 gfx::GpuMemoryBuffer* GpuMemoryBufferFromClientBuffer( | 34 gfx::GpuMemoryBuffer* GpuMemoryBufferFromClientBuffer( |
32 ClientBuffer buffer) override; | 35 ClientBuffer buffer) override; |
33 void SetDestructionSyncToken(gfx::GpuMemoryBuffer* buffer, | 36 void SetDestructionSyncToken(gfx::GpuMemoryBuffer* buffer, |
34 const gpu::SyncToken& sync_token) override; | 37 const gpu::SyncToken& sync_token) override; |
35 | 38 |
36 private: | 39 private: |
37 DISALLOW_COPY_AND_ASSIGN(BlimpGpuMemoryBufferManager); | 40 DISALLOW_COPY_AND_ASSIGN(BlimpGpuMemoryBufferManager); |
38 }; | 41 }; |
39 | 42 |
40 } // namespace client | 43 } // namespace client |
41 } // namespace blimp | 44 } // namespace blimp |
42 | 45 |
43 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_ | 46 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_ |
OLD | NEW |