mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
10 lines
140 B
Plaintext
10 lines
140 B
Plaintext
|
#version 460
|
||
|
#extension GL_NV_ray_tracing : require
|
||
|
|
||
|
layout(location = 0) rayPayloadInNV float payload;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
payload = 1.0;
|
||
|
}
|