mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-06 12:15:43 +00:00
Try to lex identifiers before punctuation, and backtrack if we only see a single underscore or something that starts with two underscores. Rename the modf and frexp return types to start with two underscores. Spec PR: https://github.com/gpuweb/gpuweb/pull/2326 Change-Id: Id283af100babfe84faa183345cb8a60848140caa Fixed: tint:1292 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/70160 Reviewed-by: David Neto <dneto@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: James Price <jrprice@google.com>
45 lines
731 B
Plaintext
45 lines
731 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
struct frexp_result_vec3 {
|
|
float3 sig;
|
|
int3 exp;
|
|
};
|
|
frexp_result_vec3 tint_frexp(float3 param_0) {
|
|
int3 exp;
|
|
float3 sig = frexp(param_0, exp);
|
|
return {sig, exp};
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
void frexp_368997() {
|
|
frexp_result_vec3 res = tint_frexp(float3());
|
|
}
|
|
|
|
float4 vertex_main_inner() {
|
|
frexp_368997();
|
|
return float4();
|
|
}
|
|
|
|
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() {
|
|
frexp_368997();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
frexp_368997();
|
|
return;
|
|
}
|
|
|