diff options
author | Keith Whitwell <[email protected]> | 2010-08-27 17:14:49 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-09-07 13:22:55 +0100 |
commit | 18452c1e87f79327fbd5f27478028b481ee72a5d (patch) | |
tree | 5e78425be5e348db5248a546e953e79bda13d5ff /src/gallium/drivers/llvmpipe/lp_query.h | |
parent | 5024d9b90e88cdc3d8aca14d45cf845efbfb8633 (diff) |
llvmpipe: rework fences and queries
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_query.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_query.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_query.h b/src/gallium/drivers/llvmpipe/lp_query.h index 721c41cb5c9..e93842a2fd0 100644 --- a/src/gallium/drivers/llvmpipe/lp_query.h +++ b/src/gallium/drivers/llvmpipe/lp_query.h @@ -43,13 +43,7 @@ struct llvmpipe_context; struct llvmpipe_query { uint64_t count[LP_MAX_THREADS]; /**< a counter for each thread */ - uint64_t result; /**< total of all counters */ - - pipe_mutex mutex; - unsigned num_tiles, tile_count; - - boolean done; - boolean binned; /**< has this query been binned in the scene? */ + struct lp_fence *fence; /* fence from last scene this was binned in */ }; |