summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/r600.h
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2011-01-31 02:47:54 -0500
committerAlex Deucher <alexdeucher@gmail.com>2011-01-31 02:49:27 -0500
commit26a4c1cb650eee1380f87f3d7e8cff43c3d6a3e6 (patch)
tree1b14dcf1ccacb127d3d7615245b4537203e7803d /src/gallium/drivers/r600/r600.h
parentdf8089df90de3e720fec46d6118b15094e94ccd7 (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 <alexdeucher@gmail.com>
Diffstat (limited to 'src/gallium/drivers/r600/r600.h')
-rw-r--r--src/gallium/drivers/r600/r600.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h
index 15cfb7f0c4..64c52bca79 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 {