ureg: add buffer support to ureg
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_dump.c
index dad3839d89736c8cc37dab49ad887a67b48e1bec..de3aae5337c0af8889c937152a4438f3e27fa189 100644 (file)
@@ -359,6 +359,11 @@ iter_declaration(
          TXT(", RAW");
    }
 
+   if (decl->Declaration.File == TGSI_FILE_BUFFER) {
+      if (decl->Declaration.Atomic)
+         TXT(", ATOMIC");
+   }
+
    if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
       TXT(", ");
       ENM(decl->SamplerView.Resource, tgsi_texture_names);