mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-04 03:05:42 +00:00
This CL adds const-eval for the `sign` builtin. Bug: tint:1581 Change-Id: I5d9bfd3f3f742bcba69fbb0d7f47dc57ce18e134 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/107460 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Reviewed-by: Antonio Maiorano <amaiorano@google.com>
34 lines
536 B
Plaintext
34 lines
536 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void sign_ab6301() {
|
|
float3 res = float3(1.0f);
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
sign_ab6301();
|
|
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() {
|
|
sign_ab6301();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
sign_ab6301();
|
|
return;
|
|
}
|
|
|