diff options
author | Michel Dänzer <[email protected]> | 2012-08-21 13:48:18 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2012-08-21 15:42:25 +0200 |
commit | 1a25ebe3ce95a6a4aef7c844dbe95909976b68da (patch) | |
tree | 9054e15756548d5b02755a285f218704a2d9a60d /src/gallium/drivers/radeonsi/radeonsi_pm4.c | |
parent | c1114c619acf347917565cd1d0467240a89a76c0 (diff) |
radeonsi: Handle NULL sampler views getting passed in by the state tracker.
Don't dereference NULL pointers, and if all views are NULL, don't generate an
invalid PM4 packet which locks up the GPU.
Signed-off-by: Michel Dänzer <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/radeonsi_pm4.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/radeonsi_pm4.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/radeonsi_pm4.c b/src/gallium/drivers/radeonsi/radeonsi_pm4.c index 3c53ce2e172..8268f914808 100644 --- a/src/gallium/drivers/radeonsi/radeonsi_pm4.c +++ b/src/gallium/drivers/radeonsi/radeonsi_pm4.c @@ -109,6 +109,13 @@ void si_pm4_sh_data_add(struct si_pm4_state *state, uint32_t dw) void si_pm4_sh_data_end(struct si_pm4_state *state, unsigned reg) { unsigned offs = state->last_pm4 + 1; + + /* Bail if no data was added */ + if (state->ndw == offs) { + state->ndw--; + return; + } + si_pm4_cmd_end(state, false); si_pm4_cmd_begin(state, PKT3_SET_SH_REG_OFFSET); |