From: Dave Airlie Date: Thu, 10 May 2018 00:01:58 +0000 (+0100) Subject: tgsi/scan: add hw atomic to the list of memory accessing files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2f464de576187891eeadb3e7fadf9ddbf322cba;p=mesa.git tgsi/scan: add hw atomic to the list of memory accessing files This fixes 4 out of 5 cases in: arb_framebuffer_no_attachments-atomic on cayman. Reviewed-by: Marek Olšák Cc: "18.0 18.1" --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index 685a413c4e6..e13500a7f7b 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -50,7 +50,8 @@ is_memory_file(unsigned file) return file == TGSI_FILE_SAMPLER || file == TGSI_FILE_SAMPLER_VIEW || file == TGSI_FILE_IMAGE || - file == TGSI_FILE_BUFFER; + file == TGSI_FILE_BUFFER || + file == TGSI_FILE_HW_ATOMIC; }