mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-13 16:45:56 +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>
34 lines
561 B
Plaintext
34 lines
561 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void reverseBits_e31adf() {
|
|
uint res = 2147483648u;
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
reverseBits_e31adf();
|
|
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() {
|
|
reverseBits_e31adf();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
reverseBits_e31adf();
|
|
return;
|
|
}
|
|
|