Fix sort order of unlaunched apps on app list start page.
[chromium-blink-merge.git] / gpu / GLES2 / extensions / CHROMIUM / CHROMIUM_sync_query.txt
blob98763d0a38362dc5d1f522089759b1a6c95a0447
1 Name
3     CHROMIUM_sync_query
5 Name Strings
7     GL_CHROMIUM_sync_query
9 Version
11     Last Modifed Date: April 15, 2014
13 Dependencies
15     OpenGL ES 2.0 is required.
17     EXT_occlusion_query_boolean is required.
19 Overview
21     This extension provides a query mechanism that allow for synchronization
22     between the host CPU and the GPU, which may be accessing the same
23     resources (typically memory).
25     This extension is useful in conjunction with CHROMIUM_map_image to
26     determine when it is safe to access a mapped image. Once the result of
27     a COMMANDS_COMPLETED_CHROMIUM query is available, all drawing commands
28     issued before the query must have finished. This ensures that the memory
29     corresponding to the issued commands can be safely modified (assuming no
30     other outstanding drawing commands are issued subsequent to the query).
32 New Procedures and Functions
34     None.
36 Errors
38     None.
40 New Tokens
42     Accepted by the <target> parameter of BeginQueryEXT, EndQueryEXT,
43     and GetQueryivEXT:
45         COMMANDS_COMPLETED_CHROMIUM                     0x84F7
47 New State
49     None.
51 Revision History
53     4/15/2014   Documented the extension