i965: Rename gen10_emit_isp_disable to gen7_emit_isp_disable

It's used on Gen7+, and there's nothing Gen10-specific about it.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6899>
This commit is contained in:
Ian Romanick 2020-09-24 11:49:13 -07:00
parent fe26109123
commit 112f23fd33
3 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@ gen7_emit_vs_workaround_flush(struct brw_context *brw)
* so that it doesn't hang a previous 3DPRIMITIVE.
*/
void
gen10_emit_isp_disable(struct brw_context *brw)
gen7_emit_isp_disable(struct brw_context *brw)
{
brw->vtbl.emit_raw_pipe_control(brw,
PIPE_CONTROL_STALL_AT_SCOREBOARD |

View File

@ -90,6 +90,6 @@ void brw_emit_post_sync_nonzero_flush(struct brw_context *brw);
void brw_emit_depth_stall_flushes(struct brw_context *brw);
void gen7_emit_vs_workaround_flush(struct brw_context *brw);
void gen7_emit_cs_stall_flush(struct brw_context *brw);
void gen10_emit_isp_disable(struct brw_context *brw);
void gen7_emit_isp_disable(struct brw_context *brw);
#endif

View File

@ -644,7 +644,7 @@ brw_finish_batch(struct brw_context *brw)
/* Do not restore push constant packets during context restore. */
if (devinfo->gen >= 7)
gen10_emit_isp_disable(brw);
gen7_emit_isp_disable(brw);
/* Emit MI_BATCH_BUFFER_END to finish our batch. Note that execbuf2
* requires our batch size to be QWord aligned, so we pad it out if