diff options
author | Anuj Phogat <[email protected]> | 2016-09-26 11:32:55 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2016-10-04 13:20:35 -0700 |
commit | deeb1e95d02da778910c669e15c648a1ea156258 (patch) | |
tree | 2481cfa40e9af8259023d74bb8b87d5c81e22c92 /src/intel | |
parent | 517b1bf49922af12183bdcc5b4e648c897a59d5a (diff) |
anv/gen7_pipeline: Move ksp{1,2} state setting next to ksp0
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/gen7_pipeline.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/intel/vulkan/gen7_pipeline.c b/src/intel/vulkan/gen7_pipeline.c index 8d133b6c0f2..8de9749043d 100644 --- a/src/intel/vulkan/gen7_pipeline.c +++ b/src/intel/vulkan/gen7_pipeline.c @@ -202,6 +202,8 @@ genX(graphics_pipeline_create)( anv_batch_emit(&pipeline->batch, GENX(3DSTATE_PS), ps) { ps.KernelStartPointer0 = pipeline->ps_ksp0; + ps.KernelStartPointer1 = 0; + ps.KernelStartPointer2 = pipeline->ps_ksp0 + wm_prog_data->prog_offset_2; ps.ScratchSpaceBasePointer = (struct anv_address) { .bo = anv_scratch_pool_alloc(device, &device->scratch_pool, @@ -235,9 +237,6 @@ genX(graphics_pipeline_create)( /* Haswell requires the sample mask to be set in this packet as well as * in 3DSTATE_SAMPLE_MASK; the values should match. */ /* _NEW_BUFFERS, _NEW_MULTISAMPLE */ - - ps.KernelStartPointer1 = 0; - ps.KernelStartPointer2 = pipeline->ps_ksp0 + wm_prog_data->prog_offset_2; } uint32_t samples = pCreateInfo->pMultisampleState ? |