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

Side by Side Diff: content/common/gpu/gpu_memory_manager.h

Issue 9289052: Adding GpuMemoryManager to track GpuCommandBufferStub visibility and last_used_time and dictate mem… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 8 years, 10 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
« no previous file with comments | « content/common/gpu/gpu_memory_allocation.h ('k') | content/common/gpu/gpu_memory_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_GPU_GPU_MEMORY_MANAGER_H_
6 #define CONTENT_COMMON_GPU_GPU_MEMORY_MANAGER_H_
7 #pragma once
8
9 #if defined(ENABLE_GPU)
10
11 #include <vector>
12
13 #include "base/basictypes.h"
14 #include "base/memory/weak_ptr.h"
15 #include "content/common/content_export.h"
16
17 class GpuCommandBufferStubBase;
18
19 class CONTENT_EXPORT GpuMemoryManagerClient {
20 public:
21 virtual ~GpuMemoryManagerClient() {}
22
23 virtual void AppendAllCommandBufferStubs(
24 std::vector<GpuCommandBufferStubBase*>& stubs) = 0;
25 };
26
27 class CONTENT_EXPORT GpuMemoryManager {
28 public:
29 static const size_t kDefaultMaxSurfacesWithFrontbufferSoftLimit;
30
31 GpuMemoryManager(GpuMemoryManagerClient* client,
32 size_t max_surfaces_with_frontbuffer_soft_limit);
33 ~GpuMemoryManager();
34
35 void ScheduleManage();
36
37 private:
38 friend class GpuMemoryManagerTest;
39 void Manage();
40
41 class CONTENT_EXPORT StubWithSurfaceComparator {
42 public:
43 bool operator()(GpuCommandBufferStubBase* lhs,
44 GpuCommandBufferStubBase* rhs);
45 };
46
47 GpuMemoryManagerClient* client_;
48 bool manage_scheduled_;
49 size_t max_surfaces_with_frontbuffer_soft_limit_;
50 base::WeakPtrFactory<GpuMemoryManager> weak_factory_;
51
52 DISALLOW_COPY_AND_ASSIGN(GpuMemoryManager);
53 };
54
55 #endif
56
57 #endif // CONTENT_COMMON_GPU_GPU_MEMORY_MANAGER_H_
OLDNEW
« no previous file with comments | « content/common/gpu/gpu_memory_allocation.h ('k') | content/common/gpu/gpu_memory_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698