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

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

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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/feature_info.cc ('k') | gpu/command_buffer/service/gl_context_mock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8097a0be236430d9d0587ac0a6c910f517e02f2f..fde1f1d6c0ed5d6e3323054dc8336ae4c5ee1698 100644
--- a/gpu/command_buffer/service/feature_info_unittest.cc
+++ b/gpu/command_buffer/service/feature_info_unittest.cc
@@ -1312,7 +1312,7 @@ TEST_P(FeatureInfoTest, InitializeWithES3) {
EXPECT_TRUE(info_->feature_flags().ext_discard_framebuffer);
EXPECT_THAT(info_->extensions(), HasSubstr("GL_EXT_discard_framebuffer"));
EXPECT_TRUE(info_->feature_flags().chromium_sync_query);
- EXPECT_TRUE(gfx::GLFence::IsSupported());
+ EXPECT_TRUE(gl::GLFence::IsSupported());
}
TEST_P(FeatureInfoTest, InitializeWithoutSamplers) {
@@ -1347,13 +1347,13 @@ TEST_P(FeatureInfoTest, ParseDriverBugWorkaroundsMultiple) {
TEST_P(FeatureInfoTest, InitializeWithARBSync) {
SetupInitExpectations("GL_ARB_sync");
EXPECT_TRUE(info_->feature_flags().chromium_sync_query);
- EXPECT_TRUE(gfx::GLFence::IsSupported());
+ EXPECT_TRUE(gl::GLFence::IsSupported());
}
TEST_P(FeatureInfoTest, InitializeWithNVFence) {
SetupInitExpectations("GL_NV_fence");
EXPECT_TRUE(info_->feature_flags().chromium_sync_query);
- EXPECT_TRUE(gfx::GLFence::IsSupported());
+ EXPECT_TRUE(gl::GLFence::IsSupported());
}
TEST_P(FeatureInfoTest, InitializeWithNVDrawBuffers) {
« no previous file with comments | « gpu/command_buffer/service/feature_info.cc ('k') | gpu/command_buffer/service/gl_context_mock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698