Adding a simple example demonstrating how to use SBT record data

This commit is contained in:
n8vm 2022-09-08 12:57:00 -06:00
parent d02a039188
commit 9e58ad5377
14 changed files with 1078 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#version 460
#extension GL_EXT_ray_tracing : enable
layout(location = 0) rayPayloadInEXT vec3 hitValue;
void main()
{
// for now, we do nothing in the miss program
}