| Index: gpu/command_buffer/service/test_helper.h
|
| diff --git a/gpu/command_buffer/service/test_helper.h b/gpu/command_buffer/service/test_helper.h
|
| index a7eaec2afe3bc2d5933ebb2e1984baa408adf9f7..5998915b3826f9f92aa88bcbe34f50fcf0656a0c 100644
|
| --- a/gpu/command_buffer/service/test_helper.h
|
| +++ b/gpu/command_buffer/service/test_helper.h
|
| @@ -27,12 +27,16 @@ class TestHelper {
|
| public:
|
| static const GLuint kServiceBlackTexture2dId = 701;
|
| static const GLuint kServiceDefaultTexture2dId = 702;
|
| - static const GLuint kServiceBlackTextureCubemapId = 703;
|
| - static const GLuint kServiceDefaultTextureCubemapId = 704;
|
| - static const GLuint kServiceBlackExternalTextureId = 705;
|
| - static const GLuint kServiceDefaultExternalTextureId = 706;
|
| - static const GLuint kServiceBlackRectangleTextureId = 707;
|
| - static const GLuint kServiceDefaultRectangleTextureId = 708;
|
| + static const GLuint kServiceBlackTexture3dId = 703;
|
| + static const GLuint kServiceDefaultTexture3dId = 704;
|
| + static const GLuint kServiceBlackTexture2dArrayId = 705;
|
| + static const GLuint kServiceDefaultTexture2dArrayId = 706;
|
| + static const GLuint kServiceBlackTextureCubemapId = 707;
|
| + static const GLuint kServiceDefaultTextureCubemapId = 708;
|
| + static const GLuint kServiceBlackExternalTextureId = 709;
|
| + static const GLuint kServiceDefaultExternalTextureId = 710;
|
| + static const GLuint kServiceBlackRectangleTextureId = 711;
|
| + static const GLuint kServiceDefaultRectangleTextureId = 712;
|
|
|
| static const GLint kMaxSamples = 4;
|
| static const GLint kMaxRenderbufferSize = 1024;
|
| @@ -83,10 +87,12 @@ class TestHelper {
|
| const char* gl_renderer,
|
| const char* gl_version);
|
| static void SetupTextureManagerInitExpectations(::gfx::MockGLInterface* gl,
|
| + bool is_es3_enabled,
|
| const char* extensions,
|
| bool use_default_textures);
|
| static void SetupTextureManagerDestructionExpectations(
|
| ::gfx::MockGLInterface* gl,
|
| + bool is_es3_enabled,
|
| const char* extensions,
|
| bool use_default_textures);
|
|
|
|
|