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

Side by Side Diff: content/browser/gpu/browser_gpu_memory_buffer_manager.h

Issue 1256613002: Add tracing for GL texture objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@browser_process_id
Patch Set: Nits + Service_id > client_id relationship in TextureManager Created 5 years, 4 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 CONTENT_BROWSER_GPU_BROWSER_GPU_MEMORY_BUFFER_MANAGER_H_ 5 #ifndef CONTENT_BROWSER_GPU_BROWSER_GPU_MEMORY_BUFFER_MANAGER_H_
6 #define CONTENT_BROWSER_GPU_BROWSER_GPU_MEMORY_BUFFER_MANAGER_H_ 6 #define CONTENT_BROWSER_GPU_BROWSER_GPU_MEMORY_BUFFER_MANAGER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/trace_event/memory_dump_provider.h" 11 #include "base/trace_event/memory_dump_provider.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "content/common/gpu/gpu_memory_buffer_factory.h" 13 #include "content/common/gpu/gpu_memory_buffer_factory.h"
14 #include "gpu/command_buffer/client/gpu_memory_buffer_manager.h" 14 #include "gpu/command_buffer/client/gpu_memory_buffer_manager.h"
15 15
16 namespace content { 16 namespace content {
17 17
18 class CONTENT_EXPORT BrowserGpuMemoryBufferManager 18 class CONTENT_EXPORT BrowserGpuMemoryBufferManager
19 : public gpu::GpuMemoryBufferManager, 19 : public gpu::GpuMemoryBufferManager,
20 public base::trace_event::MemoryDumpProvider { 20 public base::trace_event::MemoryDumpProvider {
21 public: 21 public:
22 typedef base::Callback<void(const gfx::GpuMemoryBufferHandle& handle)> 22 typedef base::Callback<void(const gfx::GpuMemoryBufferHandle& handle)>
23 AllocationCallback; 23 AllocationCallback;
24 24
25 explicit BrowserGpuMemoryBufferManager(int gpu_client_id); 25 explicit BrowserGpuMemoryBufferManager(int gpu_client_id,
reveman 2015/07/29 21:59:04 nit: 'explicit' is no longer needed
ericrk 2015/07/29 22:50:15 Done.
26 uint64_t gpu_client_tracing_id);
26 ~BrowserGpuMemoryBufferManager() override; 27 ~BrowserGpuMemoryBufferManager() override;
27 28
28 static BrowserGpuMemoryBufferManager* current(); 29 static BrowserGpuMemoryBufferManager* current();
29 30
30 static uint32 GetImageTextureTarget(gfx::GpuMemoryBuffer::Format format, 31 static uint32 GetImageTextureTarget(gfx::GpuMemoryBuffer::Format format,
31 gfx::GpuMemoryBuffer::Usage usage); 32 gfx::GpuMemoryBuffer::Usage usage);
32 33
33 // Overridden from gpu::GpuMemoryBufferManager: 34 // Overridden from gpu::GpuMemoryBufferManager:
34 scoped_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer( 35 scoped_ptr<gfx::GpuMemoryBuffer> AllocateGpuMemoryBuffer(
35 const gfx::Size& size, 36 const gfx::Size& size,
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 int client_id, 115 int client_id,
115 int surface_id, 116 int surface_id,
116 int gpu_host_id, 117 int gpu_host_id,
117 bool reused_gpu_process, 118 bool reused_gpu_process,
118 const AllocationCallback& callback, 119 const AllocationCallback& callback,
119 const gfx::GpuMemoryBufferHandle& handle); 120 const gfx::GpuMemoryBufferHandle& handle);
120 void DestroyGpuMemoryBufferOnIO(gfx::GpuMemoryBufferId id, 121 void DestroyGpuMemoryBufferOnIO(gfx::GpuMemoryBufferId id,
121 int client_id, 122 int client_id,
122 uint32 sync_point); 123 uint32 sync_point);
123 124
125 uint64_t ClientIdToTracingProcessId(int client_id) const;
126
124 const gfx::GpuMemoryBufferType factory_type_; 127 const gfx::GpuMemoryBufferType factory_type_;
125 const std::vector<GpuMemoryBufferFactory::Configuration> 128 const std::vector<GpuMemoryBufferFactory::Configuration>
126 supported_configurations_; 129 supported_configurations_;
127 const int gpu_client_id_; 130 const int gpu_client_id_;
131 const uint64_t gpu_client_tracing_id_;
128 132
129 // The GPU process host ID. This should only be accessed on the IO thread. 133 // The GPU process host ID. This should only be accessed on the IO thread.
130 int gpu_host_id_; 134 int gpu_host_id_;
131 135
132 // Stores info about buffers for all clients. This should only be accessed 136 // Stores info about buffers for all clients. This should only be accessed
133 // on the IO thread. 137 // on the IO thread.
134 using BufferMap = base::hash_map<gfx::GpuMemoryBufferId, BufferInfo>; 138 using BufferMap = base::hash_map<gfx::GpuMemoryBufferId, BufferInfo>;
135 using ClientMap = base::hash_map<int, BufferMap>; 139 using ClientMap = base::hash_map<int, BufferMap>;
136 ClientMap clients_; 140 ClientMap clients_;
137 141
138 DISALLOW_COPY_AND_ASSIGN(BrowserGpuMemoryBufferManager); 142 DISALLOW_COPY_AND_ASSIGN(BrowserGpuMemoryBufferManager);
139 }; 143 };
140 144
141 } // namespace content 145 } // namespace content
142 146
143 #endif // CONTENT_BROWSER_GPU_BROWSER_GPU_MEMORY_BUFFER_MANAGER_H_ 147 #endif // CONTENT_BROWSER_GPU_BROWSER_GPU_MEMORY_BUFFER_MANAGER_H_
OLDNEW
« no previous file with comments | « content/browser/gpu/browser_gpu_channel_host_factory.cc ('k') | content/browser/gpu/browser_gpu_memory_buffer_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698