dawn-cmake/test/tint/expressions/splat/var/f16.wgsl.expected.msl

11 lines
157 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void f() {
half v = (1.0h + 2.0h);
half2 v2 = half2(v);
half3 v3 = half3(v);
half4 v4 = half4(v);
}