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 #ifndef GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_ | 5 #ifndef GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_ |
6 #define GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_ | 6 #define GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "gpu/gpu_export.h" | 9 #include "gpu/gpu_export.h" |
10 #include "ui/gfx/geometry/size.h" | 10 #include "ui/gfx/geometry/size.h" |
11 #include "ui/gfx/gpu_memory_buffer.h" | 11 #include "ui/gfx/gpu_memory_buffer.h" |
12 | 12 |
13 namespace gpu { | 13 namespace gpu { |
14 | 14 |
15 struct SyncToken; | |
16 | |
17 class GPU_EXPORT GpuMemoryBufferManager { | 15 class GPU_EXPORT GpuMemoryBufferManager { |
18 public: | 16 public: |
19 GpuMemoryBufferManager(); | 17 GpuMemoryBufferManager(); |
20 | 18 |
21 // Allocates a GpuMemoryBuffer that can be shared with another process. | 19 // Allocates a GpuMemoryBuffer that can be shared with another process. |
22 virtual scoped_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( | 20 virtual scoped_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( |
23 const gfx::Size& size, | 21 const gfx::Size& size, |
24 gfx::BufferFormat format, | 22 gfx::BufferFormat format, |
25 gfx::BufferUsage usage) = 0; | 23 gfx::BufferUsage usage) = 0; |
26 | 24 |
27 // Creates a GpuMemoryBuffer from existing handle. | 25 // Creates a GpuMemoryBuffer from existing handle. |
28 virtual scoped_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBufferFromHandle( | 26 virtual scoped_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBufferFromHandle( |
29 const gfx::GpuMemoryBufferHandle& handle, | 27 const gfx::GpuMemoryBufferHandle& handle, |
30 const gfx::Size& size, | 28 const gfx::Size& size, |
31 gfx::BufferFormat format) = 0; | 29 gfx::BufferFormat format) = 0; |
32 | 30 |
33 // Returns a GpuMemoryBuffer instance given a ClientBuffer. Returns NULL on | 31 // Returns a GpuMemoryBuffer instance given a ClientBuffer. Returns NULL on |
34 // failure. | 32 // failure. |
35 virtual gfx::GpuMemoryBuffer* GpuMemoryBufferFromClientBuffer( | 33 virtual gfx::GpuMemoryBuffer* GpuMemoryBufferFromClientBuffer( |
36 ClientBuffer buffer) = 0; | 34 ClientBuffer buffer) = 0; |
37 | 35 |
38 // Associates destruction sync point with |buffer|. | 36 // Associates destruction sync point with |buffer|. |
39 virtual void SetDestructionSyncToken(gfx::GpuMemoryBuffer* buffer, | 37 virtual void SetDestructionSyncPoint(gfx::GpuMemoryBuffer* buffer, |
40 const gpu::SyncToken& sync_token) = 0; | 38 uint32 sync_point) = 0; |
41 | 39 |
42 protected: | 40 protected: |
43 virtual ~GpuMemoryBufferManager(); | 41 virtual ~GpuMemoryBufferManager(); |
44 }; | 42 }; |
45 | 43 |
46 } // namespace gpu | 44 } // namespace gpu |
47 | 45 |
48 #endif // GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_ | 46 #endif // GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_ |
OLD | NEW |