mirror of
https://github.com/libretro/RetroArch
synced 2025-03-08 19:14:33 +00:00
12 lines
231 B
GLSL
12 lines
231 B
GLSL
#version 460
|
|
#extension GL_EXT_ray_tracing : require
|
|
|
|
layout(location = 0) rayPayloadInEXT Foo { float a; float b; } payload;
|
|
hitAttributeEXT Foo2 { float a; float b; } hit;
|
|
|
|
void main()
|
|
{
|
|
payload.a = hit.a;
|
|
payload.b = hit.b;
|
|
}
|