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

Unified Diff: content/common/gpu/gpu_memory_allocation.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_command_buffer_stub.cc ('k') | content/common/gpu/gpu_memory_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_memory_allocation.h
diff --git a/content/common/gpu/gpu_memory_allocation.h b/content/common/gpu/gpu_memory_allocation.h
new file mode 100644
index 0000000000000000000000000000000000000000..5a77015de7a15af802e93309aea04a62f48814f4
--- /dev/null
+++ b/content/common/gpu/gpu_memory_allocation.h
@@ -0,0 +1,48 @@
+// 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_ALLOCATION_H_
+#define CONTENT_COMMON_GPU_GPU_MEMORY_ALLOCATION_H_
+#pragma once
+
+#include "base/basictypes.h"
+
+// These are memory allocation limits assigned to a context.
+// They will change over time, given memory availability, and browser state
+// Exceeding these limits for an unreasonable amount of time will cause context
+// to be lost.
+class GpuMemoryAllocation {
+ public:
+ uint64 gpuResourceSizeInBytes;
+ bool hasFrontbuffer;
+ bool hasBackbuffer;
+
+ GpuMemoryAllocation()
+ : gpuResourceSizeInBytes(0),
+ hasFrontbuffer(false),
+ hasBackbuffer(false) {
+ }
+
+ GpuMemoryAllocation(uint64 gpuResourceSizeInBytes,
+ bool hasFrontbuffer,
+ bool hasBackbuffer)
+ : gpuResourceSizeInBytes(gpuResourceSizeInBytes),
+ hasFrontbuffer(hasFrontbuffer),
+ hasBackbuffer(hasBackbuffer) {
+ }
+};
+
+inline bool operator==(const GpuMemoryAllocation& lhs,
+ const GpuMemoryAllocation& rhs) {
+ return lhs.gpuResourceSizeInBytes == rhs.gpuResourceSizeInBytes &&
+ lhs.hasFrontbuffer == rhs.hasFrontbuffer &&
+ lhs.hasBackbuffer == rhs.hasBackbuffer;
+}
+
+inline bool operator!=(const GpuMemoryAllocation& lhs,
+ const GpuMemoryAllocation& rhs) {
+ return !(lhs == rhs);
+}
+
+#endif // CONTENT_COMMON_GPU_GPU_MEMORY_ALLOCATION_H_
« no previous file with comments | « content/common/gpu/gpu_command_buffer_stub.cc ('k') | content/common/gpu/gpu_memory_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698