2022-06-02 14:36:10 +00:00
|
|
|
uint tint_pack2x16snorm(float2 param_0) {
|
|
|
|
int2 i = int2(round(clamp(param_0, -1.0, 1.0) * 32767.0)) & 0xffff;
|
|
|
|
return asuint(i.x | i.y << 16);
|
|
|
|
}
|
2021-06-03 11:26:17 +00:00
|
|
|
|
2022-06-02 14:36:10 +00:00
|
|
|
void pack2x16snorm_6c169b() {
|
2022-11-04 17:06:03 +00:00
|
|
|
float2 arg_0 = (1.0f).xx;
|
2022-06-02 14:36:10 +00:00
|
|
|
uint res = tint_pack2x16snorm(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
|
|
|
pack2x16snorm_6c169b();
|
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
|
|
|
pack2x16snorm_6c169b();
|
2021-06-03 11:26:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
pack2x16snorm_6c169b();
|
2021-06-03 11:26:17 +00:00
|
|
|
return;
|
|
|
|
}
|