mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 03:35:56 +00:00
Bug: tint:1883 Change-Id: If6c160da0684353a873428a08063aa91ee7a01c4 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/125420 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
39 lines
725 B
HLSL
39 lines
725 B
HLSL
float2 tint_trunc(float2 param_0) {
|
|
return param_0 < 0 ? ceil(param_0) : floor(param_0);
|
|
}
|
|
|
|
RWByteAddressBuffer prevent_dce : register(u0, space2);
|
|
|
|
void trunc_f370d3() {
|
|
float2 arg_0 = (1.5f).xx;
|
|
float2 res = tint_trunc(arg_0);
|
|
prevent_dce.Store2(0u, asuint(res));
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
trunc_f370d3();
|
|
return (0.0f).xxxx;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
void fragment_main() {
|
|
trunc_f370d3();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
trunc_f370d3();
|
|
return;
|
|
}
|