1617a3babSopenharmony_ci#version 460 2617a3babSopenharmony_ci#extension GL_NV_ray_tracing : enable 3617a3babSopenharmony_cihitAttributeNV vec4 payload; // ERROR, hitattributeNV unsupported in this stage 4617a3babSopenharmony_civoid main() 5617a3babSopenharmony_ci{ 6617a3babSopenharmony_ci int e0 = gl_PrimitiveID; // ERROR, unsupported builtin in stage 7617a3babSopenharmony_ci int e1 = gl_InstanceID; // ERROR, unsupported builtin in stage 8617a3babSopenharmony_ci int e3 = gl_InstanceCustomIndexNV; // ERROR, unsupported builtin in stage 9617a3babSopenharmony_ci mat4x3 e10 = gl_ObjectToWorldNV; // ERROR, unsupported builtin in stage 10617a3babSopenharmony_ci mat4x3 e11 = gl_WorldToObjectNV; // ERROR, unsupported builtin in stage 11617a3babSopenharmony_ci float e12 = gl_HitTNV; // ERROR, unsupported builtin in stage 12617a3babSopenharmony_ci float e13 = gl_HitKindNV; // ERROR, unsupported builtin in stage 13617a3babSopenharmony_ci reportIntersectionNV(1.0, 1U); // ERROR, unsupported builtin in stage 14617a3babSopenharmony_ci ignoreIntersectionNV(); // ERROR, unsupported builtin in stage 15617a3babSopenharmony_ci terminateRayNV(); // ERROR, unsupported builtin in stage 16617a3babSopenharmony_ci} 17