Update vulkan bindings for to work with the new keyword bit_field

This commit is contained in:
gingerBill
2024-02-22 14:09:12 +00:00
parent f3b0b82461
commit b12ba1508e
2 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -565,7 +565,7 @@ def parse_structs(f):
# The second way has many fields that are each 1 bit
elif int(fname) == 1:
bit_field_type = do_type(bit_field[0], prev_name, fname)
ffields.append(tuple(["bit_field", bit_field_type, comment]))
ffields.append(tuple(["bitfield", bit_field_type, comment]))
break