diff options
author | Marcin Slusarz <[email protected]> | 2011-02-13 22:05:28 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-02-13 22:05:28 +0100 |
commit | 8fe5da89e33a2408c21dd536d0b2e2178aeaef1e (patch) | |
tree | 23bee496b733e89d13ee6e7a1f70d6cc4f837cb2 /src/gallium/drivers/nv50/nv50_query.c | |
parent | e6e4860555068af8aba79d620acafc5fd5214d1f (diff) |
nv50: fix query assertion
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_query.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |