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

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

Issue 8680002: Added minimal support to command buffer for GL_ARB_texture_rectangle (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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/service/texture_manager_unittest.cc
===================================================================
--- gpu/command_buffer/service/texture_manager_unittest.cc (revision 111321)
+++ gpu/command_buffer/service/texture_manager_unittest.cc (working copy)
@@ -27,12 +27,6 @@
static const GLint kMaxCubeMapLevels = 4;
static const GLint kMaxExternalLevels = 1;
- static const GLuint kServiceBlackTexture2dId = 701;
- static const GLuint kServiceBlackTextureCubemapId = 702;
- static const GLuint kServiceDefaultTexture2dId = 703;
- static const GLuint kServiceDefaultTextureCubemapId = 704;
-
-
TextureManagerTest()
: manager_(kMaxTextureSize, kMaxCubeMapTextureSize) {
}
@@ -69,10 +63,6 @@
const GLint TextureManagerTest::kMax2dLevels;
const GLint TextureManagerTest::kMaxCubeMapLevels;
const GLint TextureManagerTest::kMaxExternalLevels;
-const GLuint TextureManagerTest::kServiceBlackTexture2dId;
-const GLuint TextureManagerTest::kServiceBlackTextureCubemapId;
-const GLuint TextureManagerTest::kServiceDefaultTexture2dId;
-const GLuint TextureManagerTest::kServiceDefaultTextureCubemapId;
#endif
TEST_F(TextureManagerTest, Basic) {

Powered by Google App Engine
This is Rietveld 408576698