mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
radeonsi/tmz: add workaround for mpv/vaapi subtitles
Subtitles are rendering with an upload through a staging texture.
So the sequence is:
1. draw video (with a secure cs)
2. copy staging texture to the real texture (via si_resource_copy_region) in
a non-secure cs.
3. draw video (with a secure cs)
Step 2 and 3 both generates a flush with RADEON_FLUSH_TOGGLE_SECURE_SUBMISSION.
These flushes are executed quite late: right before doing the draw/dispatch,
so maybe the issue here is the handling of dependencies.
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6049>
This commit is contained in:
parent
2c6643546a
commit
2479689968
1 changed files with 6 additions and 1 deletions
|
|
@ -97,7 +97,12 @@ void si_flush_gfx_cs(struct si_context *ctx, unsigned flags, struct pipe_fence_h
|
|||
} else if (ctx->chip_class == GFX6) {
|
||||
/* The kernel flushes L2 before shaders are finished. */
|
||||
wait_flags |= wait_ps_cs;
|
||||
} else if (!(flags & RADEON_FLUSH_START_NEXT_GFX_IB_NOW)) {
|
||||
} else if (!(flags & RADEON_FLUSH_START_NEXT_GFX_IB_NOW) ||
|
||||
((flags & RADEON_FLUSH_TOGGLE_SECURE_SUBMISSION) &&
|
||||
!ws->cs_is_secure(cs))) {
|
||||
/* TODO: this workaround fixes subtitles rendering with mpv -vo=vaapi and
|
||||
* tmz but shouldn't be necessary.
|
||||
*/
|
||||
wait_flags |= wait_ps_cs;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue