2021-07-15 20:34:21 +00:00
|
|
|
float2 tint_unpack2x16snorm(uint param_0) {
|
|
|
|
int j = int(param_0);
|
|
|
|
int2 i = int2(j << 16, j) >> 16;
|
|
|
|
return clamp(float2(i) / 32767.0, -1.0, 1.0);
|
|
|
|
}
|
|
|
|
|
2021-06-03 11:26:17 +00:00
|
|
|
void unpack2x16snorm_b4aea6() {
|
2021-07-15 20:34:21 +00:00
|
|
|
float2 res = tint_unpack2x16snorm(1u);
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
struct tint_symbol {
|
|
|
|
float4 value : SV_Position;
|
|
|
|
};
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
float4 vertex_main_inner() {
|
2021-06-03 11:26:17 +00:00
|
|
|
unpack2x16snorm_b4aea6();
|
2022-06-01 13:14:39 +00:00
|
|
|
return (0.0f).xxxx;
|
2021-08-04 22:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tint_symbol vertex_main() {
|
|
|
|
const float4 inner_result = vertex_main_inner();
|
|
|
|
tint_symbol wrapper_result = (tint_symbol)0;
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void fragment_main() {
|
|
|
|
unpack2x16snorm_b4aea6();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main() {
|
|
|
|
unpack2x16snorm_b4aea6();
|
|
|
|
return;
|
|
|
|
}
|