diff options
author | Marek Olšák <[email protected]> | 2013-03-26 01:37:40 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-03-26 01:37:40 +0100 |
commit | 98a8e5b87ea99bc64ad85a6b9095f63f71fdbf91 (patch) | |
tree | 397f6bb3bdd24c4fefbbf93d40b203ca46089451 /src/gallium/docs | |
parent | 8ddae684aff5bae3f9bf12b35d938fe53aadc1a8 (diff) |
gallium/docs: document get_driver_query_info
Diffstat (limited to 'src/gallium/docs')
-rw-r--r-- | src/gallium/docs/source/screen.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index 9b8704904ab..8c7e86e1b21 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -440,3 +440,15 @@ get_timestamp Query a timestamp in nanoseconds. The returned value should match PIPE_QUERY_TIMESTAMP. This function returns immediately and doesn't wait for rendering to complete (which cannot be achieved with queries). + + + +get_driver_query_info +^^^^^^^^^^^^^^^^^^^^^ + +Return a driver-specific query. If the **info** parameter is NULL, +the number of available queries is returned. Otherwise, the driver +query at the specified **index** is returned in **info**. +The function returns non-zero on success. +The driver-specific query is described with the pipe_driver_query_info +structure. |