forked from mirror/vulkan-zig
Fix another vk.xml moment
This commit is contained in:
@@ -70,12 +70,15 @@ pub const Container = struct {
|
||||
};
|
||||
|
||||
pub const Enum = struct {
|
||||
pub const Value = union(enum) { bitpos: u6, // 1 << bitpos
|
||||
bit_vector: i32, // Combined flags & some vendor IDs
|
||||
int: i32, alias: struct {
|
||||
name: []const u8,
|
||||
is_compat_alias: bool,
|
||||
} };
|
||||
pub const Value = union(enum) {
|
||||
bitpos: u6, // 1 << bitpos
|
||||
bit_vector: i32, // Combined flags & some vendor IDs
|
||||
int: i32,
|
||||
alias: struct {
|
||||
name: []const u8,
|
||||
is_compat_alias: bool,
|
||||
},
|
||||
};
|
||||
|
||||
pub const Field = struct {
|
||||
name: []const u8,
|
||||
|
||||
Reference in New Issue
Block a user