dawn-cmake/test/tint/builtins/gen/literal/frexp/5257dd.wgsl.expected.msl
Ben Clayton 69c2c34326 tint: Implement const-eval of frexp()
Also add abstract overloads.

Bug: tint:1581
Fixed: tint:1768
Change-Id: Icda465e0cfe960b77823c2135f0cfe8f82ed394f
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/111441
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
Commit-Queue: Ben Clayton <bclayton@google.com>
2022-11-23 18:21:38 +00:00

39 lines
630 B
Plaintext

#include <metal_stdlib>
using namespace metal;
struct frexp_result_f16 {
half fract;
int exp;
};
void frexp_5257dd() {
frexp_result_f16 res = frexp_result_f16{.fract=0.5h, .exp=1};
}
struct tint_symbol {
float4 value [[position]];
};
float4 vertex_main_inner() {
frexp_5257dd();
return float4(0.0f);
}
vertex tint_symbol vertex_main() {
float4 const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.value = inner_result;
return wrapper_result;
}
fragment void fragment_main() {
frexp_5257dd();
return;
}
kernel void compute_main() {
frexp_5257dd();
return;
}