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/r600/r600_state_common.c | |
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/r600/r600_state_common.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_state_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_state_common.c b/src/gallium/drivers/r600/r600_state_common.c index bb994297c11..48c54432956 100644 --- a/src/gallium/drivers/r600/r600_state_common.c +++ b/src/gallium/drivers/r600/r600_state_common.c @@ -2829,7 +2829,7 @@ static void r600_invalidate_buffer(struct pipe_context *ctx, struct pipe_resourc } /* Texture buffer objects - update the virtual addresses in descriptors. */ - LIST_FOR_EACH_ENTRY(view, &rctx->b.texture_buffers, list) { + LIST_FOR_EACH_ENTRY(view, &rctx->texture_buffers, list) { if (view->base.texture == &rbuffer->b.b) { uint64_t offset = view->base.u.buf.offset; uint64_t va = rbuffer->gpu_address + offset; |