summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/r600_pipe_common.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2018-04-01 15:16:26 -0400
committerMarek Olšák <[email protected]>2018-04-05 15:34:58 -0400
commit3de323f9bbc06442c68b711db36ece233398eb0b (patch)
tree3407829d8b1d0d8f03c1c0ffd046b1e851c81531 /src/gallium/drivers/radeon/r600_pipe_common.h
parent2b70dd8c8aad471c7a9ad06ddfe62ab765f7c650 (diff)
radeonsi: switch r600_atom::emit parameter to si_context
Acked-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/r600_pipe_common.h')
-rw-r--r--src/gallium/drivers/radeon/r600_pipe_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h
index b68c9599708..0f4b8598b50 100644
--- a/src/gallium/drivers/radeon/r600_pipe_common.h
+++ b/src/gallium/drivers/radeon/r600_pipe_common.h
@@ -364,7 +364,7 @@ struct r600_memory_object {
/* This encapsulates a state or an operation which can emitted into the GPU
* command stream. */
struct r600_atom {
- void (*emit)(struct r600_common_context *ctx, struct r600_atom *state);
+ void (*emit)(struct si_context *ctx, struct r600_atom *state);
unsigned short id;
};