8 lines
168 B
Plaintext
8 lines
168 B
Plaintext
import Common;
|
|
|
|
[shader("miss")]
|
|
void miss(inout RayPayload p)
|
|
{
|
|
p.light = float3(0.05, 0.05, 0.1); // Dark blueish background instead of black
|
|
p.hit = false;
|
|
} |