llvmpipe: fix query bug when no there's no scene

This commit is contained in:
Brian Paul 2010-09-20 10:50:15 -06:00
parent 168554904b
commit 7888a2f822
1 changed files with 3 additions and 2 deletions

View 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)) {