mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
iris: Replace I915_EXEC_FENCE_SIGNAL by IRIS_BATCH_FENCE_SIGNAL in common code
This I915_EXEC_FENCE_SIGNAL was missed in the conversion from i915_drm.h types to IRIS ones. Both have the same value, so it was not causing any issues. Signed-off-by: José Roberto de Souza <jose.souza@intel.com> Reviewed-by: Marcin Ślusarz <marcin.slusarz@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23905>
This commit is contained in:
parent
1174e7412e
commit
0579627f21
1 changed files with 1 additions and 1 deletions
|
|
@ -601,7 +601,7 @@ iris_fence_signal(struct pipe_context *ctx,
|
|||
continue;
|
||||
|
||||
batch->contains_fence_signal = true;
|
||||
iris_batch_add_syncobj(batch, fine->syncobj, I915_EXEC_FENCE_SIGNAL);
|
||||
iris_batch_add_syncobj(batch, fine->syncobj, IRIS_BATCH_FENCE_SIGNAL);
|
||||
}
|
||||
if (batch->contains_fence_signal)
|
||||
iris_batch_flush(batch);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue