mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-11 08:00:13 +01:00
radv: Compute shader_z_format when emitting it.
Reviewed-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
df2e7ab0db
commit
5dce47ae6d
2 changed files with 3 additions and 8 deletions
|
|
@ -2830,7 +2830,9 @@ radv_pipeline_generate_fragment_shader(struct radeon_winsys_cs *cs,
|
|||
radeon_set_context_reg(cs, R_0286E0_SPI_BARYC_CNTL, pipeline->graphics.spi_baryc_cntl);
|
||||
|
||||
radeon_set_context_reg(cs, R_028710_SPI_SHADER_Z_FORMAT,
|
||||
pipeline->graphics.shader_z_format);
|
||||
ac_get_spi_shader_z_format(ps->info.fs.writes_z,
|
||||
ps->info.fs.writes_stencil,
|
||||
ps->info.fs.writes_sample_mask));
|
||||
|
||||
radeon_set_context_reg(cs, R_028714_SPI_SHADER_COL_FORMAT, blend->spi_shader_col_format);
|
||||
|
||||
|
|
@ -2994,12 +2996,6 @@ radv_pipeline_init(struct radv_pipeline *pipeline,
|
|||
if (pipeline->device->physical_device->has_rbplus)
|
||||
pipeline->graphics.db_shader_control |= S_02880C_DUAL_QUAD_DISABLE(1);
|
||||
|
||||
unsigned shader_z_format =
|
||||
ac_get_spi_shader_z_format(ps->info.fs.writes_z,
|
||||
ps->info.fs.writes_stencil,
|
||||
ps->info.fs.writes_sample_mask);
|
||||
pipeline->graphics.shader_z_format = shader_z_format;
|
||||
|
||||
calculate_vgt_gs_mode(pipeline);
|
||||
|
||||
for (unsigned i = 0; i < MESA_SHADER_STAGES; i++) {
|
||||
|
|
|
|||
|
|
@ -1218,7 +1218,6 @@ struct radv_pipeline {
|
|||
struct radv_tessellation_state tess;
|
||||
struct radv_gs_state gs;
|
||||
uint32_t db_shader_control;
|
||||
uint32_t shader_z_format;
|
||||
uint32_t spi_baryc_cntl;
|
||||
unsigned prim;
|
||||
unsigned gs_out;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue