diff options
author | Marek Olšák <[email protected]> | 2015-08-30 03:17:30 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-09-01 21:51:15 +0200 |
commit | fc95058add3d7a90220548e0bb5679d97264f3d2 (patch) | |
tree | 31b79e77b7954fe502c4585c710f276a1bb9b3b1 /src/gallium/drivers/radeonsi/si_state.h | |
parent | 7ff2991e344130c8eb6e4be0b146320b3f02c1e6 (diff) |
radeonsi: convert SPI state to an atom
Reviewed-by: Alex Deucher <[email protected]>
Acked-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h index a396f07e926..b15f971f369 100644 --- a/src/gallium/drivers/radeonsi/si_state.h +++ b/src/gallium/drivers/radeonsi/si_state.h @@ -99,7 +99,6 @@ union si_state { struct si_pm4_state *vgt_shader_config; struct si_pm4_state *vs; struct si_pm4_state *ps; - struct si_pm4_state *spi; } named; struct si_pm4_state *array[0]; }; @@ -123,6 +122,7 @@ union si_state_atoms { struct r600_atom *scissors; struct r600_atom *viewports; struct r600_atom *stencil_ref; + struct r600_atom *spi_map; } s; struct r600_atom *array[0]; }; |