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

Unified Diff: gpu/command_buffer/client/ring_buffer.cc

Issue 1806003: Fix Bug in RingBuffer (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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
Index: gpu/command_buffer/client/ring_buffer.cc
===================================================================
--- gpu/command_buffer/client/ring_buffer.cc (revision 45958)
+++ gpu/command_buffer/client/ring_buffer.cc (working copy)
@@ -40,11 +40,13 @@
in_use_offset_ = 0;
free_offset_ = 0;
}
- blocks_.pop_back();
+ blocks_.pop_front();
}
RingBuffer::Offset RingBuffer::Alloc(unsigned int size) {
DCHECK_LE(size, size_) << "attempt to allocate more than maximum memory";
+ DCHECK(blocks_.empty() || blocks_.back().valid)
+ << "Attempt to alloc another block before freeing the previous.";
// Similarly to malloc, an allocation of 0 allocates at least 1 byte, to
// return different pointers every time.
if (size == 0) size = 1;
@@ -82,6 +84,8 @@
}
unsigned int RingBuffer::GetLargestFreeSizeNoWaiting() {
+ // TODO(gman): Should check what the current token is and free up to that
+ // point.
if (free_offset_ == in_use_offset_) {
if (blocks_.empty()) {
// The entire buffer is free.

Powered by Google App Engine
This is Rietveld 408576698