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

Unified Diff: blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.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: blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.cc
diff --git a/blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.cc b/blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.cc
index 4c39ffad2e33f321b37b9a9fa6faaefe6b551f0b..755125ba94e3f903452d2388a37e90f33d3f6452 100644
--- a/blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.cc
+++ b/blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.cc
@@ -156,5 +156,23 @@ void BlimpGpuMemoryBufferManager::SetDestructionSyncToken(
NOTIMPLEMENTED();
}
+std::unique_ptr<gfx::GpuFence> BlimpGpuMemoryBufferManager::CreateGpuFence() {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
+std::unique_ptr<gfx::GpuFence>
+BlimpGpuMemoryBufferManager::CreateGpuFenceFromHandle(
+ const gfx::GpuFenceHandle& handle) {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
+gfx::GpuFence* BlimpGpuMemoryBufferManager::GpuFenceFromClientFence(
+ ClientFence fence) {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
} // namespace client
} // namespace blimp

Powered by Google App Engine
This is Rietveld 408576698