Completed Metal implementation

This commit is contained in:
Dynamitos
2026-07-09 14:11:51 +02:00
parent df3af75801
commit a857051eea
20 changed files with 173 additions and 33 deletions
+1 -1
View File
@@ -3,6 +3,6 @@ import Common;
[shader("miss")]
void miss(inout RayPayload p)
{
p.light = float3(0, 0, 0);
p.light = float3(0.05, 0.05, 0.1); // Dark blueish background instead of black
p.hit = false;
}