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

Side by Side Diff: cc/ring_buffer.h

Issue 12149004: [cc] Show GPU memory usage and overage below FPS counter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: works Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_RING_BUFFER_H_ 5 #ifndef CC_RING_BUFFER_H_
6 #define CC_RING_BUFFER_H_ 6 #define CC_RING_BUFFER_H_
7 7
8 #include "base/logging.h" 8 #include "base/logging.h"
9 9
10 namespace cc { 10 namespace cc {
(...skipping 13 matching lines...) Expand all
24 return current_index_; 24 return current_index_;
25 } 25 }
26 26
27 // tests if a value was saved to this index 27 // tests if a value was saved to this index
28 bool IsFilledIndex(size_t n) const { 28 bool IsFilledIndex(size_t n) const {
29 return BufferIndex(n) < current_index_; 29 return BufferIndex(n) < current_index_;
30 } 30 }
31 31
32 // n = 0 returns the oldest value and 32 // n = 0 returns the oldest value and
33 // n = bufferSize() - 1 returns the most recent value. 33 // n = bufferSize() - 1 returns the most recent value.
34 T ReadBuffer(size_t n) const { 34 const T& ReadBuffer(size_t n) const {
35 DCHECK(IsFilledIndex(n)); 35 DCHECK(IsFilledIndex(n));
36 return buffer_[BufferIndex(n)]; 36 return buffer_[BufferIndex(n)];
37 } 37 }
38 38
39 void SaveToBuffer(T value) { 39 void SaveToBuffer(T value) {
40 buffer_[BufferIndex(0)] = value; 40 buffer_[BufferIndex(0)] = value;
41 current_index_++; 41 current_index_++;
42 } 42 }
43 43
44 private: 44 private:
45 inline size_t BufferIndex(size_t n) const { 45 inline size_t BufferIndex(size_t n) const {
46 return (current_index_ + n) % size; 46 return (current_index_ + n) % size;
47 } 47 }
48 48
49 T buffer_[size]; 49 T buffer_[size];
50 size_t current_index_; 50 size_t current_index_;
51 }; 51 };
52 52
53 } // namespace cc 53 } // namespace cc
54 54
55 #endif // CC_RING_BUFFER_H_ 55 #endif // CC_RING_BUFFER_H_
OLDNEW
« cc/heads_up_display_layer_impl.cc ('K') | « cc/memory_history.cc ('k') | cc/tile_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698