mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-16 10:30:46 +01:00
radeonsi: fix references to sctx->flags in documentation
It was renamed barrier_flags. Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39308>
This commit is contained in:
parent
c77828c8e9
commit
db4b1cdb3b
1 changed files with 2 additions and 2 deletions
|
|
@ -2270,10 +2270,10 @@ si_set_rasterized_prim(struct si_context *sctx, enum mesa_prim rast_prim,
|
|||
* 2) sctx->barrier_flags |= ...; // multiple times
|
||||
* si_mark_atom_dirty(sctx, &sctx->atoms.s.barrier); // deferred
|
||||
*
|
||||
* 3) sctx->flags |= ...;
|
||||
* 3) sctx->barrier_flags |= ...;
|
||||
* si_emit_barrier_direct(sctx); // immediate
|
||||
*
|
||||
* 4) sctx->flags |= ...;
|
||||
* 4) sctx->barrier_flags |= ...;
|
||||
* sctx->emit_barrier(sctx, cs); // immediate (2 is better though)
|
||||
*/
|
||||
static inline void si_emit_barrier_direct(struct si_context *sctx)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue