diff options
author | Roland Scheidegger <[email protected]> | 2013-06-19 23:42:28 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2013-06-19 23:47:36 +0200 |
commit | 5c9aee111effea2f16437bb3c5b5ad5c69cd7aed (patch) | |
tree | 87d75dbc38613033372174bd3c6c60f57fd4066a /src/gallium/drivers/llvmpipe/lp_jit.h | |
parent | dc5dc4fd943e1da5207e0489c355e9a7ba1dff87 (diff) |
llvmpipe: use 64bit counter for occlusion queries
Some APIs require 64bit and at least for 64bit archs the overhead
should be minimal.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_jit.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_jit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_jit.h b/src/gallium/drivers/llvmpipe/lp_jit.h index 2ecfde75a09..30cfaaef5d6 100644 --- a/src/gallium/drivers/llvmpipe/lp_jit.h +++ b/src/gallium/drivers/llvmpipe/lp_jit.h @@ -164,7 +164,7 @@ enum { struct lp_jit_thread_data { - uint32_t vis_counter; + uint64_t vis_counter; }; |