mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
anv/cmd_buffer: Emit PIPE_CONTROL with ISP bit on older platforms.
Emit it on all platforms since gen7. Signed-off-by: Rafael Antognolli <rafael.antognolli@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
2b4afaef1c
commit
fa21ddf7b1
1 changed files with 2 additions and 4 deletions
|
|
@ -975,8 +975,7 @@ genX(BeginCommandBuffer)(
|
|||
* emit push constants again before any rendering operation. So we
|
||||
* flag them dirty here to make sure they get emitted.
|
||||
*/
|
||||
if (GEN_GEN == 10)
|
||||
cmd_buffer->state.push_constants_dirty |= VK_SHADER_STAGE_ALL_GRAPHICS;
|
||||
cmd_buffer->state.push_constants_dirty |= VK_SHADER_STAGE_ALL_GRAPHICS;
|
||||
|
||||
VkResult result = VK_SUCCESS;
|
||||
if (cmd_buffer->usage_flags &
|
||||
|
|
@ -1074,8 +1073,7 @@ genX(EndCommandBuffer)(
|
|||
|
||||
genX(cmd_buffer_apply_pipe_flushes)(cmd_buffer);
|
||||
|
||||
if (GEN_GEN == 10)
|
||||
emit_isp_disable(cmd_buffer);
|
||||
emit_isp_disable(cmd_buffer);
|
||||
|
||||
anv_cmd_buffer_end_batch_buffer(cmd_buffer);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue