mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 19:55:37 +00:00
Fixed: tint:1263 Change-Id: I642ea0b6c9be7f04930cf6ea1a8059825661e326 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/68520 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
39 lines
656 B
Plaintext
39 lines
656 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
template<typename T>
|
|
T tint_dot4(vec<T,4> a, vec<T,4> b) {
|
|
return a[0]*b[0] + a[1]*b[1] + a[2]*b[2] + a[3]*b[3];
|
|
}
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
void dot_ef6b1d() {
|
|
int res = tint_dot4(int4(), int4());
|
|
}
|
|
|
|
float4 vertex_main_inner() {
|
|
dot_ef6b1d();
|
|
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() {
|
|
dot_ef6b1d();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
dot_ef6b1d();
|
|
return;
|
|
}
|
|
|