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