mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +00:00
Change-Id: I2da181af0694f73ec4be07ed40e4e70d49b53583 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/97140 Commit-Queue: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com>
37 lines
637 B
Plaintext
37 lines
637 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void select_c41bd1() {
|
|
bool4 arg_0 = bool4(true);
|
|
bool4 arg_1 = bool4(true);
|
|
bool arg_2 = true;
|
|
bool4 res = select(arg_0, arg_1, arg_2);
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
select_c41bd1();
|
|
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() {
|
|
select_c41bd1();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
select_c41bd1();
|
|
return;
|
|
}
|
|
|