2097c30985
Fairly minor differences, so can keep them side by side without too much effort. NV support is effectively deprecated now however. - Add OpConvertUToAccelerationStructureKHR - Ignore/Terminate ray is now a terminator in KHR, but a call in NV. - Fix some bugs with reportIntersection.
18 lines
209 B
Plaintext
18 lines
209 B
Plaintext
#version 460
|
|
#extension GL_EXT_ray_tracing : require
|
|
|
|
struct Foo
|
|
{
|
|
float a;
|
|
float b;
|
|
};
|
|
|
|
layout(location = 0) rayPayloadInEXT Foo payload;
|
|
hitAttributeEXT Foo hit;
|
|
|
|
void main()
|
|
{
|
|
payload = hit;
|
|
}
|
|
|