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

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: Minor updates, working on tests 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
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, browser state, and
13 // GpuIdealMemoryAllocation values (see below).
nduca 2012/01/31 06:53:47 I think the ", and ... values " doesn't really add
mmocny 2012/01/31 18:54:57 Done.
14 // Exceeding these limits for an unreasonable amount of time will cause kill.
nduca 2012/01/31 06:53:47 will cause the context to be lost.
mmocny 2012/01/31 18:54:57 Done.
15 struct GpuMemoryAllocation {
16 static const int kResourceSizeForegroundTab = 100 * 1024 * 1024;
nduca 2012/01/31 06:53:47 Confused why this is in the header. I would have e
mmocny 2012/01/31 18:54:57 Done.
17 static const int kResourceSizeBackgroundTab = 50 * 1024 * 1024;
18 static const int kResourceSizeHibernatedTab = 0;
19
20 int gpuResourceSizeInBytes;
21 bool hasFrontbuffer;
22 bool hasBackbuffer;
23
24 GpuMemoryAllocation()
25 : gpuResourceSizeInBytes(0)
26 , hasFrontbuffer(false)
27 , hasBackbuffer(false) {
28 }
29
30 GpuMemoryAllocation(int gpuResourceSizeInBytes,
31 bool hasFrontbuffer,
32 bool hasBackbuffer)
33 : gpuResourceSizeInBytes(gpuResourceSizeInBytes)
34 , hasFrontbuffer(hasFrontbuffer)
35 , hasBackbuffer(hasBackbuffer) {
36 }
37 };
38
39 // Contexts should give ideal memory allocation hints to the GpuMemoryManager
nduca 2012/01/31 06:53:47 Do we like "ideal" or do we want to try on "goal"
mmocny 2012/01/31 18:54:57 I find goal confusing, since I think of the goal t
40 // so that it can make better decisions on how to split resources.
41 // If memory is constrained and/or this context has lower priority than others,
nduca 2012/01/31 06:53:47 this context -> a context.
mmocny 2012/01/31 18:54:57 Done.
42 // these requests will be overruled (see actual allocation limits above).
nduca 2012/01/31 06:53:47 these requests will be overruled -> the allocated
mmocny 2012/01/31 18:54:57 Done.
43 struct GpuIdealMemoryAllocation {
44 };
45
46 #endif // CONTENT_COMMON_GPU_GPU_MEMORY_ALLOCATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698