forked from mirror/vulkan-zig
@@ -1,14 +1,32 @@
|
||||
pub usingnamespace @cImport({
|
||||
const c = @cImport({
|
||||
@cDefine("GLFW_INCLUDE_NONE", {});
|
||||
@cInclude("GLFW/glfw3.h");
|
||||
});
|
||||
|
||||
const vk = @import("vulkan");
|
||||
const c = @This();
|
||||
|
||||
// Re-export the GLFW things that we need
|
||||
pub const GLFW_TRUE = c.GLFW_TRUE;
|
||||
pub const GLFW_FALSE = c.GLFW_FALSE;
|
||||
pub const GLFW_CLIENT_API = c.GLFW_CLIENT_API;
|
||||
pub const GLFW_NO_API = c.GLFW_NO_API;
|
||||
|
||||
pub const GLFWwindow = c.GLFWwindow;
|
||||
|
||||
pub const glfwInit = c.glfwInit;
|
||||
pub const glfwTerminate = c.glfwTerminate;
|
||||
pub const glfwVulkanSupported = c.glfwVulkanSupported;
|
||||
pub const glfwWindowHint = c.glfwWindowHint;
|
||||
pub const glfwCreateWindow = c.glfwCreateWindow;
|
||||
pub const glfwDestroyWindow = c.glfwDestroyWindow;
|
||||
pub const glfwWindowShouldClose = c.glfwWindowShouldClose;
|
||||
pub const glfwGetRequiredInstanceExtensions = c.glfwGetRequiredInstanceExtensions;
|
||||
pub const glfwGetFramebufferSize = c.glfwGetFramebufferSize;
|
||||
pub const glfwPollEvents = c.glfwPollEvents;
|
||||
|
||||
// usually the GLFW vulkan functions are exported if Vulkan is included,
|
||||
// but since thats not the case here, they are manually imported.
|
||||
|
||||
pub extern fn glfwGetInstanceProcAddress(instance: vk.Instance, procname: [*:0]const u8) vk.PfnVoidFunction;
|
||||
pub extern fn glfwGetPhysicalDevicePresentationSupport(instance: vk.Instance, pdev: vk.PhysicalDevice, queuefamily: u32) c_int;
|
||||
pub extern fn glfwCreateWindowSurface(instance: vk.Instance, window: *c.GLFWwindow, allocation_callbacks: ?*const vk.AllocationCallbacks, surface: *vk.SurfaceKHR) vk.Result;
|
||||
pub extern fn glfwCreateWindowSurface(instance: vk.Instance, window: *GLFWwindow, allocation_callbacks: ?*const vk.AllocationCallbacks, surface: *vk.SurfaceKHR) vk.Result;
|
||||
|
||||
@@ -26,6 +26,7 @@ const preamble =
|
||||
\\ .AAPCSVFP
|
||||
\\ else
|
||||
\\ .C;
|
||||
// Note: Keep in sync with flag_functions
|
||||
\\pub fn FlagsMixin(comptime FlagsType: type) type {
|
||||
\\ return struct {
|
||||
\\ pub const IntType = @typeInfo(FlagsType).@"struct".backing_integer.?;
|
||||
@@ -50,9 +51,9 @@ const preamble =
|
||||
\\ pub fn contains(lhs: FlagsType, rhs: FlagsType) bool {
|
||||
\\ return toInt(intersect(lhs, rhs)) == toInt(rhs);
|
||||
\\ }
|
||||
\\ pub usingnamespace FlagFormatMixin(FlagsType);
|
||||
\\ };
|
||||
\\}
|
||||
// Note: Keep in sync with flag_functions
|
||||
\\fn FlagFormatMixin(comptime FlagsType: type) type {
|
||||
\\ return struct {
|
||||
\\ pub fn format(
|
||||
@@ -104,6 +105,76 @@ const preamble =
|
||||
\\};
|
||||
;
|
||||
|
||||
// Keep in sync with above definition of FlagsMixin
|
||||
const flag_functions: []const []const u8 = &.{
|
||||
"toInt",
|
||||
"fromInt",
|
||||
"merge",
|
||||
"intersect",
|
||||
"complement",
|
||||
"subtract",
|
||||
"contains",
|
||||
};
|
||||
|
||||
// Keep in sync with definition of command_flag_functions
|
||||
const command_flags_mixin =
|
||||
\\pub fn CommandFlagsMixin(comptime CommandFlags: type) type {
|
||||
\\ return struct {
|
||||
\\ pub fn merge(lhs: CommandFlags, rhs: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = @field(lhs, field.name) or @field(rhs, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn intersect(lhs: CommandFlags, rhs: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = @field(lhs, field.name) and @field(rhs, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn complement(self: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = !@field(self, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn subtract(lhs: CommandFlags, rhs: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = @field(lhs, field.name) and !@field(rhs, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn contains(lhs: CommandFlags, rhs: CommandFlags) bool {
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ if (!@field(lhs, field.name) and @field(rhs, field.name)) {
|
||||
\\ return false;
|
||||
\\ }
|
||||
\\ }
|
||||
\\ return true;
|
||||
\\ }
|
||||
\\ };
|
||||
\\}
|
||||
\\
|
||||
;
|
||||
|
||||
// Keep in sync with above definition of CommandFlagsMixin
|
||||
const command_flag_functions: []const []const u8 = &.{
|
||||
"merge",
|
||||
"intersect",
|
||||
"complement",
|
||||
"subtract",
|
||||
"contains",
|
||||
};
|
||||
|
||||
const builtin_types = std.StaticStringMap([]const u8).initComptime(.{
|
||||
.{ "void", @typeName(void) },
|
||||
.{ "char", @typeName(u8) },
|
||||
@@ -1009,9 +1080,8 @@ fn Renderer(comptime WriterType: type) type {
|
||||
try self.writer.writeAll(": bool = false,");
|
||||
}
|
||||
}
|
||||
try self.writer.writeAll("pub usingnamespace FlagsMixin(");
|
||||
try self.renderName(name);
|
||||
try self.writer.writeAll(");\n};\n");
|
||||
try self.renderFlagFunctions(name, "FlagsMixin", flag_functions, null);
|
||||
try self.writer.writeAll("};\n");
|
||||
}
|
||||
|
||||
fn renderBitmask(self: *Self, name: []const u8, bitmask: reg.Bitmask) !void {
|
||||
@@ -1026,13 +1096,30 @@ fn Renderer(comptime WriterType: type) type {
|
||||
try self.writer.print(
|
||||
\\ = packed struct {{
|
||||
\\_reserved_bits: {s} = 0,
|
||||
\\pub usingnamespace FlagsMixin(
|
||||
, .{flags_type});
|
||||
try self.renderName(name);
|
||||
try self.writer.writeAll(");\n};\n");
|
||||
try self.renderFlagFunctions(name, "FlagsMixin", flag_functions, null);
|
||||
try self.writer.writeAll("};\n");
|
||||
}
|
||||
}
|
||||
|
||||
fn renderFlagFunctions(
|
||||
self: *Self,
|
||||
name: []const u8,
|
||||
mixin: []const u8,
|
||||
functions: []const []const u8,
|
||||
name_suffix: ?[]const u8,
|
||||
) !void {
|
||||
try self.writer.writeAll("\n");
|
||||
for (functions) |function| {
|
||||
try self.writer.print("pub const {s} = {s}(", .{ function, mixin });
|
||||
try self.renderName(name);
|
||||
try self.writer.print("{s}).{s};\n", .{ name_suffix orelse "", function });
|
||||
}
|
||||
try self.writer.writeAll("pub const format = FlagFormatMixin(");
|
||||
try self.renderName(name);
|
||||
try self.writer.print("{s}).format;\n", .{name_suffix orelse ""});
|
||||
}
|
||||
|
||||
fn renderHandle(self: *Self, name: []const u8, handle: reg.Handle) !void {
|
||||
const backing_type: []const u8 = if (handle.is_dispatchable) "usize" else "u64";
|
||||
|
||||
@@ -1253,55 +1340,7 @@ fn Renderer(comptime WriterType: type) type {
|
||||
}
|
||||
|
||||
fn renderWrappers(self: *Self) !void {
|
||||
try self.writer.writeAll(
|
||||
\\pub fn CommandFlagsMixin(comptime CommandFlags: type) type {
|
||||
\\ return struct {
|
||||
\\ pub fn merge(lhs: CommandFlags, rhs: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = @field(lhs, field.name) or @field(rhs, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn intersect(lhs: CommandFlags, rhs: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = @field(lhs, field.name) and @field(rhs, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn complement(self: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = !@field(self, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn subtract(lhs: CommandFlags, rhs: CommandFlags) CommandFlags {
|
||||
\\ var result: CommandFlags = .{};
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ @field(result, field.name) = @field(lhs, field.name) and !@field(rhs, field.name);
|
||||
\\ }
|
||||
\\ return result;
|
||||
\\ }
|
||||
\\ pub fn contains(lhs: CommandFlags, rhs: CommandFlags) bool {
|
||||
\\ @setEvalBranchQuota(10_000);
|
||||
\\ inline for (@typeInfo(CommandFlags).@"struct".fields) |field| {
|
||||
\\ if (!@field(lhs, field.name) and @field(rhs, field.name)) {
|
||||
\\ return false;
|
||||
\\ }
|
||||
\\ }
|
||||
\\ return true;
|
||||
\\ }
|
||||
\\ pub usingnamespace FlagFormatMixin(CommandFlags);
|
||||
\\ };
|
||||
\\}
|
||||
\\
|
||||
);
|
||||
try self.writer.writeAll(command_flags_mixin);
|
||||
try self.renderWrappersOfDispatchType(.base);
|
||||
try self.renderWrappersOfDispatchType(.instance);
|
||||
try self.renderWrappersOfDispatchType(.device);
|
||||
@@ -1380,13 +1419,10 @@ fn Renderer(comptime WriterType: type) type {
|
||||
}
|
||||
try self.writer.writeAll(" };\n}");
|
||||
|
||||
try self.writer.print(
|
||||
\\ pub usingnamespace CommandFlagsMixin({s}CommandFlags);
|
||||
\\}};
|
||||
\\
|
||||
, .{name});
|
||||
try self.renderFlagFunctions(name, "CommandFlagsMixin", command_flag_functions, "CommandFlags");
|
||||
|
||||
try self.writer.print(
|
||||
\\}};
|
||||
\\pub fn {0s}Wrapper(comptime apis: []const ApiInfo) type {{
|
||||
\\ return struct {{
|
||||
\\ dispatch: Dispatch,
|
||||
|
||||
Reference in New Issue
Block a user