working on Wayland surfaces
Build / build (push) Successful in 1m41s
Test / build_and_test (push) Successful in 35m15s

This commit is contained in:
2026-05-04 03:35:53 +02:00
parent f87fae29e8
commit ed50a39cb4
17 changed files with 357 additions and 44 deletions
+2 -2
View File
@@ -47,9 +47,9 @@ pub fn getMemoryRequirements(_: *Interface, requirements: *vk.MemoryRequirements
}
pub fn getClearFormat(self: *Self) VkError!vk.Format {
return if (base.vku.vkuFormatIsSINT(@intCast(@intFromEnum(self.interface.format))))
return if (base.c.vkuFormatIsSINT(@intCast(@intFromEnum(self.interface.format))))
.r32g32b32a32_sint
else if (base.vku.vkuFormatIsUINT(@intCast(@intFromEnum(self.interface.format))))
else if (base.c.vkuFormatIsUINT(@intCast(@intFromEnum(self.interface.format))))
.r32g32b32a32_uint
else
.r32g32b32a32_sfloat;