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

Unified Diff: command_buffer/client/cross/id_allocator_test.cc

Issue 234002: More work in Command Buffers... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 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 | « command_buffer/client/cross/id_allocator.h ('k') | command_buffer/common/cross/cmd_buffer_format.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_buffer/client/cross/id_allocator_test.cc
===================================================================
--- command_buffer/client/cross/id_allocator_test.cc (revision 26885)
+++ command_buffer/client/cross/id_allocator_test.cc (working copy)
@@ -38,7 +38,7 @@
namespace o3d {
namespace command_buffer {
-using command_buffer::ResourceID;
+using command_buffer::ResourceId;
class IdAllocatorTest : public testing::Test {
protected:
@@ -58,12 +58,12 @@
EXPECT_FALSE(allocator->InUse(0));
// Allocate an ID, check that it's in use.
- ResourceID id1 = allocator->AllocateID();
+ ResourceId id1 = allocator->AllocateID();
EXPECT_TRUE(allocator->InUse(id1));
// Allocate another ID, check that it's in use, and different from the first
// one.
- ResourceID id2 = allocator->AllocateID();
+ ResourceId id2 = allocator->AllocateID();
EXPECT_TRUE(allocator->InUse(id2));
EXPECT_NE(id1, id2);
@@ -83,7 +83,7 @@
// Allocate a significant number of resources.
const int kNumResources = 100;
- ResourceID ids[kNumResources];
+ ResourceId ids[kNumResources];
for (int i = 0; i < kNumResources; ++i) {
ids[i] = allocator->AllocateID();
EXPECT_TRUE(allocator->InUse(ids[i]));
@@ -102,10 +102,10 @@
}
// Check that a new allocation re-uses the resource we just freed.
- ResourceID id1 = ids[kNumResources / 2];
+ ResourceId id1 = ids[kNumResources / 2];
allocator->FreeID(id1);
EXPECT_FALSE(allocator->InUse(id1));
- ResourceID id2 = allocator->AllocateID();
+ ResourceId id2 = allocator->AllocateID();
EXPECT_TRUE(allocator->InUse(id2));
EXPECT_EQ(id1, id2);
}
« no previous file with comments | « command_buffer/client/cross/id_allocator.h ('k') | command_buffer/common/cross/cmd_buffer_format.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698