diff options
author | Marek Olšák <[email protected]> | 2016-10-02 16:12:47 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-10-04 16:12:03 +0200 |
commit | 6c0168439348e6ea801258e373693d4aaa4ee44e (patch) | |
tree | 26bc919996dbf5a45e2c39a5f450a3639f372f73 /src/gallium/drivers/radeon | |
parent | 7ce19d90143875367f23240192d438065dc297fa (diff) |
gallium/radeon: move r600_common_context::texture_buffers to r600g
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.h | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index 0f156dfd4a8..ae495b43e17 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -528,8 +528,6 @@ bool r600_common_context_init(struct r600_common_context *rctx, RADEON_GPU_RESET_COUNTER); } - LIST_INITHEAD(&rctx->texture_buffers); - r600_init_context_texture_functions(rctx); r600_init_viewport_functions(rctx); r600_streamout_init(rctx); diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h index cea1f22c259..1614ed22943 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.h +++ b/src/gallium/drivers/radeon/r600_pipe_common.h @@ -615,11 +615,6 @@ struct r600_common_context { bool query_active; } dcc_stats[5]; - /* The list of all texture buffer objects in this context. - * This list is walked when a buffer is invalidated/reallocated and - * the GPU addresses are updated. */ - struct list_head texture_buffers; - struct pipe_debug_callback debug; void *query_result_shader; |