Fix sort order of unlaunched apps on app list start page.
[chromium-blink-merge.git] / gpu / GLES2 / extensions / CHROMIUM / CHROMIUM_future_sync_point.txt
blob6da280a2f7e9f619585689df1d2a7f6e79a58ef0
1 Name
3     CHROMIUM_future_sync_point
5 Name Strings
7     GL_CHROMIUM_future_sync_point
9 Version
11     Last Modifed Date: July 14, 2014
13 Dependencies
15     OpenGL ES 2.0 is required.
16     This extension depends on CHROMIUM_sync_point
18 Overview
20     This extension allows sync points to be created that won't be retired
21     immediately.
23 Issues
25     None
27 New Tokens
29     None
31 New Procedures and Functions
33     The command
35         uint InsertFutureSyncPointCHROMIUM()
37     creates a sync point, but does neither insert it into nor flush the
38     stream of commands.
39     The returned sync point name can be waited on immediately, but will not be
40     signalled until a retire command is sent, or until the context is
41     destroyed, whichever happens first.
43     The command
45         void RetireSyncPointCHROMIUM(uint sync_point)
47     causes a sync point to be signaled as soon as the previous commands have
48     been submitted to the server. The sync point named <sync_point> must have
49     been returned by InsertFutureSyncPointCHROMIUM. The sync point name will
50     be implicitly deleted when it becomes signaled.
52 Errors
54     None.
56 New State
58     None.
60 Revision History
62     7/14/2014     Initial documentation.