Add vulkan driver for BDW
[mesa.git] / src / glsl / glsl_parser.yy
index 3ce9e103f205fe46fdeab0564c83e54a121a6731..41106060e5e1d4b535da6ebd9aeb8c0d9bd05436 100644 (file)
@@ -1431,6 +1431,11 @@ layout_qualifier_id:
          $$.binding = $3;
       }
 
+      if (match_layout_qualifier("set", $1, state) == 0) {
+         $$.flags.q.vk_set = 1;
+         $$.set = $3;
+      }
+
       if (state->has_atomic_counters() &&
           match_layout_qualifier("offset", $1, state) == 0) {
          $$.flags.q.explicit_offset = 1;