10 lines
150 B
Plaintext
10 lines
150 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
kernel void f() {
|
||
|
int3 const a = int3(1, 2, 3);
|
||
|
float3 const b = as_type<float3>(a);
|
||
|
return;
|
||
|
}
|
||
|
|