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

Unified 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, 11 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_memory_manager.h
diff --git a/content/common/gpu/gpu_memory_manager.h b/content/common/gpu/gpu_memory_manager.h
new file mode 100644
index 0000000000000000000000000000000000000000..c1b7ff8809f8e5d3aa8680ff4332c858f90d0840
--- /dev/null
+++ b/content/common/gpu/gpu_memory_manager.h
@@ -0,0 +1,57 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_COMMON_GPU_GPU_MEMORY_MANAGER_H_
+#define CONTENT_COMMON_GPU_GPU_MEMORY_MANAGER_H_
+#pragma once
+
+#if defined(ENABLE_GPU)
+
+#include <vector>
+
+#include "base/basictypes.h"
+#include "base/memory/weak_ptr.h"
+#include "content/common/content_export.h"
+
+class GpuCommandBufferStubBase;
+
+class CONTENT_EXPORT GpuMemoryManagerClient {
+public:
+ virtual ~GpuMemoryManagerClient() {}
+
+ virtual void AppendAllCommandBufferStubs(
+ std::vector<GpuCommandBufferStubBase*>& stubs) = 0;
+};
+
+class CONTENT_EXPORT GpuMemoryManager {
+ public:
+ static const size_t kDefaultMaxSurfacesWithFrontbufferSoftLimit;
+
+ GpuMemoryManager(GpuMemoryManagerClient* client,
+ size_t max_surfaces_with_frontbuffer_soft_limit);
+ ~GpuMemoryManager();
+
+ void ScheduleManage();
+
+ private:
+ friend class GpuMemoryManagerTest;
+ void Manage();
+
+ class CONTENT_EXPORT StubWithSurfaceComparator {
+ public:
+ bool operator()(GpuCommandBufferStubBase* lhs,
+ GpuCommandBufferStubBase* rhs);
+ };
+
+ GpuMemoryManagerClient* client_;
+ bool manage_scheduled_;
+ size_t max_surfaces_with_frontbuffer_soft_limit_;
+ base::WeakPtrFactory<GpuMemoryManager> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(GpuMemoryManager);
+};
+
+#endif
+
+#endif // CONTENT_COMMON_GPU_GPU_MEMORY_MANAGER_H_
« 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