Chromium Code Reviews

Unified Diff: gpu/gles2_conform_support/egl/display.cc

Issue 1489573003: Added an extra sync token field for extra command buffer identification. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: gpu/gles2_conform_support/egl/display.cc
diff --git a/gpu/gles2_conform_support/egl/display.cc b/gpu/gles2_conform_support/egl/display.cc
index b610ced352a068de1cf3e966eaa9f162cc64451d..12488a6543e9d5530f42ade69f161b6596fa35f0 100644
--- a/gpu/gles2_conform_support/egl/display.cc
+++ b/gpu/gles2_conform_support/egl/display.cc
@@ -349,6 +349,10 @@ uint64_t Display::GetCommandBufferID() const {
return 0;
}
+uint32_t Display::GetExtraCommandBufferData() const {
+ return 0;
+}
+
uint64_t Display::GenerateFenceSyncRelease() {
return next_fence_sync_release_++;
}

Powered by Google App Engine