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

Side by Side 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, 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_command_buffer_stub.cc ('k') | content/common/gpu/gpu_memory_manager.h » ('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_ALLOCATION_H_
6 #define CONTENT_COMMON_GPU_GPU_MEMORY_ALLOCATION_H_
7 #pragma once
8
9 #include "base/basictypes.h"
10
11 // These are memory allocation limits assigned to a context.
12 // They will change over time, given memory availability, and browser state
13 // Exceeding these limits for an unreasonable amount of time will cause context
14 // to be lost.
15 class GpuMemoryAllocation {
16 public:
17 uint64 gpuResourceSizeInBytes;
18 bool hasFrontbuffer;
19 bool hasBackbuffer;
20
21 GpuMemoryAllocation()
22 : gpuResourceSizeInBytes(0),
23 hasFrontbuffer(false),
24 hasBackbuffer(false) {
25 }
26
27 GpuMemoryAllocation(uint64 gpuResourceSizeInBytes,
28 bool hasFrontbuffer,
29 bool hasBackbuffer)
30 : gpuResourceSizeInBytes(gpuResourceSizeInBytes),
31 hasFrontbuffer(hasFrontbuffer),
32 hasBackbuffer(hasBackbuffer) {
33 }
34 };
35
36 inline bool operator==(const GpuMemoryAllocation& lhs,
37 const GpuMemoryAllocation& rhs) {
38 return lhs.gpuResourceSizeInBytes == rhs.gpuResourceSizeInBytes &&
39 lhs.hasFrontbuffer == rhs.hasFrontbuffer &&
40 lhs.hasBackbuffer == rhs.hasBackbuffer;
41 }
42
43 inline bool operator!=(const GpuMemoryAllocation& lhs,
44 const GpuMemoryAllocation& rhs) {
45 return !(lhs == rhs);
46 }
47
48 #endif // CONTENT_COMMON_GPU_GPU_MEMORY_ALLOCATION_H_
OLDNEW
« 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