bluenoise-raytracer/ray_tracing_anyhit/shaders/raycommon.glsl
2020-08-31 16:56:39 +02:00

11 lines
107 B
GLSL

struct hitPayload
{
vec3 hitValue;
uint seed;
};
struct shadowPayload
{
bool isHit;
uint seed;
};