diff options
author | Zack Rusin <[email protected]> | 2013-04-09 03:50:32 -0700 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2013-04-10 12:32:56 -0700 |
commit | c1cd19c3b8339a48024e381515806186b8056256 (patch) | |
tree | 7632b0744ca9d78a4381aa92ab56aa386c7c1e95 /src/gallium/drivers/llvmpipe/lp_rast.c | |
parent | 7466e0b6c84ce0c6029e60739daac8baeccb8b0b (diff) |
llvmpipe: implement PIPE_QUERY_SO_STATISTICS
We were missing the implementation of PIPE_QUERY_SO_STATISTICS
query, this change implements it on top of the existing
facilities.
Signed-off-by: Zack Rusin <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_rast.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast.c b/src/gallium/drivers/llvmpipe/lp_rast.c index 6183f4108d6..6cb27020566 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast.c +++ b/src/gallium/drivers/llvmpipe/lp_rast.c @@ -476,6 +476,7 @@ lp_rast_begin_query(struct lp_rasterizer_task *task, break; case PIPE_QUERY_PRIMITIVES_GENERATED: case PIPE_QUERY_PRIMITIVES_EMITTED: + case PIPE_QUERY_SO_STATISTICS: break; default: assert(0); @@ -507,6 +508,7 @@ lp_rast_end_query(struct lp_rasterizer_task *task, break; case PIPE_QUERY_PRIMITIVES_GENERATED: case PIPE_QUERY_PRIMITIVES_EMITTED: + case PIPE_QUERY_SO_STATISTICS: break; default: assert(0); |