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

Unified Diff: gpu/command_buffer/service/texture_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/texture_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/texture_manager_unittest.cc
===================================================================
--- gpu/command_buffer/service/texture_manager_unittest.cc (revision 45605)
+++ gpu/command_buffer/service/texture_manager_unittest.cc (working copy)
@@ -38,20 +38,22 @@
#endif
TEST_F(TextureManagerTest, Basic) {
- const GLuint kTexture1Id = 1;
- const GLuint kTexture2Id = 2;
+ const GLuint kClient1Id = 1;
+ const GLuint kService1Id = 11;
+ const GLuint kClient2Id = 2;
// Check we can create texture.
- manager_.CreateTextureInfo(kTexture1Id);
+ manager_.CreateTextureInfo(kClient1Id, kService1Id);
// Check texture got created.
- TextureManager::TextureInfo* info1 = manager_.GetTextureInfo(kTexture1Id);
+ TextureManager::TextureInfo* info1 = manager_.GetTextureInfo(kClient1Id);
ASSERT_TRUE(info1 != NULL);
+ EXPECT_EQ(kService1Id, info1->service_id());
// Check we get nothing for a non-existent texture.
- EXPECT_TRUE(manager_.GetTextureInfo(kTexture2Id) == NULL);
+ EXPECT_TRUE(manager_.GetTextureInfo(kClient2Id) == NULL);
// Check trying to a remove non-existent textures does not crash.
- manager_.RemoveTextureInfo(kTexture2Id);
+ manager_.RemoveTextureInfo(kClient2Id);
// Check we can't get the texture after we remove it.
- manager_.RemoveTextureInfo(kTexture1Id);
- EXPECT_TRUE(manager_.GetTextureInfo(kTexture1Id) == NULL);
+ manager_.RemoveTextureInfo(kClient1Id);
+ EXPECT_TRUE(manager_.GetTextureInfo(kClient1Id) == NULL);
}
TEST_F(TextureManagerTest, MaxValues) {
@@ -114,7 +116,8 @@
static const GLint kMaxCubeMapTextureSize = 8;
static const GLint kMax2dLevels = 5;
static const GLint kMaxCubeMapLevels = 4;
- static const GLuint kTexture1Id = 1;
+ static const GLuint kClient1Id = 1;
+ static const GLuint kService1Id = 11;
TextureInfoTest()
: manager_(kMaxTextureSize, kMaxCubeMapTextureSize) {
@@ -122,8 +125,8 @@
protected:
virtual void SetUp() {
- manager_.CreateTextureInfo(kTexture1Id);
- info_ = manager_.GetTextureInfo(kTexture1Id);
+ manager_.CreateTextureInfo(kClient1Id, kService1Id);
+ info_ = manager_.GetTextureInfo(kClient1Id);
ASSERT_TRUE(info_ != NULL);
}
@@ -295,7 +298,7 @@
EXPECT_TRUE(info_->GetLevelSize(GL_TEXTURE_2D, 1, &width, &height));
EXPECT_EQ(4, width);
EXPECT_EQ(5, height);
- manager_.RemoveTextureInfo(info_->texture_id());
+ manager_.RemoveTextureInfo(kClient1Id);
EXPECT_FALSE(info_->GetLevelSize(GL_TEXTURE_2D, 1, &width, &height));
}
« no previous file with comments | « gpu/command_buffer/service/texture_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698