diff options
author | Ilia Mirkin <[email protected]> | 2014-06-26 19:33:07 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-07-01 11:34:31 -0400 |
commit | 43e4b3e311df3bede930229380a7aa389ac7019a (patch) | |
tree | 4dffb0752eb8ac60416156b277074cb3a290efdd /src/gallium/docs | |
parent | 7f1b365f65ed5b95a941cf22f35f480d00739d4b (diff) |
gallium: add an index argument to create_query
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/docs')
-rw-r--r-- | src/gallium/docs/source/context.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/docs/source/context.rst b/src/gallium/docs/source/context.rst index a9625f39edc..5861f46b30d 100644 --- a/src/gallium/docs/source/context.rst +++ b/src/gallium/docs/source/context.rst @@ -300,6 +300,10 @@ Queries can be created with ``create_query`` and deleted with ``destroy_query``. To start a query, use ``begin_query``, and when finished, use ``end_query`` to end the query. +``create_query`` takes a query type (``PIPE_QUERY_*``), as well as an index, +which is the vertex stream for ``PIPE_QUERY_PRIMITIVES_GENERATED`` and +``PIPE_QUERY_PRIMITIVES_EMITTED``, and allocates a query structure. + ``begin_query`` will clear/reset previous query results. ``get_query_result`` is used to retrieve the results of a query. If |