blob: a7f7c59c3e9be9a8964ebe494621ce6c66aa9753 [file] [log] [blame]
Chao Chenb50c02e2018-09-19 11:42:24 -07001#version 460
Ashwin Leleff1783d2018-10-22 16:41:44 -07002#extension GL_NV_ray_tracing : enable
3hitAttributeNV vec4 payload; // ERROR, hitattributeNV unsupported in this stage
Chao Chenb50c02e2018-09-19 11:42:24 -07004void main()
5{
Ashwin Leleff1783d2018-10-22 16:41:44 -07006 int e0 = gl_PrimitiveID; // ERROR, unsupported builtin in stage
7 int e1 = gl_InstanceID; // ERROR, unsupported builtin in stage
8 int e3 = gl_InstanceCustomIndexNV; // ERROR, unsupported builtin in stage
9 mat4x3 e10 = gl_ObjectToWorldNV; // ERROR, unsupported builtin in stage
10 mat4x3 e11 = gl_WorldToObjectNV; // ERROR, unsupported builtin in stage
11 float e12 = gl_HitTNV; // ERROR, unsupported builtin in stage
12 float e13 = gl_HitKindNV; // ERROR, unsupported builtin in stage
13 reportIntersectionNV(1.0, 1U); // ERROR, unsupported builtin in stage
14 ignoreIntersectionNV(); // ERROR, unsupported builtin in stage
15 terminateRayNV(); // ERROR, unsupported builtin in stage
Chao Chenb50c02e2018-09-19 11:42:24 -070016}