diff options
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pipe.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.h b/src/gallium/drivers/radeonsi/si_pipe.h index a76d52f7ea0..37ff05082cf 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.h +++ b/src/gallium/drivers/radeonsi/si_pipe.h @@ -539,7 +539,6 @@ struct si_screen { }; struct si_blend_color { - struct si_atom atom; struct pipe_blend_color state; bool any_nonzeros; }; @@ -594,7 +593,6 @@ struct si_images { }; struct si_framebuffer { - struct si_atom atom; struct pipe_framebuffer_state state; unsigned colorbuf_enabled_4bit; unsigned spi_shader_col_format; @@ -622,13 +620,11 @@ struct si_signed_scissor { }; struct si_scissors { - struct si_atom atom; unsigned dirty_mask; struct pipe_scissor_state states[SI_MAX_VIEWPORTS]; }; struct si_viewports { - struct si_atom atom; unsigned dirty_mask; unsigned depth_range_dirty_mask; struct pipe_viewport_state states[SI_MAX_VIEWPORTS]; @@ -636,18 +632,15 @@ struct si_viewports { }; struct si_clip_state { - struct si_atom atom; struct pipe_clip_state state; bool any_nonzeros; }; struct si_sample_locs { - struct si_atom atom; unsigned nr_samples; }; struct si_sample_mask { - struct si_atom atom; uint16_t sample_mask; }; @@ -663,7 +656,6 @@ struct si_streamout_target { }; struct si_streamout { - struct si_atom begin_atom; bool begin_emitted; unsigned enabled_mask; @@ -682,7 +674,6 @@ struct si_streamout { unsigned hw_enabled_mask; /* The state of VGT_STRMOUT_(CONFIG|EN). */ - struct si_atom enable_atom; bool streamout_enabled; bool prims_gen_query_enabled; int num_prims_gen_queries; @@ -825,18 +816,12 @@ struct si_context { /* Atom declarations. */ struct si_framebuffer framebuffer; struct si_sample_locs msaa_sample_locs; - struct si_atom db_render_state; - struct si_atom dpbb_state; - struct si_atom msaa_config; struct si_sample_mask sample_mask; - struct si_atom cb_render_state; unsigned last_cb_target_mask; struct si_blend_color blend_color; - struct si_atom clip_regs; struct si_clip_state clip_state; struct si_shader_data shader_pointers; struct si_stencil_ref stencil_ref; - struct si_atom spi_map; struct si_scissors scissors; struct si_streamout streamout; struct si_viewports viewports; @@ -932,7 +917,6 @@ struct si_context { enum pipe_prim_type current_rast_prim; /* primitive type after TES, GS */ /* Scratch buffer */ - struct si_atom scratch_state; struct r600_resource *scratch_buffer; unsigned scratch_waves; unsigned spi_tmpring_size; @@ -1028,7 +1012,6 @@ struct si_context { unsigned num_cs_dw_queries_suspend; /* Render condition. */ - struct si_atom render_cond_atom; struct pipe_query *render_cond; unsigned render_cond_mode; bool render_cond_invert; |