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

Unified Diff: ui/gl/gl_fence.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: ui/gl/gl_fence.cc
diff --git a/ui/gl/gl_fence.cc b/ui/gl/gl_fence.cc
index 5930a32b0d6f53e0ba01fd09a639845aaf69f5b9..126aa4ca517666b11b9200e49557b4294de88f23 100644
--- a/ui/gl/gl_fence.cc
+++ b/ui/gl/gl_fence.cc
@@ -83,4 +83,13 @@ void GLFence::Invalidate() {
NOTIMPLEMENTED();
}
+bool GLFence::SignalSupported() {
+ // Signaling a fence isn't supported by default.
+ return false;
+}
+
+void GLFence::Signal() {
+ NOTIMPLEMENTED();
+}
+
} // namespace gl

Powered by Google App Engine
This is Rietveld 408576698