2022-06-02 14:36:10 +00:00
|
|
|
uint tint_pack4x8snorm(float4 param_0) {
|
|
|
|
int4 i = int4(round(clamp(param_0, -1.0, 1.0) * 127.0)) & 0xff;
|
|
|
|
return asuint(i.x | i.y << 8 | i.z << 16 | i.w << 24);
|
|
|
|
}
|
2021-06-03 11:26:17 +00:00
|
|
|
|
2022-06-02 14:36:10 +00:00
|
|
|
void pack4x8snorm_4d22e7() {
|
2022-11-04 17:06:03 +00:00
|
|
|
float4 arg_0 = (1.0f).xxxx;
|
2022-06-02 14:36:10 +00:00
|
|
|
uint res = tint_pack4x8snorm(arg_0);
|
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() {
|
2022-06-02 14:36:10 +00:00
|
|
|
pack4x8snorm_4d22e7();
|
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() {
|
2022-06-02 14:36:10 +00:00
|
|
|
pack4x8snorm_4d22e7();
|
2021-06-03 11:26:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
pack4x8snorm_4d22e7();
|
2021-06-03 11:26:17 +00:00
|
|
|
return;
|
|
|
|
}
|