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

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: Fix mock gpu video accelerator factory Created 5 years, 2 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
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..bc47e61408cf1ce3bdad627d20596504859c1003 100644
--- a/cc/test/test_gles2_interface.cc
+++ b/cc/test/test_gles2_interface.cc
@@ -323,8 +323,9 @@ void TestGLES2Interface::BufferData(GLenum target,
test_context_->bufferData(target, size, data, usage);
}
-void TestGLES2Interface::WaitSyncPointCHROMIUM(GLuint sync_point) {
- test_context_->waitSyncPoint(sync_point);
+void TestGLES2Interface::WaitSyncPointCHROMIUM(GLuint sync_point,
+ const GLbyte* sync_token) {
+ test_context_->waitSyncPoint(sync_point, sync_token);
}
GLuint TestGLES2Interface::InsertSyncPointCHROMIUM() {

Powered by Google App Engine
This is Rietveld 408576698