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

Unified Diff: gpu/command_buffer/service/framebuffer_manager_unittest.cc

Issue 1747013: Changes the code to use separate ids namspaces... (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
« no previous file with comments | « gpu/command_buffer/service/framebuffer_manager.cc ('k') | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/framebuffer_manager_unittest.cc
===================================================================
--- gpu/command_buffer/service/framebuffer_manager_unittest.cc (revision 45605)
+++ gpu/command_buffer/service/framebuffer_manager_unittest.cc (working copy)
@@ -24,23 +24,24 @@
};
TEST_F(FramebufferManagerTest, Basic) {
- const GLuint kFramebuffer1Id = 1;
- const GLuint kFramebuffer2Id = 2;
+ const GLuint kClient1Id = 1;
+ const GLuint kService1Id = 11;
+ const GLuint kClient2Id = 2;
// Check we can create framebuffer.
- manager_.CreateFramebufferInfo(kFramebuffer1Id);
+ manager_.CreateFramebufferInfo(kClient1Id, kService1Id);
// Check framebuffer got created.
FramebufferManager::FramebufferInfo* info1 =
- manager_.GetFramebufferInfo(kFramebuffer1Id);
+ manager_.GetFramebufferInfo(kClient1Id);
ASSERT_TRUE(info1 != NULL);
EXPECT_FALSE(info1->IsDeleted());
- EXPECT_EQ(kFramebuffer1Id, info1->framebuffer_id());
+ EXPECT_EQ(kService1Id, info1->service_id());
// Check we get nothing for a non-existent framebuffer.
- EXPECT_TRUE(manager_.GetFramebufferInfo(kFramebuffer2Id) == NULL);
+ EXPECT_TRUE(manager_.GetFramebufferInfo(kClient2Id) == NULL);
// Check trying to a remove non-existent framebuffers does not crash.
- manager_.RemoveFramebufferInfo(kFramebuffer2Id);
+ manager_.RemoveFramebufferInfo(kClient2Id);
// Check we can't get the framebuffer after we remove it.
- manager_.RemoveFramebufferInfo(kFramebuffer1Id);
- EXPECT_TRUE(manager_.GetFramebufferInfo(kFramebuffer1Id) == NULL);
+ manager_.RemoveFramebufferInfo(kClient1Id);
+ EXPECT_TRUE(manager_.GetFramebufferInfo(kClient1Id) == NULL);
}
// TODO(gman): Write test for AttachRenderbuffer
« no previous file with comments | « gpu/command_buffer/service/framebuffer_manager.cc ('k') | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698