fixing vertex outputs
Test / build_and_test (push) Successful in 2m19s
Build / build (push) Successful in 4m2s

This commit is contained in:
2026-07-02 21:00:56 +02:00
parent 23c3731f06
commit d4ac14ae92
22 changed files with 259 additions and 85 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ pub fn beginQuery(interface: *Interface, pool: *base.QueryPool, query: u32, _: v
if (active.pool == impl.pool and active.query == impl.query)
return;
}
device.active_occlusion_queries.append(device.renderer.device.device_allocator.allocator(), .{
device.active_occlusion_queries.append(device.renderer.device.interface.device_allocator.allocator(), .{
.pool = impl.pool,
.query = impl.query,
}) catch return VkError.OutOfDeviceMemory;