forked from shader-slang/slang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvk-structured-buffer-load.hlsl.glsl
50 lines (44 loc) · 1.04 KB
/
vk-structured-buffer-load.hlsl.glsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#version 460
#extension GL_EXT_ray_tracing : require
layout(row_major) uniform;
layout(row_major) buffer;
layout(std430, binding = 1) readonly buffer StructuredBuffer_float_t_0 {
float _data[];
} gParamBlock_sbuf_0;
float rcp_0(float x_0)
{
return 1.0 / x_0;
}
struct RayHitInfoPacked_0
{
vec4 PackedHitInfoA_0;
};
rayPayloadInEXT RayHitInfoPacked_0 _S1;
struct BuiltInTriangleIntersectionAttributes_0
{
vec2 barycentrics_0;
};
hitAttributeEXT BuiltInTriangleIntersectionAttributes_0 _S2;
void main()
{
float HitT_0 = ((gl_RayTmaxEXT));
_S1.PackedHitInfoA_0[0] = HitT_0;
float offsfloat_0 = gParamBlock_sbuf_0._data[0];
uint use_rcp_0 = 0U | uint(HitT_0 > 0.0);
if(use_rcp_0 != 0U)
{
_S1.PackedHitInfoA_0[1] = rcp_0(offsfloat_0);
}
else
{
if(use_rcp_0 > 0U&&offsfloat_0 == 0.0)
{
_S1.PackedHitInfoA_0[1] = (inversesqrt((offsfloat_0 + 1.0)));
}
else
{
_S1.PackedHitInfoA_0[1] = (inversesqrt((offsfloat_0)));
}
}
return;
}