radv: move spi_baryc_cntl to pipeline
authorDave Airlie <airlied@redhat.com>
Wed, 24 Jan 2018 02:53:26 +0000 (12:53 +1000)
committerDave Airlie <airlied@redhat.com>
Wed, 24 Jan 2018 20:47:28 +0000 (06:47 +1000)
We need to enable the pos float location 2 mode anytime we have
persample not just when forced by the frag shader.

This fixes:
dEQP-VK.pipeline.multisample.min_sample_shading*

Fixes: 58c97a079 (radv: enable location at sample when persample is forced.)
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/vulkan/radv_cmd_buffer.c
src/amd/vulkan/radv_pipeline.c
src/amd/vulkan/radv_private.h

index 1143aa085f5a491e52abaf5c8f7d4d8df1e91882..6d512c6070abc42c36f50c870e5ce31db760d2d5 100644 (file)
@@ -990,7 +990,6 @@ radv_emit_fragment_shader(struct radv_cmd_buffer *cmd_buffer,
 {
        struct radv_shader_variant *ps;
        uint64_t va;
-       unsigned spi_baryc_cntl = S_0286E0_FRONT_FACE_ALL_BITS(1);
        struct radv_blend_state *blend = &pipeline->graphics.blend;
        assert (pipeline->shaders[MESA_SHADER_FRAGMENT]);
 
@@ -1012,13 +1011,10 @@ radv_emit_fragment_shader(struct radv_cmd_buffer *cmd_buffer,
        radeon_set_context_reg(cmd_buffer->cs, R_0286D0_SPI_PS_INPUT_ADDR,
                               ps->config.spi_ps_input_addr);
 
-       if (ps->info.info.ps.force_persample)
-               spi_baryc_cntl |= S_0286E0_POS_FLOAT_LOCATION(2);
-
        radeon_set_context_reg(cmd_buffer->cs, R_0286D8_SPI_PS_IN_CONTROL,
                               S_0286D8_NUM_INTERP(ps->info.fs.num_interp));
 
-       radeon_set_context_reg(cmd_buffer->cs, R_0286E0_SPI_BARYC_CNTL, spi_baryc_cntl);
+       radeon_set_context_reg(cmd_buffer->cs, R_0286E0_SPI_BARYC_CNTL, pipeline->graphics.spi_baryc_cntl);
 
        radeon_set_context_reg(cmd_buffer->cs, R_028710_SPI_SHADER_Z_FORMAT,
                               pipeline->graphics.shader_z_format);
index 21333b808abf8f3233047d2f1ab8840784d63217..41a206a634ecb17e8accd8bb8dc0d6c58383b569 100644 (file)
@@ -861,6 +861,8 @@ radv_pipeline_init_multisample_state(struct radv_pipeline *pipeline,
                        S_028BE0_MAX_SAMPLE_DIST(radv_cayman_get_maxdist(log_samples)) |
                        S_028BE0_MSAA_EXPOSED_SAMPLES(log_samples); /* CM_R_028BE0_PA_SC_AA_CONFIG */
                ms->pa_sc_mode_cntl_1 |= S_028A4C_PS_ITER_SAMPLE(ps_iter_samples > 1);
+               if (ps_iter_samples > 1)
+                       pipeline->graphics.spi_baryc_cntl |= S_0286E0_POS_FLOAT_LOCATION(2);
        }
 
        const struct VkPipelineRasterizationStateRasterizationOrderAMD *raster_order =
@@ -2449,6 +2451,7 @@ radv_pipeline_init(struct radv_pipeline *pipeline,
                            radv_generate_graphics_pipeline_key(pipeline, pCreateInfo, has_view_index),
                            pStages);
 
+       pipeline->graphics.spi_baryc_cntl = S_0286E0_FRONT_FACE_ALL_BITS(1);
        radv_pipeline_init_depth_stencil_state(pipeline, pCreateInfo, extra);
        radv_pipeline_init_raster_state(pipeline, pCreateInfo);
        radv_pipeline_init_multisample_state(pipeline, pCreateInfo);
index 711ae7192662ccd02146f3f3032a164ca1926a89..f650b9a360e08f2eedfa4b2a41e78d685e5a0c76 100644 (file)
@@ -1239,6 +1239,7 @@ struct radv_pipeline {
                        struct radv_binning_state bin;
                        uint32_t db_shader_control;
                        uint32_t shader_z_format;
+                       uint32_t spi_baryc_cntl;
                        unsigned prim;
                        unsigned gs_out;
                        uint32_t vgt_gs_mode;