mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
11 lines
141 B
Plaintext
11 lines
141 B
Plaintext
|
#version 460
|
||
|
#extension GL_NV_ray_tracing : require
|
||
|
|
||
|
layout(location = 0) rayPayloadInNV float payload;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
payload = 0.0;
|
||
|
}
|
||
|
|