mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +00:00
This patch add Tint end-to-end tests for built-ins using f16 types. Bug: tint:1473, tint:1502 Change-Id: I09db6e0b7e90541fb246e11d475e27be96a6d07e Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/97340 Reviewed-by: Antonio Maiorano <amaiorano@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Zhaoming Jiang <zhaoming.jiang@intel.com>
45 lines
769 B
Plaintext
45 lines
769 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
struct modf_result_vec2_f16 {
|
|
half2 fract;
|
|
half2 whole;
|
|
};
|
|
modf_result_vec2_f16 tint_modf(half2 param_0) {
|
|
modf_result_vec2_f16 result;
|
|
result.fract = modf(param_0, result.whole);
|
|
return result;
|
|
}
|
|
|
|
void modf_a545b9() {
|
|
modf_result_vec2_f16 res = tint_modf(half2(0.0h));
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
modf_a545b9();
|
|
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() {
|
|
modf_a545b9();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
modf_a545b9();
|
|
return;
|
|
}
|
|
|