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

Unified Diff: gpu/command_buffer/tests/gl_query_unittest.cc

Issue 240273006: Revert of gpu: Add CHROMIUM_sync_query extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/query_manager.cc ('k') | ui/gl/gl_bindings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/tests/gl_query_unittest.cc
diff --git a/gpu/command_buffer/tests/gl_query_unittest.cc b/gpu/command_buffer/tests/gl_query_unittest.cc
index 52423a832714bc4b39abf1c152a65b7a6c0f97e3..9a8948fa15478301223fcf3bcc9e9581cc8c22ac 100644
--- a/gpu/command_buffer/tests/gl_query_unittest.cc
+++ b/gpu/command_buffer/tests/gl_query_unittest.cc
@@ -150,22 +150,6 @@
EXPECT_LE(query_result, kTimePrecisionMicroseconds);
}
-TEST_F(QueryTest, SyncQueryBasic) {
- EXPECT_TRUE(GLTestHelper::HasExtension("GL_CHROMIUM_sync_query"));
-
- GLuint query = 0;
- glGenQueriesEXT(1, &query);
-
- glBeginQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM, query);
- glEndQueryEXT(GL_COMMANDS_COMPLETED_CHROMIUM);
-
- glFinish();
-
- GLuint available = 0;
- glGetQueryObjectuivEXT(query, GL_QUERY_RESULT_AVAILABLE_EXT, &available);
- EXPECT_TRUE(available);
-}
-
} // namespace gpu
« no previous file with comments | « gpu/command_buffer/service/query_manager.cc ('k') | ui/gl/gl_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698