diff options
author | Alex Deucher <[email protected]> | 2011-01-31 02:47:54 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2011-01-31 02:49:27 -0500 |
commit | 26a4c1cb650eee1380f87f3d7e8cff43c3d6a3e6 (patch) | |
tree | 1b14dcf1ccacb127d3d7615245b4537203e7803d /src/gallium/drivers | |
parent | df8089df90de3e720fec46d6118b15094e94ccd7 (diff) |
r600g: fix OQ on evergreen
6xx/7xx have a max of 4 DBs, evergreen have a max of 8.
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r600/r600.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h index 15cfb7f0c46..64c52bca795 100644 --- a/src/gallium/drivers/r600/r600.h +++ b/src/gallium/drivers/r600/r600.h @@ -250,7 +250,7 @@ struct r600_context { struct list_head query_list; unsigned num_query_running; struct list_head fenced_bo; - unsigned num_db; /* for OQ */ + unsigned max_db; /* for OQ */ }; struct r600_draw { |