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

Unified Diff: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_future_sync_point.txt

Issue 362863002: Add future sync point methods to ContextSupport. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months 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
« no previous file with comments | « cc/test/test_context_support.cc ('k') | gpu/command_buffer/client/context_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_future_sync_point.txt
diff --git a/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_future_sync_point.txt b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_future_sync_point.txt
new file mode 100644
index 0000000000000000000000000000000000000000..baf427e59640a119ca27689601925b83a613efa5
--- /dev/null
+++ b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_future_sync_point.txt
@@ -0,0 +1,61 @@
+Name
+
+ CHROMIUM_future_sync_point
+
+Name Strings
+
+ GL_CHROMIUM_future_sync_point
+
+Version
+
+ Last Modifed Date: July 14, 2014
+
+Dependencies
+
+ OpenGL ES 2.0 is required.
+ This extension depends on CHROMIUM_sync_point
+
+Overview
+
+ This extension allows sync points to be created that won't be retired
+ immediately.
+
+Issues
+
+ None
+
+New Tokens
+
+ None
+
+New Procedures and Functions
+
+ The command
+
+ uint InsertFutureSyncPointCHROMIUM()
+
+ creates a sync point, but does not insert it into the stream of commands.
+ The returned sync point name can be waited on immediately, but will not be
+ signalled until a retire command is sent, or until the context is
+ destroyed, whichever happens first.
+
+ The command
+
+ void RetireSyncPointCHROMIUM(uint sync_point)
+
+ causes a sync point to be signaled as soon as the previous commands have
+ been submitted to the server. The sync point named <sync_point> must have
+ been returned by InsertFutureSyncPointCHROMIUM. The sync point name will
+ be implicitly deleted when it becomes signaled.
+
+Errors
+
+ None.
+
+New State
+
+ None.
+
+Revision History
+
+ 7/14/2014 Initial documentation.
« no previous file with comments | « cc/test/test_context_support.cc ('k') | gpu/command_buffer/client/context_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698