mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 01:26:06 +00:00
Bug: tint:1581 Change-Id: I3dd1ea2c774f9fc0dff87b71f25375a469c3d05e Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/108300 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Antonio Maiorano <amaiorano@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
31 lines
523 B
HLSL
31 lines
523 B
HLSL
void reverseBits_e31adf() {
|
|
uint res = 2147483648u;
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
reverseBits_e31adf();
|
|
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() {
|
|
reverseBits_e31adf();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
reverseBits_e31adf();
|
|
return;
|
|
}
|