test
Build / build (push) Failing after 31s
Test / build_and_test (push) Failing after 53s

This commit is contained in:
2026-05-10 02:28:19 +02:00
parent 90b8d2a45e
commit 84d85d4d39
4 changed files with 16 additions and 3 deletions
+2
View File
@@ -167,6 +167,8 @@ pub fn drawTriangleFilled(allocator: std.mem.Allocator, fragments: *std.ArrayLis
.color = zm.f32x4(1.0, 1.0, 1.0, 1.0),
.inputs = try interpolateVertexOutputs(allocator, v0, v1, v2, b0, b1, b2),
}) catch return VkError.OutOfDeviceMemory;
if (fragments.len > 64_000)
return VkError.MemoryFootprintTooBigDrv;
}
}
}