gallium/docs: document result type for some types of queries
authorBrian Paul <brianp@vmware.com>
Tue, 18 Jan 2011 23:34:22 +0000 (16:34 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 19 Jan 2011 14:41:55 +0000 (07:41 -0700)
src/gallium/docs/source/context.rst

index c33cf7c57380b04548d3fa04e2633a2a1d63beff..6760e7be4b90cdb44fac4dbe87d3fdd5eb091a16 100644 (file)
@@ -232,9 +232,11 @@ The most common type of query is the occlusion query,
 ``PIPE_QUERY_OCCLUSION_COUNTER``, which counts the number of fragments which
 are written to the framebuffer without being culled by
 :ref:`Depth, Stencil, & Alpha` testing or shader KILL instructions.
+The result is an unsigned 64-bit integer.
 
 Another type of query, ``PIPE_QUERY_TIME_ELAPSED``, returns the amount of
 time, in nanoseconds, the context takes to perform operations.
+The result is an unsigned 64-bit integer.
 
 Gallium does not guarantee the availability of any query types; one must
 always check the capabilities of the :ref:`Screen` first.