11 lines
107 B
GLSL
11 lines
107 B
GLSL
struct hitPayload
|
|
{
|
|
vec3 hitValue;
|
|
uint seed;
|
|
};
|
|
|
|
struct shadowPayload
|
|
{
|
|
bool isHit;
|
|
uint seed;
|
|
};
|