[Mesa-dev] [PATCH 18/18] mesa: Enable simultaneous transform feedback queries on different streams.

2014-06-11 Thread Iago Toral Quiroga
It should be possible to query the number of primitives written to each individual stream by a geometry shader in a single draw call. For that we need to have up to MAX_VERTEX_STREAM separate query objects. --- src/mesa/main/mtypes.h | 2 +- src/mesa/main/queryobj.c | 17 + 2

Re: [Mesa-dev] [PATCH 18/18] mesa: Enable simultaneous transform feedback queries on different streams.

2014-06-11 Thread Chris Forbes
On Wed, Jun 11, 2014 at 7:49 PM, Iago Toral Quiroga ito...@igalia.com wrote: It should be possible to query the number of primitives written to each individual stream by a geometry shader in a single draw call. For that we need to have up to MAX_VERTEX_STREAM separate query objects. ---