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

Unified Diff: cc/test/test_gles2_interface.cc

Issue 1427543002: Modified old wait sync point functions to also accept new sync tokens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format Created 5 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
« no previous file with comments | « cc/test/test_gles2_interface.h ('k') | cc/test/test_web_graphics_context_3d.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/test_gles2_interface.cc
diff --git a/cc/test/test_gles2_interface.cc b/cc/test/test_gles2_interface.cc
index 4b03ac84a019ba546e7b79daefd465837caffef8..4ebdfd3818e7cc89ea65d0e6e0d47e27402f44b5 100644
--- a/cc/test/test_gles2_interface.cc
+++ b/cc/test/test_gles2_interface.cc
@@ -323,14 +323,14 @@ void TestGLES2Interface::BufferData(GLenum target,
test_context_->bufferData(target, size, data, usage);
}
-void TestGLES2Interface::WaitSyncPointCHROMIUM(GLuint sync_point) {
- test_context_->waitSyncPoint(sync_point);
-}
-
GLuint TestGLES2Interface::InsertSyncPointCHROMIUM() {
return test_context_->insertSyncPoint();
}
+void TestGLES2Interface::WaitSyncTokenCHROMIUM(const GLbyte* sync_token) {
+ test_context_->waitSyncToken(sync_token);
+}
+
void TestGLES2Interface::BeginQueryEXT(GLenum target, GLuint id) {
test_context_->beginQueryEXT(target, id);
}
« no previous file with comments | « cc/test/test_gles2_interface.h ('k') | cc/test/test_web_graphics_context_3d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698