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

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

Issue 2383753002: gpu: Add GpuFence framework.
Patch Set: rebase Created 4 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
Index: gpu/gles2_conform_support/egl/context.cc
diff --git a/gpu/gles2_conform_support/egl/context.cc b/gpu/gles2_conform_support/egl/context.cc
index 2d870e7dc2dca6c0317e68995195ee306d4083e0..48e2ea9a7545cfb4ee9ea6dff7d46266c1c0d4b7 100644
--- a/gpu/gles2_conform_support/egl/context.cc
+++ b/gpu/gles2_conform_support/egl/context.cc
@@ -230,6 +230,15 @@ bool Context::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) {
return false;
}
+int32_t Context::CreateFence(ClientFence fence) {
+ NOTIMPLEMENTED();
+ return -1;
+}
+
+void Context::DestroyFence(int32_t id) {
+ NOTIMPLEMENTED();
+}
+
void Context::ApplyCurrentContext(gl::GLSurface* current_surface) {
DCHECK(HasService());
// The current_surface will be the same as

Powered by Google App Engine
This is Rietveld 408576698