diff options
author | Stéphane Marchesin <[email protected]> | 2011-06-26 19:38:12 -0700 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2011-06-27 02:05:59 -0700 |
commit | 9d29d48bb05907180881340862e2ebcd271af63d (patch) | |
tree | 852bda657e6182d41ae0be80126d8f8bfc19562f | |
parent | b13865e694884ac08ff6acd5f55088156029f50e (diff) |
i915g: Return the max result for the fake occlusion queries.
-rw-r--r-- | src/gallium/drivers/i915/i915_query.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_query.c b/src/gallium/drivers/i915/i915_query.c index 77ed946c5c5..c886df74bad 100644 --- a/src/gallium/drivers/i915/i915_query.c +++ b/src/gallium/drivers/i915/i915_query.c @@ -69,7 +69,8 @@ static boolean i915_get_query_result(struct pipe_context *ctx, { uint64_t *result = (uint64_t*)vresult; - *result = 0; + /* 2* viewport Max */ + *result = 512*1024*1024; return TRUE; } |