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

Unified Diff: gpu/ipc/in_process_command_buffer.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/ipc/in_process_command_buffer.cc
diff --git a/gpu/ipc/in_process_command_buffer.cc b/gpu/ipc/in_process_command_buffer.cc
index 54c0f0d3ebd463c6fcb5afd59fe04afc3ebac11a..b926d37e5776d1cece6e035f71ee6fe79b2d44ff 100644
--- a/gpu/ipc/in_process_command_buffer.cc
+++ b/gpu/ipc/in_process_command_buffer.cc
@@ -974,6 +974,15 @@ bool InProcessCommandBuffer::CanWaitUnverifiedSyncToken(
return sync_token->namespace_id() == GetNamespaceID();
}
+int32_t InProcessCommandBuffer::CreateFence(ClientFence fence) {
+ NOTIMPLEMENTED();
+ return -1;
+}
+
+void InProcessCommandBuffer::DestroyFence(int32_t id) {
+ NOTIMPLEMENTED();
+}
+
gpu::error::Error InProcessCommandBuffer::GetLastError() {
CheckSequencedThread();
return last_state_.error;

Powered by Google App Engine
This is Rietveld 408576698