Files
Seele/res/shaders/raytracing/Miss.slang
T

7 lines
105 B
Plaintext
Raw Normal View History

2024-07-10 21:07:10 +02:00
import RayTracingData;
[shader("miss")]
2024-07-12 13:33:52 +02:00
void miss(inout RayPayload p)
2024-07-10 21:07:10 +02:00
{
2024-07-12 13:33:52 +02:00
p.color = float3(0, 1, 0);
2024-07-10 21:07:10 +02:00
}