| Index: gpu/command_buffer/service/feature_info_unittest.cc
|
| diff --git a/gpu/command_buffer/service/feature_info_unittest.cc b/gpu/command_buffer/service/feature_info_unittest.cc
|
| index ac10e8d01d8e8f3e59a9bed7e9aa8bbeadaa98a2..81bf43f4f5a442034865d0f7bfd3a4257a43ad4c 100644
|
| --- a/gpu/command_buffer/service/feature_info_unittest.cc
|
| +++ b/gpu/command_buffer/service/feature_info_unittest.cc
|
| @@ -814,6 +814,13 @@ TEST_F(FeatureInfoTest, InitializeVAOsWithClientSideArrays) {
|
| EXPECT_FALSE(info_->feature_flags().native_vertex_array_object);
|
| }
|
|
|
| +TEST_F(FeatureInfoTest, InitializeEXT_frag_depth) {
|
| + SetupInitExpectations("GL_EXT_frag_depth");
|
| + info_->Initialize(NULL);
|
| + EXPECT_TRUE(info_->feature_flags().ext_frag_depth);
|
| + EXPECT_THAT(info_->extensions(), HasSubstr("GL_EXT_frag_depth"));
|
| +}
|
| +
|
| TEST_F(FeatureInfoTest, InitializeSamplersWithARBSamplerObjects) {
|
| SetupInitExpectationsWithGLVersion("GL_ARB_sampler_objects", "OpenGL 3.0");
|
| info_->Initialize(NULL);
|
|
|