implementing queries
Build / build (push) Successful in 1m6s
Test / build_and_test (push) Successful in 50s

This commit is contained in:
2026-06-05 18:18:38 +02:00
parent 9100db5bc4
commit 90b93a69e0
18 changed files with 707 additions and 347 deletions
+6 -3
View File
@@ -72,9 +72,12 @@ pub fn shaderInvocation(
rt.callEntryPoint(allocator, entry) catch |err| switch (err) {
// Some errors can be safely ignored
SpvRuntimeError.OutOfBounds,
SpvRuntimeError.Killed,
=> {},
SpvRuntimeError.OutOfBounds => {},
SpvRuntimeError.Killed => {
try rt.flushDescriptorSets(allocator);
freeOwnedInputs(allocator, fragment_inputs);
return undefined; // FIXME
},
else => return err,
};