summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/llvmpipe/lp_rast.c
diff options
context:
space:
mode:
authorZack Rusin <[email protected]>2013-04-23 06:19:14 -0400
committerZack Rusin <[email protected]>2013-04-26 22:58:54 -0400
commit562835bcdf8a0b005d46d641f68ba4bcf3fb2a48 (patch)
tree8a9e502e7fa16885337a6557eea1e0e2ff0a968f /src/gallium/drivers/llvmpipe/lp_rast.c
parent49dda2d92f7563057601091e084d0fe154d00d25 (diff)
llvmpipe: implement so_overflow query
Signed-off-by: Zack Rusin <[email protected]> Reviewed-by: José 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.c2
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 29dd933c644..ef49ba9ab6f 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast.c
+++ b/src/gallium/drivers/llvmpipe/lp_rast.c
@@ -478,6 +478,7 @@ lp_rast_begin_query(struct lp_rasterizer_task *task,
case PIPE_QUERY_PRIMITIVES_EMITTED:
case PIPE_QUERY_SO_STATISTICS:
case PIPE_QUERY_PIPELINE_STATISTICS:
+ case PIPE_QUERY_SO_OVERFLOW_PREDICATE:
break;
default:
assert(0);
@@ -511,6 +512,7 @@ lp_rast_end_query(struct lp_rasterizer_task *task,
case PIPE_QUERY_PRIMITIVES_EMITTED:
case PIPE_QUERY_SO_STATISTICS:
case PIPE_QUERY_PIPELINE_STATISTICS:
+ case PIPE_QUERY_SO_OVERFLOW_PREDICATE:
break;
default:
assert(0);