Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: gpu/command_buffer/client/gpu_memory_buffer_manager.h

Issue 1859703002: convert //gpu to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo part of clang-format Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <memory>
9
9 #include "gpu/gpu_export.h" 10 #include "gpu/gpu_export.h"
10 #include "ui/gfx/geometry/size.h" 11 #include "ui/gfx/geometry/size.h"
11 #include "ui/gfx/gpu_memory_buffer.h" 12 #include "ui/gfx/gpu_memory_buffer.h"
12 13
13 namespace gpu { 14 namespace gpu {
14 15
15 struct SyncToken; 16 struct SyncToken;
16 17
17 class GPU_EXPORT GpuMemoryBufferManager { 18 class GPU_EXPORT GpuMemoryBufferManager {
18 public: 19 public:
19 GpuMemoryBufferManager(); 20 GpuMemoryBufferManager();
20 21
21 // Allocates a GpuMemoryBuffer that can be shared with another process. 22 // Allocates a GpuMemoryBuffer that can be shared with another process.
22 virtual scoped_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( 23 virtual std::unique_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer(
23 const gfx::Size& size, 24 const gfx::Size& size,
24 gfx::BufferFormat format, 25 gfx::BufferFormat format,
25 gfx::BufferUsage usage) = 0; 26 gfx::BufferUsage usage) = 0;
26 27
27 // Creates a GpuMemoryBuffer from existing handle. 28 // Creates a GpuMemoryBuffer from existing handle.
28 virtual scoped_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBufferFromHandle( 29 virtual std::unique_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBufferFromHandle(
29 const gfx::GpuMemoryBufferHandle& handle, 30 const gfx::GpuMemoryBufferHandle& handle,
30 const gfx::Size& size, 31 const gfx::Size& size,
31 gfx::BufferFormat format) = 0; 32 gfx::BufferFormat format) = 0;
32 33
33 // Returns a GpuMemoryBuffer instance given a ClientBuffer. Returns NULL on 34 // Returns a GpuMemoryBuffer instance given a ClientBuffer. Returns NULL on
34 // failure. 35 // failure.
35 virtual gfx::GpuMemoryBuffer* GpuMemoryBufferFromClientBuffer( 36 virtual gfx::GpuMemoryBuffer* GpuMemoryBufferFromClientBuffer(
36 ClientBuffer buffer) = 0; 37 ClientBuffer buffer) = 0;
37 38
38 // Associates destruction sync point with |buffer|. 39 // Associates destruction sync point with |buffer|.
39 virtual void SetDestructionSyncToken(gfx::GpuMemoryBuffer* buffer, 40 virtual void SetDestructionSyncToken(gfx::GpuMemoryBuffer* buffer,
40 const gpu::SyncToken& sync_token) = 0; 41 const gpu::SyncToken& sync_token) = 0;
41 42
42 protected: 43 protected:
43 virtual ~GpuMemoryBufferManager(); 44 virtual ~GpuMemoryBufferManager();
44 }; 45 };
45 46
46 } // namespace gpu 47 } // namespace gpu
47 48
48 #endif // GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_ 49 #endif // GPU_COMMAND_BUFFER_CLIENT_GPU_MEMORY_BUFFER_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698