From: Marcin Slusarz Date: Sun, 13 Feb 2011 21:05:28 +0000 (+0100) Subject: nv50: fix query assertion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8fe5da89e33a2408c21dd536d0b2e2178aeaef1e;p=mesa.git nv50: fix query assertion --- diff --git a/src/gallium/drivers/nv50/nv50_query.c b/src/gallium/drivers/nv50/nv50_query.c index 53f94820ce0..f3418df8381 100644 --- a/src/gallium/drivers/nv50/nv50_query.c +++ b/src/gallium/drivers/nv50/nv50_query.c @@ -45,7 +45,7 @@ nv50_query_create(struct pipe_context *pipe, unsigned type) struct nv50_query *q = CALLOC_STRUCT(nv50_query); int ret; - assert (q->type == PIPE_QUERY_OCCLUSION_COUNTER); + assert (type == PIPE_QUERY_OCCLUSION_COUNTER); q->type = type; ret = nouveau_bo_new(dev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 256,