10 lines
161 B
Plaintext
10 lines
161 B
Plaintext
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
kernel void f() {
|
||
|
float3 const a = float3(1.0f, 2.0f, 3.0f);
|
||
|
uint3 const b = as_type<uint3>(a);
|
||
|
return;
|
||
|
}
|
||
|
|