llvmpipe: fix query bug when no there's no scene
authorBrian Paul <brianp@vmware.com>
Mon, 20 Sep 2010 16:50:15 +0000 (10:50 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 20 Sep 2010 16:50:35 +0000 (10:50 -0600)
src/gallium/drivers/llvmpipe/lp_query.c

index ff0e207..84c66dd 100644 (file)
@@ -92,8 +92,9 @@ llvmpipe_get_query_result(struct pipe_context *pipe,
    int i;
 
    if (!pq->fence) {
-      assert(0);                /* query not in issued state */
-      return FALSE;
+      /* no fence because there was no scene, so results is zero */
+      *result = 0;
+      return TRUE;
    }
 
    if (!lp_fence_signalled(pq->fence)) {