mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 00:30:11 +01:00
nvc0: make sure to validate compute global buffers on Fermi
No reason to not validate those global buffers and this might avoid fails if someone try to use the global memory from compute programs. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Acked-by: Pierre Moreau <pierre.morrow@free.fr> Acked-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
dcf7938833
commit
e1f5c76047
1 changed files with 3 additions and 1 deletions
|
|
@ -304,8 +304,10 @@ nvc0_compute_state_validate(struct nvc0_context *nvc0)
|
|||
nvc0_compute_validate_textures(nvc0);
|
||||
if (nvc0->dirty_cp & NVC0_NEW_CP_SAMPLERS)
|
||||
nvc0_compute_validate_samplers(nvc0);
|
||||
if (nvc0->dirty_cp & NVC0_NEW_CP_GLOBALS)
|
||||
nvc0_compute_validate_globals(nvc0);
|
||||
|
||||
/* TODO: surfaces, global memory buffers */
|
||||
/* TODO: surfaces */
|
||||
|
||||
nvc0_bufctx_fence(nvc0, nvc0->bufctx_cp, false);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue