From 1abc480b5a00e3707370caf6cdd1f8774c99d724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Thu, 15 Jul 2021 11:39:20 -0400 Subject: [PATCH] radeonsi: document a missing synchronization for bindless textures Reviewed-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/gallium/drivers/radeonsi/si_compute.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/radeonsi/si_compute.c b/src/gallium/drivers/radeonsi/si_compute.c index 4a4e40333e0..37dc9cd0cb5 100644 --- a/src/gallium/drivers/radeonsi/si_compute.c +++ b/src/gallium/drivers/radeonsi/si_compute.c @@ -857,6 +857,8 @@ static bool si_check_needs_implicit_sync(struct si_context *sctx) * * buffer object and texture stores performed by shaders are not * automatically synchronized + * + * TODO: Bindless textures are not handled, and thus are not synchronized. */ struct si_shader_info *info = &sctx->cs_shader_state.program->sel.info; struct si_samplers *samplers = &sctx->samplers[PIPE_SHADER_COMPUTE];